@@ -87,6 +87,7 @@ def create(
87
87
instructions : Union [str , List [str ]] | NotGiven = NOT_GIVEN ,
88
88
metadata : Optional [object ] | NotGiven = NOT_GIVEN ,
89
89
model : str | NotGiven = NOT_GIVEN ,
90
+ project : Optional [str ] | NotGiven = NOT_GIVEN ,
90
91
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
91
92
# The extra values given here take precedence over values defined on the client or passed to this method.
92
93
extra_headers : Headers | None = None ,
@@ -118,6 +119,7 @@ def create(
118
119
"instructions" : instructions ,
119
120
"metadata" : metadata ,
120
121
"model" : model ,
122
+ "project" : project ,
121
123
},
122
124
agent_create_params .AgentCreateParams ,
123
125
),
@@ -139,6 +141,7 @@ def update(
139
141
metadata : Optional [object ] | NotGiven = NOT_GIVEN ,
140
142
model : str | NotGiven = NOT_GIVEN ,
141
143
name : Optional [str ] | NotGiven = NOT_GIVEN ,
144
+ project : Optional [str ] | NotGiven = NOT_GIVEN ,
142
145
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
143
146
# The extra values given here take precedence over values defined on the client or passed to this method.
144
147
extra_headers : Headers | None = None ,
@@ -172,6 +175,7 @@ def update(
172
175
"metadata" : metadata ,
173
176
"model" : model ,
174
177
"name" : name ,
178
+ "project" : project ,
175
179
},
176
180
agent_update_params .AgentUpdateParams ,
177
181
),
@@ -275,6 +279,7 @@ def create_or_update(
275
279
instructions : Union [str , List [str ]] | NotGiven = NOT_GIVEN ,
276
280
metadata : Optional [object ] | NotGiven = NOT_GIVEN ,
277
281
model : str | NotGiven = NOT_GIVEN ,
282
+ project : Optional [str ] | NotGiven = NOT_GIVEN ,
278
283
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
279
284
# The extra values given here take precedence over values defined on the client or passed to this method.
280
285
extra_headers : Headers | None = None ,
@@ -308,6 +313,7 @@ def create_or_update(
308
313
"instructions" : instructions ,
309
314
"metadata" : metadata ,
310
315
"model" : model ,
316
+ "project" : project ,
311
317
},
312
318
agent_create_or_update_params .AgentCreateOrUpdateParams ,
313
319
),
@@ -362,6 +368,7 @@ def reset(
362
368
instructions : Union [str , List [str ]] | NotGiven = NOT_GIVEN ,
363
369
metadata : Optional [object ] | NotGiven = NOT_GIVEN ,
364
370
model : str | NotGiven = NOT_GIVEN ,
371
+ project : Optional [str ] | NotGiven = NOT_GIVEN ,
365
372
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
366
373
# The extra values given here take precedence over values defined on the client or passed to this method.
367
374
extra_headers : Headers | None = None ,
@@ -395,6 +402,7 @@ def reset(
395
402
"instructions" : instructions ,
396
403
"metadata" : metadata ,
397
404
"model" : model ,
405
+ "project" : project ,
398
406
},
399
407
agent_reset_params .AgentResetParams ,
400
408
),
@@ -444,6 +452,7 @@ async def create(
444
452
instructions : Union [str , List [str ]] | NotGiven = NOT_GIVEN ,
445
453
metadata : Optional [object ] | NotGiven = NOT_GIVEN ,
446
454
model : str | NotGiven = NOT_GIVEN ,
455
+ project : Optional [str ] | NotGiven = NOT_GIVEN ,
447
456
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
448
457
# The extra values given here take precedence over values defined on the client or passed to this method.
449
458
extra_headers : Headers | None = None ,
@@ -475,6 +484,7 @@ async def create(
475
484
"instructions" : instructions ,
476
485
"metadata" : metadata ,
477
486
"model" : model ,
487
+ "project" : project ,
478
488
},
479
489
agent_create_params .AgentCreateParams ,
480
490
),
@@ -496,6 +506,7 @@ async def update(
496
506
metadata : Optional [object ] | NotGiven = NOT_GIVEN ,
497
507
model : str | NotGiven = NOT_GIVEN ,
498
508
name : Optional [str ] | NotGiven = NOT_GIVEN ,
509
+ project : Optional [str ] | NotGiven = NOT_GIVEN ,
499
510
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
500
511
# The extra values given here take precedence over values defined on the client or passed to this method.
501
512
extra_headers : Headers | None = None ,
@@ -529,6 +540,7 @@ async def update(
529
540
"metadata" : metadata ,
530
541
"model" : model ,
531
542
"name" : name ,
543
+ "project" : project ,
532
544
},
533
545
agent_update_params .AgentUpdateParams ,
534
546
),
@@ -632,6 +644,7 @@ async def create_or_update(
632
644
instructions : Union [str , List [str ]] | NotGiven = NOT_GIVEN ,
633
645
metadata : Optional [object ] | NotGiven = NOT_GIVEN ,
634
646
model : str | NotGiven = NOT_GIVEN ,
647
+ project : Optional [str ] | NotGiven = NOT_GIVEN ,
635
648
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
636
649
# The extra values given here take precedence over values defined on the client or passed to this method.
637
650
extra_headers : Headers | None = None ,
@@ -665,6 +678,7 @@ async def create_or_update(
665
678
"instructions" : instructions ,
666
679
"metadata" : metadata ,
667
680
"model" : model ,
681
+ "project" : project ,
668
682
},
669
683
agent_create_or_update_params .AgentCreateOrUpdateParams ,
670
684
),
@@ -719,6 +733,7 @@ async def reset(
719
733
instructions : Union [str , List [str ]] | NotGiven = NOT_GIVEN ,
720
734
metadata : Optional [object ] | NotGiven = NOT_GIVEN ,
721
735
model : str | NotGiven = NOT_GIVEN ,
736
+ project : Optional [str ] | NotGiven = NOT_GIVEN ,
722
737
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
723
738
# The extra values given here take precedence over values defined on the client or passed to this method.
724
739
extra_headers : Headers | None = None ,
@@ -752,6 +767,7 @@ async def reset(
752
767
"instructions" : instructions ,
753
768
"metadata" : metadata ,
754
769
"model" : model ,
770
+ "project" : project ,
755
771
},
756
772
agent_reset_params .AgentResetParams ,
757
773
),
0 commit comments