From f443807c34b67c44af10588c38024a05de8fc6e3 Mon Sep 17 00:00:00 2001 From: Sameer Kankute Date: Fri, 17 Oct 2025 17:48:32 +0530 Subject: [PATCH] fix documentation for get batch req --- docs/my-website/docs/providers/vertex_batch.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/my-website/docs/providers/vertex_batch.md b/docs/my-website/docs/providers/vertex_batch.md index 046c60f2ebdd..730f31be87dc 100644 --- a/docs/my-website/docs/providers/vertex_batch.md +++ b/docs/my-website/docs/providers/vertex_batch.md @@ -162,7 +162,7 @@ Check the status of your batch job. The batch will progress through states: `val ```python showLineNumbers title="retrieve_batch.py" retrieved_batch = oai_client.batches.retrieve( batch_id=create_batch_response.id, # Created batch id, e.g. 7814463557919047680 - extra_body={"custom_llm_provider": "vertex_ai"} + extra_query={"custom_llm_provider": "vertex_ai"} ) print(f"Batch status: {retrieved_batch.status}")