fix: typo
Browse files
app.py
CHANGED
@@ -29,7 +29,7 @@ def generate_response(user_input):
|
|
29 |
return completion.choices[0].message.content
|
30 |
|
31 |
# 建立 Gradio 聊天介面
|
32 |
-
demo = gr.
|
33 |
fn=generate_response,
|
34 |
title="我的 Groq Chatbot",
|
35 |
description="與 AI 聊天吧!"
|
|
|
29 |
return completion.choices[0].message.content
|
30 |
|
31 |
# 建立 Gradio 聊天介面
|
32 |
+
demo = gr.Chatbot(
|
33 |
fn=generate_response,
|
34 |
title="我的 Groq Chatbot",
|
35 |
description="與 AI 聊天吧!"
|