-
Notifications
You must be signed in to change notification settings - Fork 5.1k
/
inference.yaml
2084 lines (2083 loc) · 83 KB
/
inference.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
openapi: 3.0.0
info:
title: Azure OpenAI Service API
description: Azure OpenAI APIs for completions and search
version: '2024-06-01'
servers:
- url: https://{endpoint}/openai
variables:
endpoint:
default: your-resource-name.openai.azure.com
security:
- bearer:
- api.read
- apiKey: []
paths:
/deployments/{deployment-id}/completions:
post:
summary: Creates a completion for the provided prompt, parameters and chosen model.
operationId: Completions_Create
parameters:
- in: path
name: deployment-id
required: true
schema:
type: string
example: davinci
description: Deployment id of the model which was deployed.
- in: query
name: api-version
required: true
schema:
type: string
example: 2024-06-01
description: api version
requestBody:
required: true
content:
application/json:
schema:
type: object
properties:
prompt:
description: |-
The prompt(s) to generate completions for, encoded as a string or array of strings.
Note that <|endoftext|> is the document separator that the model sees during training, so if a prompt is not specified the model will generate as if from the beginning of a new document. Maximum allowed size of string list is 2048.
oneOf:
- type: string
default: ''
example: This is a test.
nullable: true
- type: array
items:
type: string
default: ''
example: This is a test.
nullable: false
description: Array size minimum of 1 and maximum of 2048
max_tokens:
description: The token count of your prompt plus max_tokens cannot exceed the model's context length. Most models have a context length of 2048 tokens (except for the newest models, which support 4096). Has minimum of 0.
type: integer
default: 16
example: 16
nullable: true
temperature:
description: |-
What sampling temperature to use. Higher values means the model will take more risks. Try 0.9 for more creative applications, and 0 (argmax sampling) for ones with a well-defined answer.
We generally recommend altering this or top_p but not both.
type: number
default: 1
example: 1
nullable: true
top_p:
description: |-
An alternative to sampling with temperature, called nucleus sampling, where the model considers the results of the tokens with top_p probability mass. So 0.1 means only the tokens comprising the top 10% probability mass are considered.
We generally recommend altering this or temperature but not both.
type: number
default: 1
example: 1
nullable: true
logit_bias:
description: Defaults to null. Modify the likelihood of specified tokens appearing in the completion. Accepts a json object that maps tokens (specified by their token ID in the GPT tokenizer) to an associated bias value from -100 to 100. You can use this tokenizer tool (which works for both GPT-2 and GPT-3) to convert text to token IDs. Mathematically, the bias is added to the logits generated by the model prior to sampling. The exact effect will vary per model, but values between -1 and 1 should decrease or increase likelihood of selection; values like -100 or 100 should result in a ban or exclusive selection of the relevant token. As an example, you can pass {"50256" : -100} to prevent the <|endoftext|> token from being generated.
type: object
nullable: false
user:
description: A unique identifier representing your end-user, which can help monitoring and detecting abuse
type: string
nullable: false
'n':
description: |-
How many completions to generate for each prompt. Minimum of 1 and maximum of 128 allowed.
Note: Because this parameter generates many completions, it can quickly consume your token quota. Use carefully and ensure that you have reasonable settings for max_tokens and stop.
type: integer
default: 1
example: 1
nullable: true
stream:
description: 'Whether to stream back partial progress. If set, tokens will be sent as data-only server-sent events as they become available, with the stream terminated by a data: [DONE] message.'
type: boolean
nullable: true
default: false
logprobs:
description: |-
Include the log probabilities on the logprobs most likely tokens, as well the chosen tokens. For example, if logprobs is 5, the API will return a list of the 5 most likely tokens. The API will always return the logprob of the sampled token, so there may be up to logprobs+1 elements in the response.
Minimum of 0 and maximum of 5 allowed.
type: integer
default: null
nullable: true
suffix:
type: string
nullable: true
description: The suffix that comes after a completion of inserted text.
echo:
description: Echo back the prompt in addition to the completion
type: boolean
default: false
nullable: true
stop:
description: Up to 4 sequences where the API will stop generating further tokens. The returned text will not contain the stop sequence.
oneOf:
- type: string
default: <|endoftext|>
example: |+
nullable: true
- type: array
items:
type: string
example: |+
nullable: false
description: Array minimum size of 1 and maximum of 4
completion_config:
type: string
nullable: true
presence_penalty:
description: Number between -2.0 and 2.0. Positive values penalize new tokens based on whether they appear in the text so far, increasing the model's likelihood to talk about new topics.
type: number
default: 0
frequency_penalty:
description: Number between -2.0 and 2.0. Positive values penalize new tokens based on their existing frequency in the text so far, decreasing the model's likelihood to repeat the same line verbatim.
type: number
default: 0
best_of:
description: |-
Generates best_of completions server-side and returns the "best" (the one with the highest log probability per token). Results cannot be streamed.
When used with n, best_of controls the number of candidate completions and n specifies how many to return - best_of must be greater than n.
Note: Because this parameter generates many completions, it can quickly consume your token quota. Use carefully and ensure that you have reasonable settings for max_tokens and stop. Has maximum value of 128.
type: integer
example:
prompt: |-
Negate the following sentence.The price for bubblegum increased on thursday.
Negated Sentence:
max_tokens: 50
responses:
'200':
description: OK
content:
application/json:
schema:
type: object
properties:
id:
type: string
object:
type: string
created:
type: integer
model:
type: string
prompt_filter_results:
$ref: '#/components/schemas/promptFilterResults'
choices:
type: array
items:
type: object
properties:
text:
type: string
index:
type: integer
logprobs:
type: object
properties:
tokens:
type: array
items:
type: string
token_logprobs:
type: array
items:
type: number
top_logprobs:
type: array
items:
type: object
additionalProperties:
type: number
text_offset:
type: array
items:
type: integer
nullable: true
finish_reason:
type: string
content_filter_results:
$ref: '#/components/schemas/contentFilterChoiceResults'
usage:
type: object
properties:
completion_tokens:
type: number
format: int32
prompt_tokens:
type: number
format: int32
total_tokens:
type: number
format: int32
required:
- prompt_tokens
- total_tokens
- completion_tokens
required:
- id
- object
- created
- model
- choices
example:
model: davinci
object: text_completion
id: cmpl-4509KAos68kxOqpE2uYGw81j6m7uo
created: 1637097562
choices:
- index: 0
text: The price for bubblegum decreased on thursday.
logprobs: null
finish_reason: stop
headers:
apim-request-id:
description: Request ID for troubleshooting purposes
schema:
type: string
default:
description: Service unavailable
content:
application/json:
schema:
$ref: '#/components/schemas/errorResponse'
headers:
apim-request-id:
description: Request ID for troubleshooting purposes
schema:
type: string
/deployments/{deployment-id}/embeddings:
post:
summary: Get a vector representation of a given input that can be easily consumed by machine learning models and algorithms.
operationId: embeddings_create
parameters:
- in: path
name: deployment-id
required: true
schema:
type: string
example: ada-search-index-v1
description: The deployment id of the model which was deployed.
- in: query
name: api-version
required: true
schema:
type: string
example: '2024-06-01'
description: api version
requestBody:
required: true
content:
application/json:
schema:
type: object
additionalProperties: true
properties:
input:
description: |-
Input text to get embeddings for, encoded as a string. To get embeddings for multiple inputs in a single request, pass an array of strings. Each input must not exceed 2048 tokens in length.
Unless you are embedding code, we suggest replacing newlines (\n) in your input with a single space, as we have observed inferior results when newlines are present.
oneOf:
- type: string
default: ''
example: This is a test.
nullable: true
- type: array
minItems: 1
maxItems: 2048
items:
type: string
minLength: 1
example: This is a test.
nullable: false
user:
description: A unique identifier representing your end-user, which can help monitoring and detecting abuse.
type: string
nullable: false
input_type:
description: input type of embedding search to use
type: string
example: query
encoding_format:
description: The format to return the embeddings in. Can be either `float` or `base64`. Defaults to `float`.
type: string
example: base64
nullable: true
dimensions:
description: The number of dimensions the resulting output embeddings should have. Only supported in `text-embedding-3` and later models.
type: integer
example: 1
nullable: true
required:
- input
responses:
'200':
description: OK
content:
application/json:
schema:
type: object
properties:
object:
type: string
model:
type: string
data:
type: array
items:
type: object
properties:
index:
type: integer
object:
type: string
embedding:
type: array
items:
type: number
required:
- index
- object
- embedding
usage:
type: object
properties:
prompt_tokens:
type: integer
total_tokens:
type: integer
required:
- prompt_tokens
- total_tokens
required:
- object
- model
- data
- usage
x-ms-examples:
Create a embeddings.:
$ref: ./examples/embeddings.yaml
/deployments/{deployment-id}/chat/completions:
post:
summary: Creates a completion for the chat message
operationId: ChatCompletions_Create
parameters:
- in: path
name: deployment-id
required: true
schema:
type: string
description: Deployment id of the model which was deployed.
- in: query
name: api-version
required: true
schema:
type: string
example: '2024-06-01'
description: api version
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/createChatCompletionRequest'
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/createChatCompletionResponse'
headers:
apim-request-id:
description: Request ID for troubleshooting purposes
schema:
type: string
default:
description: Service unavailable
content:
application/json:
schema:
$ref: '#/components/schemas/errorResponse'
headers:
apim-request-id:
description: Request ID for troubleshooting purposes
schema:
type: string
x-ms-examples:
Create a chat completion.:
$ref: ./examples/chat_completions.yaml
Creates a completion based on Azure Search data and system-assigned managed identity.:
$ref: ./examples/chat_completions_azure_search_minimum.yaml
Creates a completion based on Azure Search vector data, previous assistant message and user-assigned managed identity.:
$ref: ./examples/chat_completions_azure_search_advanced.yaml
Creates a completion for the provided Azure Cosmos DB.:
$ref: ./examples/chat_completions_cosmos_db.yaml
/deployments/{deployment-id}/audio/transcriptions:
post:
summary: Transcribes audio into the input language.
operationId: Transcriptions_Create
parameters:
- in: path
name: deployment-id
required: true
schema:
type: string
example: whisper
description: Deployment id of the whisper model.
- in: query
name: api-version
required: true
schema:
type: string
example: '2024-06-01'
description: api version
requestBody:
required: true
content:
multipart/form-data:
schema:
$ref: '#/components/schemas/createTranscriptionRequest'
responses:
'200':
description: OK
content:
application/json:
schema:
oneOf:
- $ref: '#/components/schemas/audioResponse'
- $ref: '#/components/schemas/audioVerboseResponse'
text/plain:
schema:
type: string
description: Transcribed text in the output format (when response_format was one of text, vtt or srt).
x-ms-examples:
Create an audio transcription with json response format.:
$ref: ./examples/audio_transcription_object.yaml
Create an audio transcription with text response format.:
$ref: ./examples/audio_transcription_text.yaml
/deployments/{deployment-id}/audio/translations:
post:
summary: Transcribes and translates input audio into English text.
operationId: Translations_Create
parameters:
- in: path
name: deployment-id
required: true
schema:
type: string
example: whisper
description: Deployment id of the whisper model which was deployed.
- in: query
name: api-version
required: true
schema:
type: string
example: '2024-06-01'
description: api version
requestBody:
required: true
content:
multipart/form-data:
schema:
$ref: '#/components/schemas/createTranslationRequest'
responses:
'200':
description: OK
content:
application/json:
schema:
oneOf:
- $ref: '#/components/schemas/audioResponse'
- $ref: '#/components/schemas/audioVerboseResponse'
text/plain:
schema:
type: string
description: Transcribed text in the output format (when response_format was one of text, vtt or srt).
x-ms-examples:
Create an audio translation with json response format.:
$ref: ./examples/audio_translation_object.yaml
Create an audio translation with text response format.:
$ref: ./examples/audio_translation_text.yaml
/deployments/{deployment-id}/images/generations:
post:
summary: Generates a batch of images from a text caption on a given DALLE model deployment
operationId: ImageGenerations_Create
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/imageGenerationsRequest'
parameters:
- in: path
name: deployment-id
required: true
schema:
type: string
example: dalle-deployment
description: Deployment id of the dalle model which was deployed.
- in: query
name: api-version
required: true
schema:
type: string
example: '2024-06-01'
description: api version
responses:
'200':
description: Ok
content:
application/json:
schema:
$ref: '#/components/schemas/generateImagesResponse'
default:
description: An error occurred.
content:
application/json:
schema:
$ref: '#/components/schemas/dalleErrorResponse'
x-ms-examples:
Create an image.:
$ref: ./examples/image_generation.yaml
components:
schemas:
errorResponse:
type: object
properties:
error:
$ref: '#/components/schemas/error'
errorBase:
type: object
properties:
code:
type: string
message:
type: string
error:
type: object
allOf:
- $ref: '#/components/schemas/errorBase'
properties:
param:
type: string
type:
type: string
inner_error:
$ref: '#/components/schemas/innerError'
innerError:
description: Inner error with additional details.
type: object
properties:
code:
$ref: '#/components/schemas/innerErrorCode'
content_filter_results:
$ref: '#/components/schemas/contentFilterPromptResults'
innerErrorCode:
description: Error codes for the inner error object.
enum:
- ResponsibleAIPolicyViolation
type: string
x-ms-enum:
name: InnerErrorCode
modelAsString: true
values:
- value: ResponsibleAIPolicyViolation
description: The prompt violated one of more content filter rules.
dalleErrorResponse:
type: object
properties:
error:
$ref: '#/components/schemas/dalleError'
dalleError:
type: object
allOf:
- $ref: '#/components/schemas/errorBase'
properties:
param:
type: string
type:
type: string
inner_error:
$ref: '#/components/schemas/dalleInnerError'
dalleInnerError:
description: Inner error with additional details.
type: object
properties:
code:
$ref: '#/components/schemas/innerErrorCode'
content_filter_results:
$ref: '#/components/schemas/dalleFilterResults'
revised_prompt:
type: string
description: The prompt that was used to generate the image, if there was any revision to the prompt.
contentFilterResultBase:
type: object
properties:
filtered:
type: boolean
required:
- filtered
contentFilterSeverityResult:
type: object
allOf:
- $ref: '#/components/schemas/contentFilterResultBase'
- properties:
severity:
type: string
enum:
- safe
- low
- medium
- high
x-ms-enum:
name: ContentFilterSeverity
modelAsString: true
values:
- value: safe
description: General content or related content in generic or non-harmful contexts.
- value: low
description: Harmful content at a low intensity and risk level.
- value: medium
description: Harmful content at a medium intensity and risk level.
- value: high
description: Harmful content at a high intensity and risk level.
required:
- severity
- filtered
contentFilterDetectedResult:
type: object
allOf:
- $ref: '#/components/schemas/contentFilterResultBase'
- properties:
detected:
type: boolean
required:
- detected
- filtered
contentFilterDetectedWithCitationResult:
type: object
allOf:
- $ref: '#/components/schemas/contentFilterDetectedResult'
- properties:
citation:
type: object
properties:
URL:
type: string
license:
type: string
required:
- detected
- filtered
contentFilterResultsBase:
type: object
description: Information about the content filtering results.
properties:
sexual:
$ref: '#/components/schemas/contentFilterSeverityResult'
violence:
$ref: '#/components/schemas/contentFilterSeverityResult'
hate:
$ref: '#/components/schemas/contentFilterSeverityResult'
self_harm:
$ref: '#/components/schemas/contentFilterSeverityResult'
profanity:
$ref: '#/components/schemas/contentFilterDetectedResult'
error:
$ref: '#/components/schemas/errorBase'
contentFilterPromptResults:
type: object
description: Information about the content filtering category (hate, sexual, violence, self_harm), if it has been detected, as well as the severity level (very_low, low, medium, high-scale that determines the intensity and risk level of harmful content) and if it has been filtered or not. Information about jailbreak content and profanity, if it has been detected, and if it has been filtered or not. And information about customer block list, if it has been filtered and its id.
allOf:
- $ref: '#/components/schemas/contentFilterResultsBase'
- properties:
jailbreak:
$ref: '#/components/schemas/contentFilterDetectedResult'
contentFilterChoiceResults:
type: object
description: Information about the content filtering category (hate, sexual, violence, self_harm), if it has been detected, as well as the severity level (very_low, low, medium, high-scale that determines the intensity and risk level of harmful content) and if it has been filtered or not. Information about third party text and profanity, if it has been detected, and if it has been filtered or not. And information about customer block list, if it has been filtered and its id.
allOf:
- $ref: '#/components/schemas/contentFilterResultsBase'
- properties:
protected_material_text:
$ref: '#/components/schemas/contentFilterDetectedResult'
- properties:
protected_material_code:
$ref: '#/components/schemas/contentFilterDetectedWithCitationResult'
promptFilterResult:
type: object
description: Content filtering results for a single prompt in the request.
properties:
prompt_index:
type: integer
content_filter_results:
$ref: '#/components/schemas/contentFilterPromptResults'
promptFilterResults:
type: array
description: Content filtering results for zero or more prompts in the request. In a streaming request, results for different prompts may arrive at different times or in different orders.
items:
$ref: '#/components/schemas/promptFilterResult'
dalleContentFilterResults:
type: object
description: Information about the content filtering results.
properties:
sexual:
$ref: '#/components/schemas/contentFilterSeverityResult'
violence:
$ref: '#/components/schemas/contentFilterSeverityResult'
hate:
$ref: '#/components/schemas/contentFilterSeverityResult'
self_harm:
$ref: '#/components/schemas/contentFilterSeverityResult'
dalleFilterResults:
type: object
description: Information about the content filtering category (hate, sexual, violence, self_harm), if it has been detected, as well as the severity level (very_low, low, medium, high-scale that determines the intensity and risk level of harmful content) and if it has been filtered or not. Information about jailbreak content and profanity, if it has been detected, and if it has been filtered or not. And information about customer block list, if it has been filtered and its id.
allOf:
- $ref: '#/components/schemas/dalleContentFilterResults'
- properties:
profanity:
$ref: '#/components/schemas/contentFilterDetectedResult'
jailbreak:
$ref: '#/components/schemas/contentFilterDetectedResult'
chatCompletionsRequestCommon:
type: object
properties:
temperature:
description: |-
What sampling temperature to use, between 0 and 2. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic.
We generally recommend altering this or `top_p` but not both.
type: number
minimum: 0
maximum: 2
default: 1
example: 1
nullable: true
top_p:
description: |-
An alternative to sampling with temperature, called nucleus sampling, where the model considers the results of the tokens with top_p probability mass. So 0.1 means only the tokens comprising the top 10% probability mass are considered.
We generally recommend altering this or `temperature` but not both.
type: number
minimum: 0
maximum: 1
default: 1
example: 1
nullable: true
stream:
description: 'If set, partial message deltas will be sent, like in ChatGPT. Tokens will be sent as data-only server-sent events as they become available, with the stream terminated by a `data: [DONE]` message.'
type: boolean
nullable: true
default: false
stop:
description: Up to 4 sequences where the API will stop generating further tokens.
oneOf:
- type: string
nullable: true
- type: array
items:
type: string
nullable: false
minItems: 1
maxItems: 4
description: Array minimum size of 1 and maximum of 4
default: null
max_tokens:
description: The maximum number of tokens allowed for the generated answer. By default, the number of tokens the model can return will be (4096 - prompt tokens).
type: integer
default: 4096
presence_penalty:
description: Number between -2.0 and 2.0. Positive values penalize new tokens based on whether they appear in the text so far, increasing the model's likelihood to talk about new topics.
type: number
default: 0
minimum: -2
maximum: 2
frequency_penalty:
description: Number between -2.0 and 2.0. Positive values penalize new tokens based on their existing frequency in the text so far, decreasing the model's likelihood to repeat the same line verbatim.
type: number
default: 0
minimum: -2
maximum: 2
logit_bias:
description: Modify the likelihood of specified tokens appearing in the completion. Accepts a json object that maps tokens (specified by their token ID in the tokenizer) to an associated bias value from -100 to 100. Mathematically, the bias is added to the logits generated by the model prior to sampling. The exact effect will vary per model, but values between -1 and 1 should decrease or increase likelihood of selection; values like -100 or 100 should result in a ban or exclusive selection of the relevant token.
type: object
nullable: true
user:
description: A unique identifier representing your end-user, which can help Azure OpenAI to monitor and detect abuse.
type: string
example: user-1234
nullable: false
createChatCompletionRequest:
type: object
allOf:
- $ref: '#/components/schemas/chatCompletionsRequestCommon'
- properties:
messages:
description: A list of messages comprising the conversation so far. [Example Python code](https://github.com/openai/openai-cookbook/blob/main/examples/How_to_format_inputs_to_ChatGPT_models.ipynb).
type: array
minItems: 1
items:
$ref: '#/components/schemas/chatCompletionRequestMessage'
data_sources:
type: array
description: |2-
The configuration entries for Azure OpenAI chat extensions that use them.
This additional specification is only compatible with Azure OpenAI.
items:
$ref: '#/components/schemas/azureChatExtensionConfiguration'
'n':
type: integer
minimum: 1
maximum: 128
default: 1
example: 1
nullable: true
description: How many chat completion choices to generate for each input message.
seed:
type: integer
minimum: -9223372036854775808
maximum: 9223372036854775807
default: 0
example: 1
nullable: true
description: If specified, our system will make a best effort to sample deterministically, such that repeated requests with the same `seed` and parameters should return the same result.Determinism is not guaranteed, and you should refer to the `system_fingerprint` response parameter to monitor changes in the backend.
logprobs:
description: Whether to return log probabilities of the output tokens or not. If true, returns the log probabilities of each output token returned in the `content` of `message`. This option is currently not available on the `gpt-4-vision-preview` model.
type: boolean
default: false
nullable: true
top_logprobs:
description: An integer between 0 and 5 specifying the number of most likely tokens to return at each token position, each with an associated log probability. `logprobs` must be set to `true` if this parameter is used.
type: integer
minimum: 0
maximum: 5
nullable: true
response_format:
type: object
description: An object specifying the format that the model must output. Used to enable JSON mode.
properties:
type:
$ref: '#/components/schemas/chatCompletionResponseFormat'
tools:
description: A list of tools the model may call. Currently, only functions are supported as a tool. Use this to provide a list of functions the model may generate JSON inputs for.
type: array
minItems: 1
items:
$ref: '#/components/schemas/chatCompletionTool'
tool_choice:
$ref: '#/components/schemas/chatCompletionToolChoiceOption'
functions:
description: Deprecated in favor of `tools`. A list of functions the model may generate JSON inputs for.
type: array
minItems: 1
maxItems: 128
items:
$ref: '#/components/schemas/chatCompletionFunction'
function_call:
description: Deprecated in favor of `tool_choice`. Controls how the model responds to function calls. "none" means the model does not call a function, and responds to the end-user. "auto" means the model can pick between an end-user or calling a function. Specifying a particular function via `{"name":\ "my_function"}` forces the model to call that function. "none" is the default when no functions are present. "auto" is the default if functions are present.
oneOf:
- type: string
enum:
- none
- auto
description: '`none` means the model will not call a function and instead generates a message. `auto` means the model can pick between generating a message or calling a function.'
- type: object
description: 'Specifying a particular function via `{"name": "my_function"}` forces the model to call that function.'
properties:
name:
type: string
description: The name of the function to call.
required:
- name
required:
- messages
chatCompletionResponseFormat:
type: string
enum:
- text
- json_object
default: text
example: json_object
nullable: true
description: Setting to `json_object` enables JSON mode. This guarantees that the message the model generates is valid JSON.
x-ms-enum:
name: ChatCompletionResponseFormat
modelAsString: true
values:
- value: text
description: Response format is a plain text string.
- value: json_object
description: Response format is a JSON object.
chatCompletionFunction:
type: object
properties:
name:
type: string
description: The name of the function to be called. Must be a-z, A-Z, 0-9, or contain underscores and dashes, with a maximum length of 64.
description:
type: string
description: The description of what the function does.
parameters:
$ref: '#/components/schemas/chatCompletionFunctionParameters'
required:
- name
chatCompletionFunctionParameters:
type: object
description: The parameters the functions accepts, described as a JSON Schema object. See the [guide](/docs/guides/gpt/function-calling) for examples, and the [JSON Schema reference](https://json-schema.org/understanding-json-schema/) for documentation about the format.
additionalProperties: true
chatCompletionRequestMessage:
type: object
properties:
role:
$ref: '#/components/schemas/chatCompletionRequestMessageRole'
discriminator:
propertyName: role
mapping:
system: '#/components/schemas/chatCompletionRequestMessageSystem'
user: '#/components/schemas/chatCompletionRequestMessageUser'
assistant: '#/components/schemas/chatCompletionRequestMessageAssistant'
tool: '#/components/schemas/chatCompletionRequestMessageTool'
function: '#/components/schemas/chatCompletionRequestMessageFunction'
required:
- role
chatCompletionRequestMessageRole:
type: string
enum:
- system
- user
- assistant
- tool
- function
description: The role of the messages author.
x-ms-enum:
name: ChatCompletionRequestMessageRole
modelAsString: true
values:
- value: system
description: The message author role is system.
- value: user
description: The message author role is user.
- value: assistant
description: The message author role is assistant.
- value: tool
description: The message author role is tool.
- value: function
description: Deprecated. The message author role is function.
chatCompletionRequestMessageSystem:
allOf:
- $ref: '#/components/schemas/chatCompletionRequestMessage'
- type: object
properties:
content:
type: string
description: The contents of the message.
nullable: true
required:
- content
chatCompletionRequestMessageUser:
allOf:
- $ref: '#/components/schemas/chatCompletionRequestMessage'
- type: object
properties:
content:
oneOf:
- type: string
description: The contents of the message.
- type: array
description: An array of content parts with a defined type, each can be of type `text` or `image_url` when passing in images. You can pass multiple images by adding multiple `image_url` content parts. Image input is only supported when using the `gpt-4-visual-preview` model.
minimum: 1
items:
$ref: '#/components/schemas/chatCompletionRequestMessageContentPart'
nullable: true
required:
- content
chatCompletionRequestMessageContentPart:
type: object
properties:
type: