@@ -106,6 +106,7 @@ def list(
106106 created_at_end : Union [str , datetime , None ] | NotGiven = NOT_GIVEN ,
107107 created_at_start : Union [str , datetime , None ] | NotGiven = NOT_GIVEN ,
108108 custom_metadata : Optional [str ] | NotGiven = NOT_GIVEN ,
109+ expert_review_status : Optional [Literal ["good" , "bad" ]] | NotGiven = NOT_GIVEN ,
109110 failed_evals : Optional [SequenceNotStr [str ]] | NotGiven = NOT_GIVEN ,
110111 guardrailed : Optional [bool ] | NotGiven = NOT_GIVEN ,
111112 has_tool_calls : Optional [bool ] | NotGiven = NOT_GIVEN ,
@@ -137,6 +138,8 @@ def list(
137138
138139 custom_metadata: Filter by custom metadata as JSON string: {"key1": "value1", "key2": "value2"}
139140
141+ expert_review_status: Filter by expert review status
142+
140143 failed_evals: Filter by evals that failed
141144
142145 guardrailed: Filter by guardrailed status
@@ -185,6 +188,7 @@ def list(
185188 "created_at_end" : created_at_end ,
186189 "created_at_start" : created_at_start ,
187190 "custom_metadata" : custom_metadata ,
191+ "expert_review_status" : expert_review_status ,
188192 "failed_evals" : failed_evals ,
189193 "guardrailed" : guardrailed ,
190194 "has_tool_calls" : has_tool_calls ,
@@ -250,6 +254,7 @@ def list_by_group(
250254 created_at_end : Union [str , datetime , None ] | NotGiven = NOT_GIVEN ,
251255 created_at_start : Union [str , datetime , None ] | NotGiven = NOT_GIVEN ,
252256 custom_metadata : Optional [str ] | NotGiven = NOT_GIVEN ,
257+ expert_review_status : Optional [Literal ["good" , "bad" ]] | NotGiven = NOT_GIVEN ,
253258 failed_evals : Optional [SequenceNotStr [str ]] | NotGiven = NOT_GIVEN ,
254259 guardrailed : Optional [bool ] | NotGiven = NOT_GIVEN ,
255260 has_tool_calls : Optional [bool ] | NotGiven = NOT_GIVEN ,
@@ -283,6 +288,8 @@ def list_by_group(
283288
284289 custom_metadata: Filter by custom metadata as JSON string: {"key1": "value1", "key2": "value2"}
285290
291+ expert_review_status: Filter by expert review status
292+
286293 failed_evals: Filter by evals that failed
287294
288295 guardrailed: Filter by guardrailed status
@@ -334,6 +341,7 @@ def list_by_group(
334341 "created_at_end" : created_at_end ,
335342 "created_at_start" : created_at_start ,
336343 "custom_metadata" : custom_metadata ,
344+ "expert_review_status" : expert_review_status ,
337345 "failed_evals" : failed_evals ,
338346 "guardrailed" : guardrailed ,
339347 "has_tool_calls" : has_tool_calls ,
@@ -361,6 +369,7 @@ def list_groups(
361369 created_at_end : Union [str , datetime , None ] | NotGiven = NOT_GIVEN ,
362370 created_at_start : Union [str , datetime , None ] | NotGiven = NOT_GIVEN ,
363371 custom_metadata : Optional [str ] | NotGiven = NOT_GIVEN ,
372+ expert_review_status : Optional [Literal ["good" , "bad" ]] | NotGiven = NOT_GIVEN ,
364373 failed_evals : Optional [SequenceNotStr [str ]] | NotGiven = NOT_GIVEN ,
365374 guardrailed : Optional [bool ] | NotGiven = NOT_GIVEN ,
366375 has_tool_calls : Optional [bool ] | NotGiven = NOT_GIVEN ,
@@ -393,6 +402,8 @@ def list_groups(
393402
394403 custom_metadata: Filter by custom metadata as JSON string: {"key1": "value1", "key2": "value2"}
395404
405+ expert_review_status: Filter by expert review status
406+
396407 failed_evals: Filter by evals that failed
397408
398409 guardrailed: Filter by guardrailed status
@@ -444,6 +455,7 @@ def list_groups(
444455 "created_at_end" : created_at_end ,
445456 "created_at_start" : created_at_start ,
446457 "custom_metadata" : custom_metadata ,
458+ "expert_review_status" : expert_review_status ,
447459 "failed_evals" : failed_evals ,
448460 "guardrailed" : guardrailed ,
449461 "has_tool_calls" : has_tool_calls ,
@@ -601,6 +613,7 @@ def list(
601613 created_at_end : Union [str , datetime , None ] | NotGiven = NOT_GIVEN ,
602614 created_at_start : Union [str , datetime , None ] | NotGiven = NOT_GIVEN ,
603615 custom_metadata : Optional [str ] | NotGiven = NOT_GIVEN ,
616+ expert_review_status : Optional [Literal ["good" , "bad" ]] | NotGiven = NOT_GIVEN ,
604617 failed_evals : Optional [SequenceNotStr [str ]] | NotGiven = NOT_GIVEN ,
605618 guardrailed : Optional [bool ] | NotGiven = NOT_GIVEN ,
606619 has_tool_calls : Optional [bool ] | NotGiven = NOT_GIVEN ,
@@ -632,6 +645,8 @@ def list(
632645
633646 custom_metadata: Filter by custom metadata as JSON string: {"key1": "value1", "key2": "value2"}
634647
648+ expert_review_status: Filter by expert review status
649+
635650 failed_evals: Filter by evals that failed
636651
637652 guardrailed: Filter by guardrailed status
@@ -680,6 +695,7 @@ def list(
680695 "created_at_end" : created_at_end ,
681696 "created_at_start" : created_at_start ,
682697 "custom_metadata" : custom_metadata ,
698+ "expert_review_status" : expert_review_status ,
683699 "failed_evals" : failed_evals ,
684700 "guardrailed" : guardrailed ,
685701 "has_tool_calls" : has_tool_calls ,
@@ -747,6 +763,7 @@ async def list_by_group(
747763 created_at_end : Union [str , datetime , None ] | NotGiven = NOT_GIVEN ,
748764 created_at_start : Union [str , datetime , None ] | NotGiven = NOT_GIVEN ,
749765 custom_metadata : Optional [str ] | NotGiven = NOT_GIVEN ,
766+ expert_review_status : Optional [Literal ["good" , "bad" ]] | NotGiven = NOT_GIVEN ,
750767 failed_evals : Optional [SequenceNotStr [str ]] | NotGiven = NOT_GIVEN ,
751768 guardrailed : Optional [bool ] | NotGiven = NOT_GIVEN ,
752769 has_tool_calls : Optional [bool ] | NotGiven = NOT_GIVEN ,
@@ -780,6 +797,8 @@ async def list_by_group(
780797
781798 custom_metadata: Filter by custom metadata as JSON string: {"key1": "value1", "key2": "value2"}
782799
800+ expert_review_status: Filter by expert review status
801+
783802 failed_evals: Filter by evals that failed
784803
785804 guardrailed: Filter by guardrailed status
@@ -831,6 +850,7 @@ async def list_by_group(
831850 "created_at_end" : created_at_end ,
832851 "created_at_start" : created_at_start ,
833852 "custom_metadata" : custom_metadata ,
853+ "expert_review_status" : expert_review_status ,
834854 "failed_evals" : failed_evals ,
835855 "guardrailed" : guardrailed ,
836856 "has_tool_calls" : has_tool_calls ,
@@ -858,6 +878,7 @@ def list_groups(
858878 created_at_end : Union [str , datetime , None ] | NotGiven = NOT_GIVEN ,
859879 created_at_start : Union [str , datetime , None ] | NotGiven = NOT_GIVEN ,
860880 custom_metadata : Optional [str ] | NotGiven = NOT_GIVEN ,
881+ expert_review_status : Optional [Literal ["good" , "bad" ]] | NotGiven = NOT_GIVEN ,
861882 failed_evals : Optional [SequenceNotStr [str ]] | NotGiven = NOT_GIVEN ,
862883 guardrailed : Optional [bool ] | NotGiven = NOT_GIVEN ,
863884 has_tool_calls : Optional [bool ] | NotGiven = NOT_GIVEN ,
@@ -890,6 +911,8 @@ def list_groups(
890911
891912 custom_metadata: Filter by custom metadata as JSON string: {"key1": "value1", "key2": "value2"}
892913
914+ expert_review_status: Filter by expert review status
915+
893916 failed_evals: Filter by evals that failed
894917
895918 guardrailed: Filter by guardrailed status
@@ -941,6 +964,7 @@ def list_groups(
941964 "created_at_end" : created_at_end ,
942965 "created_at_start" : created_at_start ,
943966 "custom_metadata" : custom_metadata ,
967+ "expert_review_status" : expert_review_status ,
944968 "failed_evals" : failed_evals ,
945969 "guardrailed" : guardrailed ,
946970 "has_tool_calls" : has_tool_calls ,
0 commit comments