Skip to content

Commit dbfbf9c

Browse files
feat(api): manual updates
1 parent 0758a97 commit dbfbf9c

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

.stats.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 4
22
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/mozilla%2Ftabstack-374e61ec92a8b79c54b6de9a2d3b3aae830de31e8d2f9bc93164afc5ce72fda2.yml
33
openapi_spec_hash: 1a9aa86144a41d8487dcf310caeddfff
4-
config_hash: 95071d5dd8c8506d01f4ece431ff3ace
4+
config_hash: c1a875a1e6f80f396f0d113cf5940a82

src/tabstack/resources/agent.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def automate(
5757
extra_query: Query | None = None,
5858
extra_body: Body | None = None,
5959
timeout: float | httpx.Timeout | None | NotGiven = not_given,
60-
) -> Stream[AgentAutomateResponse]:
60+
) -> Stream[object]:
6161
"""Execute AI-powered browser automation tasks using natural language.
6262
6363
This
@@ -116,7 +116,7 @@ def automate(
116116
),
117117
cast_to=AgentAutomateResponse,
118118
stream=True,
119-
stream_cls=Stream[AgentAutomateResponse],
119+
stream_cls=Stream[object],
120120
)
121121

122122

@@ -155,7 +155,7 @@ async def automate(
155155
extra_query: Query | None = None,
156156
extra_body: Body | None = None,
157157
timeout: float | httpx.Timeout | None | NotGiven = not_given,
158-
) -> AsyncStream[AgentAutomateResponse]:
158+
) -> AsyncStream[object]:
159159
"""Execute AI-powered browser automation tasks using natural language.
160160
161161
This
@@ -214,7 +214,7 @@ async def automate(
214214
),
215215
cast_to=AgentAutomateResponse,
216216
stream=True,
217-
stream_cls=AsyncStream[AgentAutomateResponse],
217+
stream_cls=AsyncStream[object],
218218
)
219219

220220

0 commit comments

Comments
 (0)