From a289b4f9d6f52f641e21763bb52774770fda2294 Mon Sep 17 00:00:00 2001 From: Hiroshi Yoshioka <40815708+hyoshioka0128@users.noreply.github.com> Date: Sun, 23 Mar 2025 00:58:09 +0900 Subject: [PATCH] =?UTF-8?q?Update=20chat.py=20(Typo=20"Azure=20Open=20AI"?= =?UTF-8?q?=E2=86=92"Azure=20OpenAI")?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit https://github.com/Azure-Samples/openai-chat-app-quickstart/blob/main/src/quartapp/chat.py #PingMSFTDocs --- src/quartapp/chat.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/quartapp/chat.py b/src/quartapp/chat.py index 9178c27f..29bd5423 100644 --- a/src/quartapp/chat.py +++ b/src/quartapp/chat.py @@ -79,7 +79,7 @@ async def response_stream(): ] + request_messages chat_coroutine = bp.openai_client.chat.completions.create( - # Azure Open AI takes the deployment name as the model name + # Azure OpenAI takes the deployment name as the model name model=bp.openai_model, messages=all_messages, stream=True,