ysharma HF Staff commited on
Commit
9891a9d
·
1 Parent(s): d2eb8e2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -167,8 +167,8 @@ with gr.Blocks(fill_height=True, ) as demo:
167
 
168
  chat_input = gr.MultimodalTextbox(interactive=True, file_types=["image"], placeholder="Enter message or upload file...", show_label=False)
169
 
170
- gr.Examples(examples=[[{"text": "What is on the flower?", "files": ["./bee.png"]}],],
171
- {"text": "How to make this pastry?", "files": ["./baklava.png"]},],
172
  inputs=chat_input)
173
 
174
  #chat_input.submit(lambda: gr.MultimodalTextbox(interactive=False), None, [chat_input]).then(bot_streaming_llama3, [chat_input, chatbot1,], [chatbot1,])
 
167
 
168
  chat_input = gr.MultimodalTextbox(interactive=True, file_types=["image"], placeholder="Enter message or upload file...", show_label=False)
169
 
170
+ gr.Examples(examples=[[{"text": "What is on the flower?", "files": ["./bee.png"]}],
171
+ [{"text": "How to make this pastry?", "files": ["./baklava.png"]},],]
172
  inputs=chat_input)
173
 
174
  #chat_input.submit(lambda: gr.MultimodalTextbox(interactive=False), None, [chat_input]).then(bot_streaming_llama3, [chat_input, chatbot1,], [chatbot1,])