From c11d94636d0a99b0495e7b8ef1376749c3b97172 Mon Sep 17 00:00:00 2001 From: JackYu Date: Thu, 21 Dec 2023 16:08:47 +0800 Subject: [PATCH] Fix missing comma in README code example The previous version of the README contained a code example with a missing comma, which could lead to syntax errors. This commit corrects that issue by adding the missing comma. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f89d0bdb28..f644cdeefe 100644 --- a/README.md +++ b/README.md @@ -475,7 +475,7 @@ from openai import AzureOpenAI # gets the API Key from environment variable AZURE_OPENAI_API_KEY client = AzureOpenAI( # https://learn.microsoft.com/en-us/azure/ai-services/openai/reference#rest-api-versioning - api_version="2023-07-01-preview" + api_version="2023-07-01-preview", # https://learn.microsoft.com/en-us/azure/cognitive-services/openai/how-to/create-resource?pivots=web-portal#create-a-resource azure_endpoint="https://example-endpoint.openai.azure.com", )