From e19893a5094bfdef82184d83f0601cd313bb4272 Mon Sep 17 00:00:00 2001 From: ian_Cin Date: Mon, 15 Apr 2024 23:16:32 +0700 Subject: [PATCH] fix typo (#35) --- libs/kotaemon/kotaemon/llms/chats/openai.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/kotaemon/kotaemon/llms/chats/openai.py b/libs/kotaemon/kotaemon/llms/chats/openai.py index 6dd4a00..e0a3a85 100644 --- a/libs/kotaemon/kotaemon/llms/chats/openai.py +++ b/libs/kotaemon/kotaemon/llms/chats/openai.py @@ -300,7 +300,7 @@ class AzureChatOpenAI(BaseChatOpenAI): "azure_deployment, and api_version parameters are used to construct " "the full URL for the Azure OpenAI model." ), - require=True, + required=True, ) azure_deployment: str = Param(help="Azure deployment name", required=True) api_version: str = Param(help="Azure model version", required=True)