forked from Azure/azure-rest-api-specs
-
Notifications
You must be signed in to change notification settings - Fork 8
/
azureopenai.json
1591 lines (1591 loc) · 49.8 KB
/
azureopenai.json
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
{
"swagger": "2.0",
"info": {
"title": "Azure OpenAI API version 2024-02-01",
"description": "APIs for fine-tuning and managing deployments of OpenAI models.",
"version": "2024-02-01"
},
"paths": {
"/files": {
"get": {
"tags": [
"Files:"
],
"summary": "Gets a list of all files owned by the Azure OpenAI resource.\r\nThese include user uploaded content like files with purpose \"fine-tune\" for training or validation of fine-tunes models\r\nas well as files that are generated by the service such as \"fine-tune-results\" which contains various metrics for the corresponding fine-tune job.",
"operationId": "Files_List",
"produces": [
"application/json"
],
"parameters": [
{
"in": "query",
"name": "purpose",
"description": "Only return files with the given purpose.",
"type": "string",
"enum": [
"fine-tune",
"fine-tune-results"
],
"x-ms-enum": {
"name": "Purpose",
"modelAsString": true,
"values": [
{
"value": "fine-tune",
"description": "This file contains training data for a fine tune job."
},
{
"value": "fine-tune-results",
"description": "This file contains the results of a fine tune job."
}
]
}
},
{
"$ref": "#/parameters/apiVersionQueryParameter"
}
],
"responses": {
"200": {
"description": "Success",
"schema": {
"$ref": "#/definitions/FileList"
}
},
"default": {
"description": "An error occurred.",
"schema": {
"$ref": "#/definitions/ErrorResponse"
}
}
},
"x-ms-examples": {
"Getting all files owned by this account.": {
"$ref": "./examples/get_files.json"
}
}
},
"post": {
"tags": [
"Files:"
],
"summary": "Creates a new file entity by uploading data from a local machine. Uploaded files can, for example, be used for training or evaluating fine-tuned models.",
"operationId": "Files_Upload",
"consumes": [
"multipart/form-data"
],
"produces": [
"application/json"
],
"parameters": [
{
"$ref": "#/parameters/apiVersionQueryParameter"
},
{
"in": "formData",
"name": "purpose",
"description": "The intended purpose of the uploaded documents. Use \"fine-tune\" for fine-tuning. This allows us to validate the format of the uploaded file.",
"required": true,
"type": "string",
"enum": [
"fine-tune",
"fine-tune-results"
],
"x-ms-enum": {
"name": "Purpose",
"modelAsString": true,
"values": [
{
"value": "fine-tune",
"description": "This file contains training data for a fine tune job."
},
{
"value": "fine-tune-results",
"description": "This file contains the results of a fine tune job."
}
]
}
},
{
"in": "formData",
"name": "file",
"description": "Gets or sets the file to upload into Azure OpenAI.",
"required": true,
"type": "file"
}
],
"responses": {
"201": {
"description": "The file has been successfully created.",
"schema": {
"$ref": "#/definitions/File"
},
"headers": {
"Location": {
"description": "The location of the newly created item.",
"type": "string",
"format": "url"
}
}
},
"default": {
"description": "An error occurred.",
"schema": {
"$ref": "#/definitions/ErrorResponse"
}
}
},
"x-ms-examples": {
"Upload a file.": {
"$ref": "./examples/upload_file.json"
}
}
}
},
"/files/{file-id}": {
"get": {
"tags": [
"Files:"
],
"summary": "Gets details for a single file specified by the given file-id including status, size, purpose, etc.",
"operationId": "Files_Get",
"produces": [
"application/json"
],
"parameters": [
{
"in": "path",
"name": "file-id",
"description": "The identifier of the file.",
"required": true,
"type": "string"
},
{
"$ref": "#/parameters/apiVersionQueryParameter"
}
],
"responses": {
"200": {
"description": "Success",
"schema": {
"$ref": "#/definitions/File"
}
},
"default": {
"description": "An error occurred.",
"schema": {
"$ref": "#/definitions/ErrorResponse"
}
}
},
"x-ms-examples": {
"Getting a file.": {
"$ref": "./examples/get_file.json"
}
}
},
"delete": {
"tags": [
"Files:"
],
"summary": "Deletes the file with the given file-id.\r\nDeletion is also allowed if a file was used, e.g., as training file in a fine-tune job.",
"operationId": "Files_Delete",
"produces": [
"application/json"
],
"parameters": [
{
"in": "path",
"name": "file-id",
"description": "The identifier of the file.",
"required": true,
"type": "string"
},
{
"$ref": "#/parameters/apiVersionQueryParameter"
}
],
"responses": {
"204": {
"description": "The file was successfully deleted."
},
"default": {
"description": "An error occurred.",
"schema": {
"$ref": "#/definitions/ErrorResponse"
}
}
},
"x-ms-examples": {
"Deleting a file.": {
"$ref": "./examples/delete_file.json"
}
}
}
},
"/files/{file-id}/content": {
"get": {
"tags": [
"Files:"
],
"summary": "Gets the content of the file specified by the given file-id.\r\nFiles can be user uploaded content or generated by the service like result metrics of a fine-tune job.",
"operationId": "Files_GetContent",
"produces": [
"application/octet-stream",
"application/json"
],
"parameters": [
{
"in": "path",
"name": "file-id",
"description": "The identifier of the file.",
"required": true,
"type": "string"
},
{
"$ref": "#/parameters/apiVersionQueryParameter"
}
],
"responses": {
"200": {
"description": "Success",
"schema": {
"type": "file"
}
},
"default": {
"description": "An error occurred.",
"schema": {
"$ref": "#/definitions/ErrorResponse"
}
}
},
"x-ms-examples": {
"Getting the file content.": {
"$ref": "./examples/get_file_content.json"
}
}
}
},
"/files/import": {
"post": {
"tags": [
"Files:"
],
"summary": "Creates a new file entity by importing data from a provided url. Uploaded files can, for example, be used for training or evaluating fine-tuned models.",
"operationId": "Files_Import",
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"parameters": [
{
"$ref": "#/parameters/apiVersionQueryParameter"
},
{
"in": "body",
"name": "fileImport",
"description": "The definition of the file to create including its purpose, the file name and the url of the file location.",
"required": true,
"schema": {
"$ref": "#/definitions/FileImport"
}
}
],
"responses": {
"201": {
"description": "The file has been successfully created.",
"schema": {
"$ref": "#/definitions/File"
},
"headers": {
"Location": {
"description": "The location of the newly created item.",
"type": "string",
"format": "url"
}
}
},
"default": {
"description": "An error occurred.",
"schema": {
"$ref": "#/definitions/ErrorResponse"
}
}
},
"x-ms-examples": {
"Importing a file with a blob url as source.": {
"$ref": "./examples/import_file.json"
}
}
}
},
"/fine_tuning/jobs": {
"get": {
"tags": [
"Fine-tuning:"
],
"summary": "Gets a list of all fine-tune jobs owned by the Azure OpenAI resource.\r\nThe details that are returned for each fine-tune job contain besides its identifier\r\nthe base model, training and validation files, hyper parameters, time stamps, status and events.\r\nEvents are created when the job status changes, e.g. running or complete, and when results are uploaded.",
"operationId": "FineTuning_List",
"produces": [
"application/json"
],
"parameters": [
{
"in": "query",
"name": "after",
"description": "Identifier for the last event from the previous pagination request.",
"type": "string"
},
{
"in": "query",
"name": "limit",
"description": "Number of events to retrieve. Defaults to 20.",
"type": "integer",
"format": "int32",
"default": 20
},
{
"$ref": "#/parameters/apiVersionQueryParameter"
}
],
"responses": {
"200": {
"description": "Success",
"schema": {
"$ref": "#/definitions/FineTuningJobList"
}
},
"default": {
"description": "An error occurred.",
"schema": {
"$ref": "#/definitions/ErrorResponse"
}
}
},
"x-ms-examples": {
"Getting all fine tune jobs owned by this account.": {
"$ref": "./examples/get_finetuning_jobs.json"
}
}
},
"post": {
"tags": [
"Fine-tuning:"
],
"summary": "Creates a job that fine-tunes a specified model from a given training file.\r\nResponse includes details of the enqueued job including job status and hyper parameters.\r\nThe name of the fine-tuned model is added to the response once complete.",
"operationId": "FineTuning_Create",
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"parameters": [
{
"$ref": "#/parameters/apiVersionQueryParameter"
},
{
"in": "body",
"name": "fineTuningJob",
"description": "The specification of the fine-tuned model to create.\r\nRequired parameters are the base model and the training file to use.\r\nOptionally a validation file can be specified to compute validation metrics during training.\r\nHyper parameters will be set to default values or can by optionally specified.\r\nThese include batch size, learning rate multiplier, number of epochs and others.",
"required": true,
"schema": {
"$ref": "#/definitions/FineTuningJobCreation"
}
}
],
"responses": {
"201": {
"description": "The fine tune has been successfully created.",
"schema": {
"$ref": "#/definitions/FineTuningJob"
},
"headers": {
"Location": {
"description": "The location of the newly created item.",
"type": "string",
"format": "url"
}
}
},
"default": {
"description": "An error occurred.",
"schema": {
"$ref": "#/definitions/ErrorResponse"
}
}
},
"x-ms-examples": {
"Creating a fine tune job.": {
"$ref": "./examples/post_finetuning_job.json"
}
}
}
},
"/fine_tuning/jobs/{fine-tuning-job-id}": {
"get": {
"tags": [
"Fine-tuning:"
],
"summary": "Gets details for a single fine-tune job specified by the given fine-tune-id.\r\nThe details contain the base model, training and validation files, hyper parameters, time stamps, status and events.\r\nEvents are created when the job status changes, e.g. running or complete, and when results are uploaded.",
"operationId": "FineTuning_Get",
"produces": [
"application/json"
],
"parameters": [
{
"in": "path",
"name": "fine-tuning-job-id",
"description": "The identifier of the fine-tune job.",
"required": true,
"type": "string"
},
{
"$ref": "#/parameters/apiVersionQueryParameter"
}
],
"responses": {
"200": {
"description": "Success",
"schema": {
"$ref": "#/definitions/FineTuningJob"
}
},
"default": {
"description": "An error occurred.",
"schema": {
"$ref": "#/definitions/ErrorResponse"
}
}
},
"x-ms-examples": {
"Getting a fine tune job.": {
"$ref": "./examples/get_finetuning_job.json"
}
}
},
"delete": {
"tags": [
"Fine-tuning:"
],
"summary": "Deletes the fine-tune job specified by the given fine-tune-id.",
"operationId": "FineTuning_Delete",
"produces": [
"application/json"
],
"parameters": [
{
"in": "path",
"name": "fine-tuning-job-id",
"description": "The identifier of the fine-tune job.",
"required": true,
"type": "string"
},
{
"$ref": "#/parameters/apiVersionQueryParameter"
}
],
"responses": {
"204": {
"description": "The fine tune was successfully deleted."
},
"default": {
"description": "An error occurred.",
"schema": {
"$ref": "#/definitions/ErrorResponse"
}
}
},
"x-ms-examples": {
"Deleting a fine tune job.": {
"$ref": "./examples/delete_finetuning_job.json"
}
}
}
},
"/fine_tuning/jobs/{fine-tuning-job-id}/events": {
"get": {
"tags": [
"Fine-tuning:"
],
"summary": "Gets the events for the fine-tune job specified by the given fine-tune-id.\r\nEvents are created when the job status changes, e.g. running or complete, and when results are uploaded.",
"operationId": "FineTuning_GetEvents",
"produces": [
"application/json"
],
"parameters": [
{
"in": "path",
"name": "fine-tuning-job-id",
"description": "The identifier of the fine-tune job.",
"required": true,
"type": "string"
},
{
"in": "query",
"name": "after",
"description": "Identifier for the last event from the previous pagination request.",
"type": "string"
},
{
"in": "query",
"name": "limit",
"description": "Number of events to retrieve. Defaults to 20.",
"type": "integer",
"format": "int32",
"default": 20
},
{
"$ref": "#/parameters/apiVersionQueryParameter"
}
],
"responses": {
"200": {
"description": "Success",
"schema": {
"$ref": "#/definitions/FineTuningJobEventList"
}
},
"default": {
"description": "An error occurred.",
"schema": {
"$ref": "#/definitions/ErrorResponse"
}
}
},
"x-ms-examples": {
"Getting events of a fine tune job.": {
"$ref": "./examples/get_finetuning_job_events.json"
}
}
}
},
"/fine_tuning/jobs/{fine-tuning-job-id}/cancel": {
"post": {
"tags": [
"Fine-tuning:"
],
"summary": "Cancels the processing of the fine-tune job specified by the given fine-tune-id.",
"operationId": "FineTuning_Cancel",
"produces": [
"application/json"
],
"parameters": [
{
"in": "path",
"name": "fine-tuning-job-id",
"description": "The identifier of the fine-tune job.",
"required": true,
"type": "string"
},
{
"$ref": "#/parameters/apiVersionQueryParameter"
}
],
"responses": {
"200": {
"description": "The fine tune has been successfully canceled",
"schema": {
"$ref": "#/definitions/FineTuningJob"
}
},
"default": {
"description": "An error occurred.",
"schema": {
"$ref": "#/definitions/ErrorResponse"
}
}
},
"x-ms-examples": {
"Canceling a fine tune job.": {
"$ref": "./examples/cancel_finetuning_job.json"
}
}
}
},
"/models": {
"get": {
"tags": [
"Models:"
],
"summary": "Gets a list of all models that are accessible by the Azure OpenAI resource.\r\nThese include base models as well as all successfully completed fine-tuned models owned by the Azure OpenAI resource.",
"operationId": "Models_List",
"produces": [
"application/json"
],
"parameters": [
{
"$ref": "#/parameters/apiVersionQueryParameter"
}
],
"responses": {
"200": {
"description": "Success",
"schema": {
"$ref": "#/definitions/ModelList"
}
},
"default": {
"description": "An error occurred.",
"schema": {
"$ref": "#/definitions/ErrorResponse"
}
}
},
"x-ms-examples": {
"Getting all models owned by account.": {
"$ref": "./examples/get_models.json"
}
}
}
},
"/models/{model-id}": {
"get": {
"tags": [
"Models:"
],
"summary": "Gets details for the model specified by the given modelId.",
"operationId": "Models_Get",
"produces": [
"application/json"
],
"parameters": [
{
"in": "path",
"name": "model-id",
"description": "The identifier of the model.",
"required": true,
"type": "string"
},
{
"$ref": "#/parameters/apiVersionQueryParameter"
}
],
"responses": {
"200": {
"description": "Success",
"schema": {
"$ref": "#/definitions/Model"
}
},
"default": {
"description": "An error occurred.",
"schema": {
"$ref": "#/definitions/ErrorResponse"
}
}
},
"x-ms-examples": {
"Getting a base model.": {
"$ref": "./examples/get_model_base.json"
},
"Getting a fine-tuned model.": {
"$ref": "./examples/get_model_finetune.json"
}
}
}
}
},
"definitions": {
"Capabilities": {
"title": "Capabilities",
"description": "The capabilities of a base or fine tune model.",
"required": [
"chat_completion",
"completion",
"embeddings",
"fine_tune",
"inference"
],
"type": "object",
"properties": {
"fine_tune": {
"description": "A value indicating whether a model can be used for fine tuning.",
"type": "boolean"
},
"inference": {
"description": "A value indicating whether a model can be deployed.",
"type": "boolean"
},
"completion": {
"description": "A value indicating whether a model supports completion.",
"type": "boolean"
},
"chat_completion": {
"description": "A value indicating whether a model supports chat completion.",
"type": "boolean"
},
"embeddings": {
"description": "A value indicating whether a model supports embeddings.",
"type": "boolean"
}
}
},
"Deprecation": {
"title": "Deprecation",
"description": "Defines the dates of deprecation for the different use cases of a model.\r\nUsually base models support 1 year of fine tuning after creation. Inference is typically supported 2 years after creation of base or\r\nfine tuned models. The exact dates are specified in the properties.",
"required": [
"inference"
],
"type": "object",
"properties": {
"fine_tune": {
"format": "unixtime",
"description": "The end date of fine tune support of this model. Will be `null` for fine tune models.",
"type": "integer"
},
"inference": {
"format": "unixtime",
"description": "The end date of inference support of this model.",
"type": "integer"
}
}
},
"Error": {
"title": "Error",
"description": "Error content as defined in the Microsoft REST guidelines\r\n(https://github.com/microsoft/api-guidelines/blob/vNext/Guidelines.md#7102-error-condition-responses).",
"required": [
"code",
"message"
],
"type": "object",
"properties": {
"code": {
"$ref": "#/definitions/ErrorCode"
},
"message": {
"description": "The message of this error.",
"minLength": 1,
"type": "string"
},
"target": {
"description": "The location where the error happened if available.",
"type": "string"
},
"details": {
"description": "The error details if available.",
"type": "array",
"items": {
"$ref": "#/definitions/Error"
}
},
"innererror": {
"$ref": "#/definitions/InnerError"
}
},
"readOnly": true
},
"ErrorCode": {
"title": "ErrorCode",
"description": "Error codes as defined in the Microsoft REST guidelines\r\n(https://github.com/microsoft/api-guidelines/blob/vNext/Guidelines.md#7102-error-condition-responses).",
"enum": [
"conflict",
"invalidPayload",
"forbidden",
"notFound",
"unexpectedEntityState",
"itemDoesAlreadyExist",
"serviceUnavailable",
"internalFailure",
"quotaExceeded",
"jsonlValidationFailed",
"fileImportFailed",
"tooManyRequests",
"unauthorized",
"contentFilter"
],
"type": "string",
"x-ms-enum": {
"name": "ErrorCode",
"modelAsString": true,
"values": [
{
"value": "conflict",
"description": "The requested operation conflicts with the current resource state."
},
{
"value": "invalidPayload",
"description": "The request data is invalid for this operation."
},
{
"value": "forbidden",
"description": "The operation is forbidden for the current user/api key."
},
{
"value": "notFound",
"description": "The resource is not found."
},
{
"value": "unexpectedEntityState",
"description": "The operation cannot be executed in the current resource's state."
},
{
"value": "itemDoesAlreadyExist",
"description": "The item does already exist."
},
{
"value": "serviceUnavailable",
"description": "The service is currently not available."
},
{
"value": "internalFailure",
"description": "Internal error. Please retry."
},
{
"value": "quotaExceeded",
"description": "Quota exceeded."
},
{
"value": "jsonlValidationFailed",
"description": "Validation of jsonl data failed."
},
{
"value": "fileImportFailed",
"description": "Import of file failed."
},
{
"value": "tooManyRequests",
"description": "Too many requests. Please retry later."
},
{
"value": "unauthorized",
"description": "The current user/api key is not authorized for the operation."
},
{
"value": "contentFilter",
"description": "Image generation failed as a result of our safety system."
}
]
}
},
"ErrorResponse": {
"title": "ErrorResponse",
"description": "Error response as defined in the Microsoft REST guidelines\r\n(https://github.com/microsoft/api-guidelines/blob/vNext/Guidelines.md#7102-error-condition-responses).",
"required": [
"error"
],
"type": "object",
"properties": {
"error": {
"$ref": "#/definitions/Error"
}
}
},
"EventType": {
"title": "EventType",
"description": "Defines the severity of a content filter result.",
"enum": [
"message",
"metrics"
],
"type": "string",
"x-ms-enum": {
"name": "EventType",
"modelAsString": true,
"values": [
{
"value": "message",
"description": "Event only contains human readable messages."
},
{
"value": "metrics",
"description": "Event contains metrics."
}
]
}
},
"File": {
"title": "File",
"description": "A file is a document usable for training and validation. It can also be a service generated document with result details.",
"required": [
"filename",
"purpose"
],
"type": "object",
"properties": {
"object": {
"$ref": "#/definitions/TypeDiscriminator"
},
"created_at": {
"format": "unixtime",
"description": "A timestamp when this job or item was created (in unix epochs).",
"type": "integer",
"readOnly": true
},
"id": {
"description": "The identity of this item.",
"type": "string",
"readOnly": true
},
"status": {
"$ref": "#/definitions/FileState"
},
"bytes": {
"format": "int64",
"description": "The size of this file when available (can be null). File sizes larger than 2^53-1 are not supported to ensure compatibility\r\nwith JavaScript integers.",
"type": "integer",
"readOnly": true
},
"purpose": {
"$ref": "#/definitions/Purpose"
},
"filename": {
"description": "The name of the file.",
"minLength": 1,
"type": "string"
},
"status_details": {
"description": "The error message with details in case processing of this file failed.",
"type": "string",
"readOnly": true
}
}
},
"FileImport": {
"title": "FileImport",
"description": "Defines a document to import from an external content url to be usable with Azure OpenAI.",
"required": [
"content_url",
"filename",
"purpose"
],
"type": "object",
"properties": {
"purpose": {
"$ref": "#/definitions/Purpose"
},
"filename": {
"description": "The name of the [JSON Lines](https://jsonlines.readthedocs.io/en/latest/) file to be uploaded.\r\nIf the `purpose` is set to \"fine-tune\", each line is a JSON record with \"prompt\" and \"completion\" fields representing your training examples.",
"minLength": 1,
"type": "string"
},
"content_url": {
"format": "url",
"description": "The url to download the document from (can be SAS url of a blob or any other external url accessible with a GET request).",
"type": "string"
}
}
},
"FileList": {
"title": "FileList",
"description": "Represents a list of files.",
"type": "object",
"properties": {
"object": {
"$ref": "#/definitions/TypeDiscriminator"
},
"data": {
"description": "The list of items.",
"type": "array",
"items": {
"$ref": "#/definitions/File"
}
}
}
},
"FileState": {
"title": "FileState",
"description": "The state of a file.",
"enum": [
"uploaded",
"pending",
"running",
"processed",
"error",
"deleting",
"deleted"
],