You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Your input file must be formatted as a [JSONL file](/docs/api-reference/batch/requestInput), and must be uploaded with the purpose `batch`.
6589
6656
endpoint:
6590
6657
type: string
6591
-
enum: ["/v1/chat/completions"]
6592
-
description: The endpoint to be used for all requests in the batch. Currently only `/v1/chat/completions` is supported.
6658
+
enum: ["/v1/chat/completions", "/v1/embeddings"]
6659
+
description: The endpoint to be used for all requests in the batch. Currently `/v1/chat/completions` and `/v1/embeddings` are supported.
6593
6660
completion_window:
6594
6661
type: string
6595
6662
enum: ["24h"]
@@ -9301,6 +9368,10 @@ components:
9301
9368
seed:
9302
9369
type: integer
9303
9370
description: The seed used for the fine-tuning job.
9371
+
estimated_finish:
9372
+
type: integer
9373
+
nullable: true
9374
+
description: The Unix timestamp (in seconds) for when the fine-tuning job is estimated to finish. The value will be null if the fine-tuning job is not running.
9304
9375
required:
9305
9376
- created_at
9306
9377
- error
@@ -12715,7 +12786,7 @@ components:
12715
12786
description: The HTTP method to be used for the request. Currently only `POST` is supported.
12716
12787
url:
12717
12788
type: string
12718
-
description: The OpenAI API relative URL to be used for the request. Currently only `/v1/chat/completions` is supported.
12789
+
description: The OpenAI API relative URL to be used for the request. Currently `/v1/chat/completions` and `/v1/embeddings` are supported.
12719
12790
x-oaiMeta:
12720
12791
name: The request input object
12721
12792
example: |
@@ -12909,6 +12980,8 @@ x-oaiMeta:
12909
12980
title: Batch
12910
12981
description: |
12911
12982
Create large batches of API requests for asynchronous processing. The Batch API returns completions within 24 hours for a 50% discount.
0 commit comments