@@ -92,9 +92,12 @@ def list(
92
92
created_at_end : Union [str , datetime , None ] | NotGiven = NOT_GIVEN ,
93
93
created_at_start : Union [str , datetime , None ] | NotGiven = NOT_GIVEN ,
94
94
custom_metadata : Optional [str ] | NotGiven = NOT_GIVEN ,
95
+ failed_evals : Optional [List [str ]] | NotGiven = NOT_GIVEN ,
96
+ guardrailed : Optional [bool ] | NotGiven = NOT_GIVEN ,
95
97
limit : int | NotGiven = NOT_GIVEN ,
96
98
offset : int | NotGiven = NOT_GIVEN ,
97
99
order : Literal ["asc" , "desc" ] | NotGiven = NOT_GIVEN ,
100
+ passed_evals : Optional [List [str ]] | NotGiven = NOT_GIVEN ,
98
101
primary_eval_issue : Optional [
99
102
List [Literal ["hallucination" , "search_failure" , "unhelpful" , "difficult_query" , "unsupported" ]]
100
103
]
@@ -118,6 +121,12 @@ def list(
118
121
119
122
custom_metadata: Filter by custom metadata as JSON string: {"key1": "value1", "key2": "value2"}
120
123
124
+ failed_evals: Filter by evals that failed
125
+
126
+ guardrailed: Filter by guardrailed status
127
+
128
+ passed_evals: Filter by evals that passed
129
+
121
130
primary_eval_issue: Filter logs that have ANY of these primary evaluation issues (OR operation)
122
131
123
132
was_cache_hit: Filter by cache hit status
@@ -144,9 +153,12 @@ def list(
144
153
"created_at_end" : created_at_end ,
145
154
"created_at_start" : created_at_start ,
146
155
"custom_metadata" : custom_metadata ,
156
+ "failed_evals" : failed_evals ,
157
+ "guardrailed" : guardrailed ,
147
158
"limit" : limit ,
148
159
"offset" : offset ,
149
160
"order" : order ,
161
+ "passed_evals" : passed_evals ,
150
162
"primary_eval_issue" : primary_eval_issue ,
151
163
"sort" : sort ,
152
164
"was_cache_hit" : was_cache_hit ,
@@ -164,9 +176,13 @@ def list_by_group(
164
176
created_at_end : Union [str , datetime , None ] | NotGiven = NOT_GIVEN ,
165
177
created_at_start : Union [str , datetime , None ] | NotGiven = NOT_GIVEN ,
166
178
custom_metadata : Optional [str ] | NotGiven = NOT_GIVEN ,
179
+ failed_evals : Optional [List [str ]] | NotGiven = NOT_GIVEN ,
180
+ guardrailed : Optional [bool ] | NotGiven = NOT_GIVEN ,
167
181
limit : int | NotGiven = NOT_GIVEN ,
182
+ needs_review : Optional [bool ] | NotGiven = NOT_GIVEN ,
168
183
offset : int | NotGiven = NOT_GIVEN ,
169
184
order : Literal ["asc" , "desc" ] | NotGiven = NOT_GIVEN ,
185
+ passed_evals : Optional [List [str ]] | NotGiven = NOT_GIVEN ,
170
186
primary_eval_issue : Optional [
171
187
List [Literal ["hallucination" , "search_failure" , "unhelpful" , "difficult_query" , "unsupported" ]]
172
188
]
@@ -191,6 +207,14 @@ def list_by_group(
191
207
192
208
custom_metadata: Filter by custom metadata as JSON string: {"key1": "value1", "key2": "value2"}
193
209
210
+ failed_evals: Filter by evals that failed
211
+
212
+ guardrailed: Filter by guardrailed status
213
+
214
+ needs_review: Filter logs that need review
215
+
216
+ passed_evals: Filter by evals that passed
217
+
194
218
primary_eval_issue: Filter logs that have ANY of these primary evaluation issues (OR operation)
195
219
196
220
remediation_ids: List of groups to list child logs for
@@ -219,9 +243,13 @@ def list_by_group(
219
243
"created_at_end" : created_at_end ,
220
244
"created_at_start" : created_at_start ,
221
245
"custom_metadata" : custom_metadata ,
246
+ "failed_evals" : failed_evals ,
247
+ "guardrailed" : guardrailed ,
222
248
"limit" : limit ,
249
+ "needs_review" : needs_review ,
223
250
"offset" : offset ,
224
251
"order" : order ,
252
+ "passed_evals" : passed_evals ,
225
253
"primary_eval_issue" : primary_eval_issue ,
226
254
"remediation_ids" : remediation_ids ,
227
255
"sort" : sort ,
@@ -240,9 +268,13 @@ def list_groups(
240
268
created_at_end : Union [str , datetime , None ] | NotGiven = NOT_GIVEN ,
241
269
created_at_start : Union [str , datetime , None ] | NotGiven = NOT_GIVEN ,
242
270
custom_metadata : Optional [str ] | NotGiven = NOT_GIVEN ,
271
+ failed_evals : Optional [List [str ]] | NotGiven = NOT_GIVEN ,
272
+ guardrailed : Optional [bool ] | NotGiven = NOT_GIVEN ,
243
273
limit : int | NotGiven = NOT_GIVEN ,
274
+ needs_review : Optional [bool ] | NotGiven = NOT_GIVEN ,
244
275
offset : int | NotGiven = NOT_GIVEN ,
245
276
order : Literal ["asc" , "desc" ] | NotGiven = NOT_GIVEN ,
277
+ passed_evals : Optional [List [str ]] | NotGiven = NOT_GIVEN ,
246
278
primary_eval_issue : Optional [
247
279
List [Literal ["hallucination" , "search_failure" , "unhelpful" , "difficult_query" , "unsupported" ]]
248
280
]
@@ -267,6 +299,14 @@ def list_groups(
267
299
268
300
custom_metadata: Filter by custom metadata as JSON string: {"key1": "value1", "key2": "value2"}
269
301
302
+ failed_evals: Filter by evals that failed
303
+
304
+ guardrailed: Filter by guardrailed status
305
+
306
+ needs_review: Filter log groups that need review
307
+
308
+ passed_evals: Filter by evals that passed
309
+
270
310
primary_eval_issue: Filter logs that have ANY of these primary evaluation issues (OR operation)
271
311
272
312
was_cache_hit: Filter by cache hit status
@@ -293,9 +333,13 @@ def list_groups(
293
333
"created_at_end" : created_at_end ,
294
334
"created_at_start" : created_at_start ,
295
335
"custom_metadata" : custom_metadata ,
336
+ "failed_evals" : failed_evals ,
337
+ "guardrailed" : guardrailed ,
296
338
"limit" : limit ,
339
+ "needs_review" : needs_review ,
297
340
"offset" : offset ,
298
341
"order" : order ,
342
+ "passed_evals" : passed_evals ,
299
343
"primary_eval_issue" : primary_eval_issue ,
300
344
"sort" : sort ,
301
345
"was_cache_hit" : was_cache_hit ,
@@ -406,9 +450,12 @@ async def list(
406
450
created_at_end : Union [str , datetime , None ] | NotGiven = NOT_GIVEN ,
407
451
created_at_start : Union [str , datetime , None ] | NotGiven = NOT_GIVEN ,
408
452
custom_metadata : Optional [str ] | NotGiven = NOT_GIVEN ,
453
+ failed_evals : Optional [List [str ]] | NotGiven = NOT_GIVEN ,
454
+ guardrailed : Optional [bool ] | NotGiven = NOT_GIVEN ,
409
455
limit : int | NotGiven = NOT_GIVEN ,
410
456
offset : int | NotGiven = NOT_GIVEN ,
411
457
order : Literal ["asc" , "desc" ] | NotGiven = NOT_GIVEN ,
458
+ passed_evals : Optional [List [str ]] | NotGiven = NOT_GIVEN ,
412
459
primary_eval_issue : Optional [
413
460
List [Literal ["hallucination" , "search_failure" , "unhelpful" , "difficult_query" , "unsupported" ]]
414
461
]
@@ -432,6 +479,12 @@ async def list(
432
479
433
480
custom_metadata: Filter by custom metadata as JSON string: {"key1": "value1", "key2": "value2"}
434
481
482
+ failed_evals: Filter by evals that failed
483
+
484
+ guardrailed: Filter by guardrailed status
485
+
486
+ passed_evals: Filter by evals that passed
487
+
435
488
primary_eval_issue: Filter logs that have ANY of these primary evaluation issues (OR operation)
436
489
437
490
was_cache_hit: Filter by cache hit status
@@ -458,9 +511,12 @@ async def list(
458
511
"created_at_end" : created_at_end ,
459
512
"created_at_start" : created_at_start ,
460
513
"custom_metadata" : custom_metadata ,
514
+ "failed_evals" : failed_evals ,
515
+ "guardrailed" : guardrailed ,
461
516
"limit" : limit ,
462
517
"offset" : offset ,
463
518
"order" : order ,
519
+ "passed_evals" : passed_evals ,
464
520
"primary_eval_issue" : primary_eval_issue ,
465
521
"sort" : sort ,
466
522
"was_cache_hit" : was_cache_hit ,
@@ -478,9 +534,13 @@ async def list_by_group(
478
534
created_at_end : Union [str , datetime , None ] | NotGiven = NOT_GIVEN ,
479
535
created_at_start : Union [str , datetime , None ] | NotGiven = NOT_GIVEN ,
480
536
custom_metadata : Optional [str ] | NotGiven = NOT_GIVEN ,
537
+ failed_evals : Optional [List [str ]] | NotGiven = NOT_GIVEN ,
538
+ guardrailed : Optional [bool ] | NotGiven = NOT_GIVEN ,
481
539
limit : int | NotGiven = NOT_GIVEN ,
540
+ needs_review : Optional [bool ] | NotGiven = NOT_GIVEN ,
482
541
offset : int | NotGiven = NOT_GIVEN ,
483
542
order : Literal ["asc" , "desc" ] | NotGiven = NOT_GIVEN ,
543
+ passed_evals : Optional [List [str ]] | NotGiven = NOT_GIVEN ,
484
544
primary_eval_issue : Optional [
485
545
List [Literal ["hallucination" , "search_failure" , "unhelpful" , "difficult_query" , "unsupported" ]]
486
546
]
@@ -505,6 +565,14 @@ async def list_by_group(
505
565
506
566
custom_metadata: Filter by custom metadata as JSON string: {"key1": "value1", "key2": "value2"}
507
567
568
+ failed_evals: Filter by evals that failed
569
+
570
+ guardrailed: Filter by guardrailed status
571
+
572
+ needs_review: Filter logs that need review
573
+
574
+ passed_evals: Filter by evals that passed
575
+
508
576
primary_eval_issue: Filter logs that have ANY of these primary evaluation issues (OR operation)
509
577
510
578
remediation_ids: List of groups to list child logs for
@@ -533,9 +601,13 @@ async def list_by_group(
533
601
"created_at_end" : created_at_end ,
534
602
"created_at_start" : created_at_start ,
535
603
"custom_metadata" : custom_metadata ,
604
+ "failed_evals" : failed_evals ,
605
+ "guardrailed" : guardrailed ,
536
606
"limit" : limit ,
607
+ "needs_review" : needs_review ,
537
608
"offset" : offset ,
538
609
"order" : order ,
610
+ "passed_evals" : passed_evals ,
539
611
"primary_eval_issue" : primary_eval_issue ,
540
612
"remediation_ids" : remediation_ids ,
541
613
"sort" : sort ,
@@ -554,9 +626,13 @@ async def list_groups(
554
626
created_at_end : Union [str , datetime , None ] | NotGiven = NOT_GIVEN ,
555
627
created_at_start : Union [str , datetime , None ] | NotGiven = NOT_GIVEN ,
556
628
custom_metadata : Optional [str ] | NotGiven = NOT_GIVEN ,
629
+ failed_evals : Optional [List [str ]] | NotGiven = NOT_GIVEN ,
630
+ guardrailed : Optional [bool ] | NotGiven = NOT_GIVEN ,
557
631
limit : int | NotGiven = NOT_GIVEN ,
632
+ needs_review : Optional [bool ] | NotGiven = NOT_GIVEN ,
558
633
offset : int | NotGiven = NOT_GIVEN ,
559
634
order : Literal ["asc" , "desc" ] | NotGiven = NOT_GIVEN ,
635
+ passed_evals : Optional [List [str ]] | NotGiven = NOT_GIVEN ,
560
636
primary_eval_issue : Optional [
561
637
List [Literal ["hallucination" , "search_failure" , "unhelpful" , "difficult_query" , "unsupported" ]]
562
638
]
@@ -581,6 +657,14 @@ async def list_groups(
581
657
582
658
custom_metadata: Filter by custom metadata as JSON string: {"key1": "value1", "key2": "value2"}
583
659
660
+ failed_evals: Filter by evals that failed
661
+
662
+ guardrailed: Filter by guardrailed status
663
+
664
+ needs_review: Filter log groups that need review
665
+
666
+ passed_evals: Filter by evals that passed
667
+
584
668
primary_eval_issue: Filter logs that have ANY of these primary evaluation issues (OR operation)
585
669
586
670
was_cache_hit: Filter by cache hit status
@@ -607,9 +691,13 @@ async def list_groups(
607
691
"created_at_end" : created_at_end ,
608
692
"created_at_start" : created_at_start ,
609
693
"custom_metadata" : custom_metadata ,
694
+ "failed_evals" : failed_evals ,
695
+ "guardrailed" : guardrailed ,
610
696
"limit" : limit ,
697
+ "needs_review" : needs_review ,
611
698
"offset" : offset ,
612
699
"order" : order ,
700
+ "passed_evals" : passed_evals ,
613
701
"primary_eval_issue" : primary_eval_issue ,
614
702
"sort" : sort ,
615
703
"was_cache_hit" : was_cache_hit ,
0 commit comments