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
Copy file name to clipboardExpand all lines: articles/ai-services/openai/how-to/batch.md
+3-2Lines changed: 3 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -77,9 +77,10 @@ Refer to the [models page](../concepts/models.md) for the most up-to-date inform
77
77
|| API Version |
78
78
|---|---|
79
79
|**Latest GA API release:**|`2024-10-21`|
80
-
|**Latest Preview API release:**|`2025-01-01-preview`|
80
+
|**Latest Preview API release:**|`2025-03-01-preview`|
81
81
82
-
Support first added in: `2024-07-01-preview`
82
+
> [!NOTE]
83
+
> While Global Batch supports older API versions, some models require newer preview API versions. For example, `o3-mini` is not supported with `2024-10-21` since it was released after this date. To access the newer models with global batch use the latest preview API version.
Once your file has uploaded successfully you can submit the file for batch processing.
129
129
130
130
```http
131
-
curl -X POST https://YOUR_RESOURCE_NAME.openai.azure.com/openai/batches?api-version=2024-10-21 \
131
+
curl -X POST https://YOUR_RESOURCE_NAME.openai.azure.com/openai/batches?api-version=2025-03-01-preview \
132
132
-H "api-key: $AZURE_OPENAI_API_KEY" \
133
133
-H "Content-Type: application/json" \
134
134
-d '{
@@ -177,7 +177,7 @@ curl -X POST https://YOUR_RESOURCE_NAME.openai.azure.com/openai/batches?api-vers
177
177
Once you have created batch job successfully you can monitor its progress either in the Studio or programatically. When checking batch job progress we recommend waiting at least 60 seconds in between each status call.
Cancels an in-progress batch. The batch will be in status `cancelling` for up to 10 minutes, before changing to `cancelled`, where it will have partial results (if any) available in the output file.
241
241
242
242
```http
243
-
curl -X POST https://YOUR_RESOURCE_NAME.openai.azure.com/openai/batches/{batch_id}/cancel?api-version=2024-10-21 \
243
+
curl -X POST https://YOUR_RESOURCE_NAME.openai.azure.com/openai/batches/{batch_id}/cancel?api-version=2025-03-01-preview \
244
244
-H "api-key: $AZURE_OPENAI_API_KEY"
245
245
```
246
246
@@ -249,7 +249,7 @@ curl -X POST https://YOUR_RESOURCE_NAME.openai.azure.com/openai/batches/{batch_i
249
249
List existing batch jobs for a given Azure OpenAI resource.
0 commit comments