File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -127,7 +127,7 @@ async def run_until_final_call(
127127
128128 chat_completion : ChatCompletion = await self .openai_client .chat .completions .create (
129129 messages = query_messages , # type: ignore
130- # Azure Open AI takes the deployment name as the model name
130+ # Azure OpenAI takes the deployment name as the model name
131131 model = self .chatgpt_deployment if self .chatgpt_deployment else self .chatgpt_model ,
132132 temperature = 0.0 , # Minimize creativity for search query generation
133133 max_tokens = 100 , # Setting too low risks malformed JSON, setting too high may affect performance
@@ -215,7 +215,7 @@ async def run_until_final_call(
215215 }
216216
217217 chat_coroutine = self .openai_client .chat .completions .create (
218- # Azure Open AI takes the deployment name as the model name
218+ # Azure OpenAI takes the deployment name as the model name
219219 model = self .chatgpt_deployment if self .chatgpt_deployment else self .chatgpt_model ,
220220 messages = messages ,
221221 temperature = overrides .get ("temperature" , 0.3 ),
You can’t perform that action at this time.
0 commit comments