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(
127
127
128
128
chat_completion : ChatCompletion = await self .openai_client .chat .completions .create (
129
129
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
131
131
model = self .chatgpt_deployment if self .chatgpt_deployment else self .chatgpt_model ,
132
132
temperature = 0.0 , # Minimize creativity for search query generation
133
133
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(
215
215
}
216
216
217
217
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
219
219
model = self .chatgpt_deployment if self .chatgpt_deployment else self .chatgpt_model ,
220
220
messages = messages ,
221
221
temperature = overrides .get ("temperature" , 0.3 ),
You can’t perform that action at this time.
0 commit comments