@@ -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