Medvira commited on
Commit
c4b81c5
·
verified ·
1 Parent(s): 1bd07b4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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
- hat_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
 
 
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