@@ -59,8 +59,8 @@ def list(
5959 timeout : float | httpx .Timeout | None | NotGiven = NOT_GIVEN ,
6060 ) -> SyncOffsetPage [object ]:
6161 """
62- Returns a page of tools, optionally filtered by toolkit, formatted for a
63- specific provider
62+ Returns a page of tools from the engine configuration, optionally filtered by
63+ toolkit, formatted for a specific provider
6464
6565 Args:
6666 format: Provider format
@@ -103,7 +103,6 @@ def list(
103103 def get (
104104 self ,
105105 * ,
106- tool_id : str ,
107106 format : str | NotGiven = NOT_GIVEN ,
108107 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
109108 # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -116,8 +115,6 @@ def get(
116115 Returns the formatted tool specification for a specific tool, given a provider
117116
118117 Args:
119- tool_id: Tool ID
120-
121118 format: Provider format
122119
123120 extra_headers: Send extra headers
@@ -135,13 +132,7 @@ def get(
135132 extra_query = extra_query ,
136133 extra_body = extra_body ,
137134 timeout = timeout ,
138- query = maybe_transform (
139- {
140- "tool_id" : tool_id ,
141- "format" : format ,
142- },
143- formatted_get_params .FormattedGetParams ,
144- ),
135+ query = maybe_transform ({"format" : format }, formatted_get_params .FormattedGetParams ),
145136 ),
146137 cast_to = object ,
147138 )
@@ -182,8 +173,8 @@ def list(
182173 timeout : float | httpx .Timeout | None | NotGiven = NOT_GIVEN ,
183174 ) -> AsyncPaginator [object , AsyncOffsetPage [object ]]:
184175 """
185- Returns a page of tools, optionally filtered by toolkit, formatted for a
186- specific provider
176+ Returns a page of tools from the engine configuration, optionally filtered by
177+ toolkit, formatted for a specific provider
187178
188179 Args:
189180 format: Provider format
@@ -226,7 +217,6 @@ def list(
226217 async def get (
227218 self ,
228219 * ,
229- tool_id : str ,
230220 format : str | NotGiven = NOT_GIVEN ,
231221 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
232222 # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -239,8 +229,6 @@ async def get(
239229 Returns the formatted tool specification for a specific tool, given a provider
240230
241231 Args:
242- tool_id: Tool ID
243-
244232 format: Provider format
245233
246234 extra_headers: Send extra headers
@@ -258,13 +246,7 @@ async def get(
258246 extra_query = extra_query ,
259247 extra_body = extra_body ,
260248 timeout = timeout ,
261- query = await async_maybe_transform (
262- {
263- "tool_id" : tool_id ,
264- "format" : format ,
265- },
266- formatted_get_params .FormattedGetParams ,
267- ),
249+ query = await async_maybe_transform ({"format" : format }, formatted_get_params .FormattedGetParams ),
268250 ),
269251 cast_to = object ,
270252 )
0 commit comments