Update app.py
Browse files
app.py
CHANGED
@@ -84,7 +84,7 @@ with gr.Blocks() as demo:
|
|
84 |
avatar_images=(os.path.join(os.getcwd(), 'user.png'), os.path.join(os.getcwd(), 'ai.png')))
|
85 |
chat_input = gr.MultimodalTextbox(interactive=True, placeholder="Enter message or upload file...", show_label=False)
|
86 |
|
87 |
-
|
88 |
bot_msg = chat_msg.then(bot, chatbot, chatbot, api_name="bot_response")
|
89 |
bot_msg.then(lambda: gr.MultimodalTextbox(interactive=True), None, [chat_input])
|
90 |
|
|
|
84 |
avatar_images=(os.path.join(os.getcwd(), 'user.png'), os.path.join(os.getcwd(), 'ai.png')))
|
85 |
chat_input = gr.MultimodalTextbox(interactive=True, placeholder="Enter message or upload file...", show_label=False)
|
86 |
|
87 |
+
chat_msg = chat_input.submit(add_message, [chatbot, chat_input], [chatbot, chat_input])
|
88 |
bot_msg = chat_msg.then(bot, chatbot, chatbot, api_name="bot_response")
|
89 |
bot_msg.then(lambda: gr.MultimodalTextbox(interactive=True), None, [chat_input])
|
90 |
|