@@ -75,9 +75,14 @@ def sync_detailed(
7575 body : SingleAgentOperation ,
7676 x_cohort_source : None | str | Unset = UNSET ,
7777) -> Response [ErrorResponse | InsufficientBalanceResponse | OperationResponse ]:
78- """Single AI research agent
78+ """Single AI research agent (deprecated)
7979
80- Run a single AI agent to perform research and generate a response.
80+ **DEPRECATED.** Will be removed in a future release.
81+ Use `/operations/agent-map` (one task per row, optionally with `return_list=True`)
82+ or `/operations/multi-agent` (parallel agents synthesized per row) instead.
83+ Both accept an empty `input` list to generate output from the task alone.
84+
85+ Run a single AI agent to perform research and generate a response.
8186
8287 **Configuration options** (mutually exclusive):
8388
@@ -123,9 +128,14 @@ def sync(
123128 body : SingleAgentOperation ,
124129 x_cohort_source : None | str | Unset = UNSET ,
125130) -> ErrorResponse | InsufficientBalanceResponse | OperationResponse | None :
126- """Single AI research agent
131+ """Single AI research agent (deprecated)
132+
133+ **DEPRECATED.** Will be removed in a future release.
134+ Use `/operations/agent-map` (one task per row, optionally with `return_list=True`)
135+ or `/operations/multi-agent` (parallel agents synthesized per row) instead.
136+ Both accept an empty `input` list to generate output from the task alone.
127137
128- Run a single AI agent to perform research and generate a response.
138+ Run a single AI agent to perform research and generate a response.
129139
130140 **Configuration options** (mutually exclusive):
131141
@@ -166,9 +176,14 @@ async def asyncio_detailed(
166176 body : SingleAgentOperation ,
167177 x_cohort_source : None | str | Unset = UNSET ,
168178) -> Response [ErrorResponse | InsufficientBalanceResponse | OperationResponse ]:
169- """Single AI research agent
179+ """Single AI research agent (deprecated)
170180
171- Run a single AI agent to perform research and generate a response.
181+ **DEPRECATED.** Will be removed in a future release.
182+ Use `/operations/agent-map` (one task per row, optionally with `return_list=True`)
183+ or `/operations/multi-agent` (parallel agents synthesized per row) instead.
184+ Both accept an empty `input` list to generate output from the task alone.
185+
186+ Run a single AI agent to perform research and generate a response.
172187
173188 **Configuration options** (mutually exclusive):
174189
@@ -212,9 +227,14 @@ async def asyncio(
212227 body : SingleAgentOperation ,
213228 x_cohort_source : None | str | Unset = UNSET ,
214229) -> ErrorResponse | InsufficientBalanceResponse | OperationResponse | None :
215- """Single AI research agent
230+ """Single AI research agent (deprecated)
231+
232+ **DEPRECATED.** Will be removed in a future release.
233+ Use `/operations/agent-map` (one task per row, optionally with `return_list=True`)
234+ or `/operations/multi-agent` (parallel agents synthesized per row) instead.
235+ Both accept an empty `input` list to generate output from the task alone.
216236
217- Run a single AI agent to perform research and generate a response.
237+ Run a single AI agent to perform research and generate a response.
218238
219239 **Configuration options** (mutually exclusive):
220240
0 commit comments