@@ -92,11 +92,8 @@ def list(
9292 environment_id : str | Omit = omit ,
9393 limit : int | Omit = omit ,
9494 model_id : str | Omit = omit ,
95- schedule_id : str | Omit = omit ,
96- skill_spec : str | Omit = omit ,
9795 source : RunSourceType | Omit = omit ,
9896 state : List [RunState ] | Omit = omit ,
99- updated_after : Union [str , datetime ] | Omit = omit ,
10097 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
10198 # The extra values given here take precedence over values defined on the client or passed to this method.
10299 extra_headers : Headers | None = None ,
@@ -126,17 +123,11 @@ def list(
126123
127124 model_id: Filter by model ID
128125
129- schedule_id: Filter runs by the scheduled agent ID that created them
130-
131- skill_spec: Filter runs by skill spec (e.g., "owner/repo:path/to/SKILL.md")
132-
133126 source: Filter by run source type
134127
135128 state: Filter by run state. Can be specified multiple times to match any of the given
136129 states.
137130
138- updated_after: Filter runs updated after this timestamp (RFC3339 format)
139-
140131 extra_headers: Send extra headers
141132
142133 extra_query: Add additional query parameters to the request
@@ -162,11 +153,8 @@ def list(
162153 "environment_id" : environment_id ,
163154 "limit" : limit ,
164155 "model_id" : model_id ,
165- "schedule_id" : schedule_id ,
166- "skill_spec" : skill_spec ,
167156 "source" : source ,
168157 "state" : state ,
169- "updated_after" : updated_after ,
170158 },
171159 run_list_params .RunListParams ,
172160 ),
@@ -275,11 +263,8 @@ async def list(
275263 environment_id : str | Omit = omit ,
276264 limit : int | Omit = omit ,
277265 model_id : str | Omit = omit ,
278- schedule_id : str | Omit = omit ,
279- skill_spec : str | Omit = omit ,
280266 source : RunSourceType | Omit = omit ,
281267 state : List [RunState ] | Omit = omit ,
282- updated_after : Union [str , datetime ] | Omit = omit ,
283268 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
284269 # The extra values given here take precedence over values defined on the client or passed to this method.
285270 extra_headers : Headers | None = None ,
@@ -309,17 +294,11 @@ async def list(
309294
310295 model_id: Filter by model ID
311296
312- schedule_id: Filter runs by the scheduled agent ID that created them
313-
314- skill_spec: Filter runs by skill spec (e.g., "owner/repo:path/to/SKILL.md")
315-
316297 source: Filter by run source type
317298
318299 state: Filter by run state. Can be specified multiple times to match any of the given
319300 states.
320301
321- updated_after: Filter runs updated after this timestamp (RFC3339 format)
322-
323302 extra_headers: Send extra headers
324303
325304 extra_query: Add additional query parameters to the request
@@ -345,11 +324,8 @@ async def list(
345324 "environment_id" : environment_id ,
346325 "limit" : limit ,
347326 "model_id" : model_id ,
348- "schedule_id" : schedule_id ,
349- "skill_spec" : skill_spec ,
350327 "source" : source ,
351328 "state" : state ,
352- "updated_after" : updated_after ,
353329 },
354330 run_list_params .RunListParams ,
355331 ),
0 commit comments