@@ -68,6 +68,7 @@ def create(
68
68
frequency_penalty : Optional [float ] | NotGiven = NOT_GIVEN ,
69
69
function_call : completion_create_params .FunctionCall | NotGiven = NOT_GIVEN ,
70
70
functions : Iterable [completion_create_params .Function ] | NotGiven = NOT_GIVEN ,
71
+ instance_id : Optional [str ] | NotGiven = NOT_GIVEN ,
71
72
logit_bias : Optional [Dict [str , int ]] | NotGiven = NOT_GIVEN ,
72
73
logprobs : Optional [bool ] | NotGiven = NOT_GIVEN ,
73
74
max_tokens : Optional [int ] | NotGiven = NOT_GIVEN ,
@@ -122,6 +123,9 @@ def create(
122
123
123
124
A list of functions the model may generate JSON inputs for.
124
125
126
+ instance_id: An unique identifier to a custom instance to execute the request. The requesting
127
+ organization is required to have access to the instance.
128
+
125
129
logit_bias: Modify the likelihood of specified tokens appearing in the completion.
126
130
127
131
Accepts a JSON object that maps tokens (specified by their token ID in the
@@ -259,6 +263,7 @@ def create(
259
263
frequency_penalty : Optional [float ] | NotGiven = NOT_GIVEN ,
260
264
function_call : completion_create_params .FunctionCall | NotGiven = NOT_GIVEN ,
261
265
functions : Iterable [completion_create_params .Function ] | NotGiven = NOT_GIVEN ,
266
+ instance_id : Optional [str ] | NotGiven = NOT_GIVEN ,
262
267
logit_bias : Optional [Dict [str , int ]] | NotGiven = NOT_GIVEN ,
263
268
logprobs : Optional [bool ] | NotGiven = NOT_GIVEN ,
264
269
max_tokens : Optional [int ] | NotGiven = NOT_GIVEN ,
@@ -319,6 +324,9 @@ def create(
319
324
320
325
A list of functions the model may generate JSON inputs for.
321
326
327
+ instance_id: An unique identifier to a custom instance to execute the request. The requesting
328
+ organization is required to have access to the instance.
329
+
322
330
logit_bias: Modify the likelihood of specified tokens appearing in the completion.
323
331
324
332
Accepts a JSON object that maps tokens (specified by their token ID in the
@@ -449,6 +457,7 @@ def create(
449
457
frequency_penalty : Optional [float ] | NotGiven = NOT_GIVEN ,
450
458
function_call : completion_create_params .FunctionCall | NotGiven = NOT_GIVEN ,
451
459
functions : Iterable [completion_create_params .Function ] | NotGiven = NOT_GIVEN ,
460
+ instance_id : Optional [str ] | NotGiven = NOT_GIVEN ,
452
461
logit_bias : Optional [Dict [str , int ]] | NotGiven = NOT_GIVEN ,
453
462
logprobs : Optional [bool ] | NotGiven = NOT_GIVEN ,
454
463
max_tokens : Optional [int ] | NotGiven = NOT_GIVEN ,
@@ -509,6 +518,9 @@ def create(
509
518
510
519
A list of functions the model may generate JSON inputs for.
511
520
521
+ instance_id: An unique identifier to a custom instance to execute the request. The requesting
522
+ organization is required to have access to the instance.
523
+
512
524
logit_bias: Modify the likelihood of specified tokens appearing in the completion.
513
525
514
526
Accepts a JSON object that maps tokens (specified by their token ID in the
@@ -638,6 +650,7 @@ def create(
638
650
frequency_penalty : Optional [float ] | NotGiven = NOT_GIVEN ,
639
651
function_call : completion_create_params .FunctionCall | NotGiven = NOT_GIVEN ,
640
652
functions : Iterable [completion_create_params .Function ] | NotGiven = NOT_GIVEN ,
653
+ instance_id : Optional [str ] | NotGiven = NOT_GIVEN ,
641
654
logit_bias : Optional [Dict [str , int ]] | NotGiven = NOT_GIVEN ,
642
655
logprobs : Optional [bool ] | NotGiven = NOT_GIVEN ,
643
656
max_tokens : Optional [int ] | NotGiven = NOT_GIVEN ,
@@ -669,6 +682,7 @@ def create(
669
682
"frequency_penalty" : frequency_penalty ,
670
683
"function_call" : function_call ,
671
684
"functions" : functions ,
685
+ "instance_id" : instance_id ,
672
686
"logit_bias" : logit_bias ,
673
687
"logprobs" : logprobs ,
674
688
"max_tokens" : max_tokens ,
@@ -735,6 +749,7 @@ async def create(
735
749
frequency_penalty : Optional [float ] | NotGiven = NOT_GIVEN ,
736
750
function_call : completion_create_params .FunctionCall | NotGiven = NOT_GIVEN ,
737
751
functions : Iterable [completion_create_params .Function ] | NotGiven = NOT_GIVEN ,
752
+ instance_id : Optional [str ] | NotGiven = NOT_GIVEN ,
738
753
logit_bias : Optional [Dict [str , int ]] | NotGiven = NOT_GIVEN ,
739
754
logprobs : Optional [bool ] | NotGiven = NOT_GIVEN ,
740
755
max_tokens : Optional [int ] | NotGiven = NOT_GIVEN ,
@@ -789,6 +804,9 @@ async def create(
789
804
790
805
A list of functions the model may generate JSON inputs for.
791
806
807
+ instance_id: An unique identifier to a custom instance to execute the request. The requesting
808
+ organization is required to have access to the instance.
809
+
792
810
logit_bias: Modify the likelihood of specified tokens appearing in the completion.
793
811
794
812
Accepts a JSON object that maps tokens (specified by their token ID in the
@@ -926,6 +944,7 @@ async def create(
926
944
frequency_penalty : Optional [float ] | NotGiven = NOT_GIVEN ,
927
945
function_call : completion_create_params .FunctionCall | NotGiven = NOT_GIVEN ,
928
946
functions : Iterable [completion_create_params .Function ] | NotGiven = NOT_GIVEN ,
947
+ instance_id : Optional [str ] | NotGiven = NOT_GIVEN ,
929
948
logit_bias : Optional [Dict [str , int ]] | NotGiven = NOT_GIVEN ,
930
949
logprobs : Optional [bool ] | NotGiven = NOT_GIVEN ,
931
950
max_tokens : Optional [int ] | NotGiven = NOT_GIVEN ,
@@ -986,6 +1005,9 @@ async def create(
986
1005
987
1006
A list of functions the model may generate JSON inputs for.
988
1007
1008
+ instance_id: An unique identifier to a custom instance to execute the request. The requesting
1009
+ organization is required to have access to the instance.
1010
+
989
1011
logit_bias: Modify the likelihood of specified tokens appearing in the completion.
990
1012
991
1013
Accepts a JSON object that maps tokens (specified by their token ID in the
@@ -1116,6 +1138,7 @@ async def create(
1116
1138
frequency_penalty : Optional [float ] | NotGiven = NOT_GIVEN ,
1117
1139
function_call : completion_create_params .FunctionCall | NotGiven = NOT_GIVEN ,
1118
1140
functions : Iterable [completion_create_params .Function ] | NotGiven = NOT_GIVEN ,
1141
+ instance_id : Optional [str ] | NotGiven = NOT_GIVEN ,
1119
1142
logit_bias : Optional [Dict [str , int ]] | NotGiven = NOT_GIVEN ,
1120
1143
logprobs : Optional [bool ] | NotGiven = NOT_GIVEN ,
1121
1144
max_tokens : Optional [int ] | NotGiven = NOT_GIVEN ,
@@ -1176,6 +1199,9 @@ async def create(
1176
1199
1177
1200
A list of functions the model may generate JSON inputs for.
1178
1201
1202
+ instance_id: An unique identifier to a custom instance to execute the request. The requesting
1203
+ organization is required to have access to the instance.
1204
+
1179
1205
logit_bias: Modify the likelihood of specified tokens appearing in the completion.
1180
1206
1181
1207
Accepts a JSON object that maps tokens (specified by their token ID in the
@@ -1305,6 +1331,7 @@ async def create(
1305
1331
frequency_penalty : Optional [float ] | NotGiven = NOT_GIVEN ,
1306
1332
function_call : completion_create_params .FunctionCall | NotGiven = NOT_GIVEN ,
1307
1333
functions : Iterable [completion_create_params .Function ] | NotGiven = NOT_GIVEN ,
1334
+ instance_id : Optional [str ] | NotGiven = NOT_GIVEN ,
1308
1335
logit_bias : Optional [Dict [str , int ]] | NotGiven = NOT_GIVEN ,
1309
1336
logprobs : Optional [bool ] | NotGiven = NOT_GIVEN ,
1310
1337
max_tokens : Optional [int ] | NotGiven = NOT_GIVEN ,
@@ -1336,6 +1363,7 @@ async def create(
1336
1363
"frequency_penalty" : frequency_penalty ,
1337
1364
"function_call" : function_call ,
1338
1365
"functions" : functions ,
1366
+ "instance_id" : instance_id ,
1339
1367
"logit_bias" : logit_bias ,
1340
1368
"logprobs" : logprobs ,
1341
1369
"max_tokens" : max_tokens ,
0 commit comments