@@ -68,9 +68,11 @@ def create(
6868 timeout : float | httpx .Timeout | None | NotGiven = NOT_GIVEN ,
6969 ) -> EvaluationCreateResponse :
7070 """
71- Create a new Evaluations
71+ Create a new Evaluation
7272
7373 Args:
74+ gateway_id: gateway id
75+
7476 extra_headers: Send extra headers
7577
7678 extra_query: Add additional query parameters to the request
@@ -108,15 +110,13 @@ def list(
108110 gateway_id : str ,
109111 * ,
110112 account_id : str ,
111- id : str | NotGiven = NOT_GIVEN ,
112113 name : str | NotGiven = NOT_GIVEN ,
113114 order_by : str | NotGiven = NOT_GIVEN ,
114115 order_by_direction : Literal ["asc" , "desc" ] | NotGiven = NOT_GIVEN ,
115116 page : int | NotGiven = NOT_GIVEN ,
116117 per_page : int | NotGiven = NOT_GIVEN ,
117118 processed : bool | NotGiven = NOT_GIVEN ,
118119 search : str | NotGiven = NOT_GIVEN ,
119- total_logs : float | NotGiven = NOT_GIVEN ,
120120 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
121121 # The extra values given here take precedence over values defined on the client or passed to this method.
122122 extra_headers : Headers | None = None ,
@@ -125,9 +125,11 @@ def list(
125125 timeout : float | httpx .Timeout | None | NotGiven = NOT_GIVEN ,
126126 ) -> SyncV4PagePaginationArray [EvaluationListResponse ]:
127127 """
128- List Evaluationss
128+ List Evaluations
129129
130130 Args:
131+ gateway_id: gateway id
132+
131133 order_by: Order By Column Name
132134
133135 order_by_direction: Order By Direction
@@ -156,15 +158,13 @@ def list(
156158 timeout = timeout ,
157159 query = maybe_transform (
158160 {
159- "id" : id ,
160161 "name" : name ,
161162 "order_by" : order_by ,
162163 "order_by_direction" : order_by_direction ,
163164 "page" : page ,
164165 "per_page" : per_page ,
165166 "processed" : processed ,
166167 "search" : search ,
167- "total_logs" : total_logs ,
168168 },
169169 evaluation_list_params .EvaluationListParams ,
170170 ),
@@ -186,9 +186,11 @@ def delete(
186186 timeout : float | httpx .Timeout | None | NotGiven = NOT_GIVEN ,
187187 ) -> EvaluationDeleteResponse :
188188 """
189- Delete a Evaluations
189+ Delete a Evaluation
190190
191191 Args:
192+ gateway_id: gateway id
193+
192194 extra_headers: Send extra headers
193195
194196 extra_query: Add additional query parameters to the request
@@ -229,9 +231,11 @@ def get(
229231 timeout : float | httpx .Timeout | None | NotGiven = NOT_GIVEN ,
230232 ) -> EvaluationGetResponse :
231233 """
232- Fetch a Evaluations
234+ Fetch a Evaluation
233235
234236 Args:
237+ gateway_id: gateway id
238+
235239 extra_headers: Send extra headers
236240
237241 extra_query: Add additional query parameters to the request
@@ -295,9 +299,11 @@ async def create(
295299 timeout : float | httpx .Timeout | None | NotGiven = NOT_GIVEN ,
296300 ) -> EvaluationCreateResponse :
297301 """
298- Create a new Evaluations
302+ Create a new Evaluation
299303
300304 Args:
305+ gateway_id: gateway id
306+
301307 extra_headers: Send extra headers
302308
303309 extra_query: Add additional query parameters to the request
@@ -335,15 +341,13 @@ def list(
335341 gateway_id : str ,
336342 * ,
337343 account_id : str ,
338- id : str | NotGiven = NOT_GIVEN ,
339344 name : str | NotGiven = NOT_GIVEN ,
340345 order_by : str | NotGiven = NOT_GIVEN ,
341346 order_by_direction : Literal ["asc" , "desc" ] | NotGiven = NOT_GIVEN ,
342347 page : int | NotGiven = NOT_GIVEN ,
343348 per_page : int | NotGiven = NOT_GIVEN ,
344349 processed : bool | NotGiven = NOT_GIVEN ,
345350 search : str | NotGiven = NOT_GIVEN ,
346- total_logs : float | NotGiven = NOT_GIVEN ,
347351 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
348352 # The extra values given here take precedence over values defined on the client or passed to this method.
349353 extra_headers : Headers | None = None ,
@@ -352,9 +356,11 @@ def list(
352356 timeout : float | httpx .Timeout | None | NotGiven = NOT_GIVEN ,
353357 ) -> AsyncPaginator [EvaluationListResponse , AsyncV4PagePaginationArray [EvaluationListResponse ]]:
354358 """
355- List Evaluationss
359+ List Evaluations
356360
357361 Args:
362+ gateway_id: gateway id
363+
358364 order_by: Order By Column Name
359365
360366 order_by_direction: Order By Direction
@@ -383,15 +389,13 @@ def list(
383389 timeout = timeout ,
384390 query = maybe_transform (
385391 {
386- "id" : id ,
387392 "name" : name ,
388393 "order_by" : order_by ,
389394 "order_by_direction" : order_by_direction ,
390395 "page" : page ,
391396 "per_page" : per_page ,
392397 "processed" : processed ,
393398 "search" : search ,
394- "total_logs" : total_logs ,
395399 },
396400 evaluation_list_params .EvaluationListParams ,
397401 ),
@@ -413,9 +417,11 @@ async def delete(
413417 timeout : float | httpx .Timeout | None | NotGiven = NOT_GIVEN ,
414418 ) -> EvaluationDeleteResponse :
415419 """
416- Delete a Evaluations
420+ Delete a Evaluation
417421
418422 Args:
423+ gateway_id: gateway id
424+
419425 extra_headers: Send extra headers
420426
421427 extra_query: Add additional query parameters to the request
@@ -456,9 +462,11 @@ async def get(
456462 timeout : float | httpx .Timeout | None | NotGiven = NOT_GIVEN ,
457463 ) -> EvaluationGetResponse :
458464 """
459- Fetch a Evaluations
465+ Fetch a Evaluation
460466
461467 Args:
468+ gateway_id: gateway id
469+
462470 extra_headers: Send extra headers
463471
464472 extra_query: Add additional query parameters to the request
0 commit comments