@@ -68,9 +68,11 @@ def create(
68
68
timeout : float | httpx .Timeout | None | NotGiven = NOT_GIVEN ,
69
69
) -> EvaluationCreateResponse :
70
70
"""
71
- Create a new Evaluations
71
+ Create a new Evaluation
72
72
73
73
Args:
74
+ gateway_id: gateway id
75
+
74
76
extra_headers: Send extra headers
75
77
76
78
extra_query: Add additional query parameters to the request
@@ -108,15 +110,13 @@ def list(
108
110
gateway_id : str ,
109
111
* ,
110
112
account_id : str ,
111
- id : str | NotGiven = NOT_GIVEN ,
112
113
name : str | NotGiven = NOT_GIVEN ,
113
114
order_by : str | NotGiven = NOT_GIVEN ,
114
115
order_by_direction : Literal ["asc" , "desc" ] | NotGiven = NOT_GIVEN ,
115
116
page : int | NotGiven = NOT_GIVEN ,
116
117
per_page : int | NotGiven = NOT_GIVEN ,
117
118
processed : bool | NotGiven = NOT_GIVEN ,
118
119
search : str | NotGiven = NOT_GIVEN ,
119
- total_logs : float | NotGiven = NOT_GIVEN ,
120
120
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
121
121
# The extra values given here take precedence over values defined on the client or passed to this method.
122
122
extra_headers : Headers | None = None ,
@@ -125,9 +125,11 @@ def list(
125
125
timeout : float | httpx .Timeout | None | NotGiven = NOT_GIVEN ,
126
126
) -> SyncV4PagePaginationArray [EvaluationListResponse ]:
127
127
"""
128
- List Evaluationss
128
+ List Evaluations
129
129
130
130
Args:
131
+ gateway_id: gateway id
132
+
131
133
order_by: Order By Column Name
132
134
133
135
order_by_direction: Order By Direction
@@ -156,15 +158,13 @@ def list(
156
158
timeout = timeout ,
157
159
query = maybe_transform (
158
160
{
159
- "id" : id ,
160
161
"name" : name ,
161
162
"order_by" : order_by ,
162
163
"order_by_direction" : order_by_direction ,
163
164
"page" : page ,
164
165
"per_page" : per_page ,
165
166
"processed" : processed ,
166
167
"search" : search ,
167
- "total_logs" : total_logs ,
168
168
},
169
169
evaluation_list_params .EvaluationListParams ,
170
170
),
@@ -186,9 +186,11 @@ def delete(
186
186
timeout : float | httpx .Timeout | None | NotGiven = NOT_GIVEN ,
187
187
) -> EvaluationDeleteResponse :
188
188
"""
189
- Delete a Evaluations
189
+ Delete a Evaluation
190
190
191
191
Args:
192
+ gateway_id: gateway id
193
+
192
194
extra_headers: Send extra headers
193
195
194
196
extra_query: Add additional query parameters to the request
@@ -229,9 +231,11 @@ def get(
229
231
timeout : float | httpx .Timeout | None | NotGiven = NOT_GIVEN ,
230
232
) -> EvaluationGetResponse :
231
233
"""
232
- Fetch a Evaluations
234
+ Fetch a Evaluation
233
235
234
236
Args:
237
+ gateway_id: gateway id
238
+
235
239
extra_headers: Send extra headers
236
240
237
241
extra_query: Add additional query parameters to the request
@@ -295,9 +299,11 @@ async def create(
295
299
timeout : float | httpx .Timeout | None | NotGiven = NOT_GIVEN ,
296
300
) -> EvaluationCreateResponse :
297
301
"""
298
- Create a new Evaluations
302
+ Create a new Evaluation
299
303
300
304
Args:
305
+ gateway_id: gateway id
306
+
301
307
extra_headers: Send extra headers
302
308
303
309
extra_query: Add additional query parameters to the request
@@ -335,15 +341,13 @@ def list(
335
341
gateway_id : str ,
336
342
* ,
337
343
account_id : str ,
338
- id : str | NotGiven = NOT_GIVEN ,
339
344
name : str | NotGiven = NOT_GIVEN ,
340
345
order_by : str | NotGiven = NOT_GIVEN ,
341
346
order_by_direction : Literal ["asc" , "desc" ] | NotGiven = NOT_GIVEN ,
342
347
page : int | NotGiven = NOT_GIVEN ,
343
348
per_page : int | NotGiven = NOT_GIVEN ,
344
349
processed : bool | NotGiven = NOT_GIVEN ,
345
350
search : str | NotGiven = NOT_GIVEN ,
346
- total_logs : float | NotGiven = NOT_GIVEN ,
347
351
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
348
352
# The extra values given here take precedence over values defined on the client or passed to this method.
349
353
extra_headers : Headers | None = None ,
@@ -352,9 +356,11 @@ def list(
352
356
timeout : float | httpx .Timeout | None | NotGiven = NOT_GIVEN ,
353
357
) -> AsyncPaginator [EvaluationListResponse , AsyncV4PagePaginationArray [EvaluationListResponse ]]:
354
358
"""
355
- List Evaluationss
359
+ List Evaluations
356
360
357
361
Args:
362
+ gateway_id: gateway id
363
+
358
364
order_by: Order By Column Name
359
365
360
366
order_by_direction: Order By Direction
@@ -383,15 +389,13 @@ def list(
383
389
timeout = timeout ,
384
390
query = maybe_transform (
385
391
{
386
- "id" : id ,
387
392
"name" : name ,
388
393
"order_by" : order_by ,
389
394
"order_by_direction" : order_by_direction ,
390
395
"page" : page ,
391
396
"per_page" : per_page ,
392
397
"processed" : processed ,
393
398
"search" : search ,
394
- "total_logs" : total_logs ,
395
399
},
396
400
evaluation_list_params .EvaluationListParams ,
397
401
),
@@ -413,9 +417,11 @@ async def delete(
413
417
timeout : float | httpx .Timeout | None | NotGiven = NOT_GIVEN ,
414
418
) -> EvaluationDeleteResponse :
415
419
"""
416
- Delete a Evaluations
420
+ Delete a Evaluation
417
421
418
422
Args:
423
+ gateway_id: gateway id
424
+
419
425
extra_headers: Send extra headers
420
426
421
427
extra_query: Add additional query parameters to the request
@@ -456,9 +462,11 @@ async def get(
456
462
timeout : float | httpx .Timeout | None | NotGiven = NOT_GIVEN ,
457
463
) -> EvaluationGetResponse :
458
464
"""
459
- Fetch a Evaluations
465
+ Fetch a Evaluation
460
466
461
467
Args:
468
+ gateway_id: gateway id
469
+
462
470
extra_headers: Send extra headers
463
471
464
472
extra_query: Add additional query parameters to the request
0 commit comments