@@ -50,10 +50,11 @@ def list(
5050 self ,
5151 project_id : str ,
5252 * ,
53+ eval_issue_types : List [Literal ["hallucination" , "search_failure" , "unhelpful" ]] | NotGiven = NOT_GIVEN ,
5354 limit : int | NotGiven = NOT_GIVEN ,
5455 offset : int | NotGiven = NOT_GIVEN ,
5556 order : Literal ["asc" , "desc" ] | NotGiven = NOT_GIVEN ,
56- sort : Optional [Literal ["created_at" , "answered_at" , "cluster_frequency_count" , "custom_rank" ]]
57+ sort : Optional [Literal ["created_at" , "answered_at" , "cluster_frequency_count" , "custom_rank" , "eval_score" ]]
5758 | NotGiven = NOT_GIVEN ,
5859 states : List [Literal ["unanswered" , "draft" , "published" , "published_with_draft" ]] | NotGiven = NOT_GIVEN ,
5960 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
@@ -87,6 +88,7 @@ def list(
8788 timeout = timeout ,
8889 query = maybe_transform (
8990 {
91+ "eval_issue_types" : eval_issue_types ,
9092 "limit" : limit ,
9193 "offset" : offset ,
9294 "order" : order ,
@@ -162,10 +164,11 @@ def list(
162164 self ,
163165 project_id : str ,
164166 * ,
167+ eval_issue_types : List [Literal ["hallucination" , "search_failure" , "unhelpful" ]] | NotGiven = NOT_GIVEN ,
165168 limit : int | NotGiven = NOT_GIVEN ,
166169 offset : int | NotGiven = NOT_GIVEN ,
167170 order : Literal ["asc" , "desc" ] | NotGiven = NOT_GIVEN ,
168- sort : Optional [Literal ["created_at" , "answered_at" , "cluster_frequency_count" , "custom_rank" ]]
171+ sort : Optional [Literal ["created_at" , "answered_at" , "cluster_frequency_count" , "custom_rank" , "eval_score" ]]
169172 | NotGiven = NOT_GIVEN ,
170173 states : List [Literal ["unanswered" , "draft" , "published" , "published_with_draft" ]] | NotGiven = NOT_GIVEN ,
171174 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
@@ -199,6 +202,7 @@ def list(
199202 timeout = timeout ,
200203 query = maybe_transform (
201204 {
205+ "eval_issue_types" : eval_issue_types ,
202206 "limit" : limit ,
203207 "offset" : offset ,
204208 "order" : order ,
0 commit comments