Commit ·
1c579df
1
Parent(s): 95a5be8
Update app.py
Browse files
app.py
CHANGED
|
@@ -71,7 +71,7 @@ with gr.Blocks(theme=theme) as demo:
|
|
| 71 |
|
| 72 |
with gr.Tab("手动键入"):
|
| 73 |
chatbot = gr.Chatbot()
|
| 74 |
-
msg = gr.Textbox()
|
| 75 |
clear = gr.ClearButton([msg, chatbot])
|
| 76 |
def respond(message, chat_history):
|
| 77 |
result = working_func(message)
|
|
|
|
| 71 |
|
| 72 |
with gr.Tab("手动键入"):
|
| 73 |
chatbot = gr.Chatbot()
|
| 74 |
+
msg = gr.Textbox(label="请输入症状或问题")
|
| 75 |
clear = gr.ClearButton([msg, chatbot])
|
| 76 |
def respond(message, chat_history):
|
| 77 |
result = working_func(message)
|