From 71e44ce738feeaa8e0a2485a8d434995c860e4b7 Mon Sep 17 00:00:00 2001 From: olederle Date: Fri, 15 Mar 2024 14:43:43 +0100 Subject: [PATCH] fix: wrong default api_version Should be dashes instead of underscores. see: https://learn.microsoft.com/en-us/azure/ai-services/openai/reference --- settings.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/settings.yaml b/settings.yaml index 375d2b12..dab3f5cb 100644 --- a/settings.yaml +++ b/settings.yaml @@ -88,6 +88,6 @@ azopenai: azure_endpoint: ${AZ_OPENAI_ENDPOINT:} embedding_deployment_name: ${AZ_OPENAI_EMBEDDING_DEPLOYMENT_NAME:} llm_deployment_name: ${AZ_OPENAI_LLM_DEPLOYMENT_NAME:} - api_version: 2023_05_15 + api_version: "2023-05-15" embedding_model: text-embedding-ada-002 llm_model: gpt-35-turbo