Skip to content

Commit 7ca5f0b

Browse files
author
Roxanne Farhad
committed
fixing the stainless error
1 parent 7881ec2 commit 7ca5f0b

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/agentex/_client.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88

99
import httpx
1010

11+
from agentex.resources import DeploymentHistoryResource
12+
1113
from . import _exceptions
1214
from ._qs import Querystring
1315
from ._types import (
@@ -175,6 +177,12 @@ def tracker(self) -> TrackerResource:
175177

176178
return TrackerResource(self)
177179

180+
@cached_property
181+
def deployment_history(self) -> DeploymentHistoryResource:
182+
from .resources.deployment_history import DeploymentHistoryResource
183+
184+
return DeploymentHistoryResource(self)
185+
178186
@cached_property
179187
def with_raw_response(self) -> AgentexWithRawResponse:
180188
return AgentexWithRawResponse(self)

0 commit comments

Comments
 (0)