Skip to content

Commit 1e001b6

Browse files
Merge pull request #960 from mrbullwinkle/mrb_10_22_2024_batch_bug
[Azure OpenAI] Anchor link bug
2 parents 6aef70b + 7d6d815 commit 1e001b6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/ai-services/openai/includes/batch/batch-rest.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ The following status values are possible:
230230

231231
```http
232232
curl https://YOUR_RESOURCE_NAME.openai.azure.com/openai/files/{output_file_id}/content?api-version=2024-10-01-preview \
233-
-H "api-key: $AZURE_OPENAI_API_KEY" > batch_output.jsonl
233+
-H "api-key: $AZURE_OPENAI_API_KEY"
234234
```
235235

236236
### Additional batch commands
@@ -259,7 +259,7 @@ Use the REST API to list all batch jobs with additional sorting/filtering option
259259

260260
```http
261261
curl "YOUR_RESOURCE_NAME.openai.azure.com/batches?api-version=2024-10-01-preview&$filter=created_at%20gt%201728773533%20and%20created_at%20lt%201729032733%20and%20status%20eq%20'Completed'&$orderby=created_at%20asc" \
262-
-H "api-key: $AZURE_OPENAI_API_KEY""
262+
-H "api-key: $AZURE_OPENAI_API_KEY"
263263
```
264264

265265
To avoid the error `URL rejected: Malformed input to a URL function` spaces are replaced with `%20`.

0 commit comments

Comments
 (0)