From 44df79cf52ac250b41374c3fe454d078b3a2855d Mon Sep 17 00:00:00 2001 From: Salman Faroz Date: Mon, 11 Nov 2024 22:40:59 +0530 Subject: [PATCH] Correcting AzureOpenAI initialization (#28014) --- docs/docs/integrations/llms/azure_openai.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/integrations/llms/azure_openai.ipynb b/docs/docs/integrations/llms/azure_openai.ipynb index 17a6d0605ee50..f706bb2968314 100644 --- a/docs/docs/integrations/llms/azure_openai.ipynb +++ b/docs/docs/integrations/llms/azure_openai.ipynb @@ -85,7 +85,7 @@ "```python\n", "import openai\n", "\n", - "client = AzureOpenAI(\n", + "client = openai.AzureOpenAI(\n", " api_version=\"2023-12-01-preview\",\n", ")\n", "\n",