Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -28,7 +28,7 @@ with gr.Blocks(css=css, fill_height=True) as demo:
|
|
| 28 |
height=700,
|
| 29 |
)
|
| 30 |
|
| 31 |
-
chat_input = gr.MultimodalTextbox(interactive=True, file_types=["
|
| 32 |
|
| 33 |
chat_input.submit(bot_response, [chatbot, chat_input], [chatbot,])
|
| 34 |
|
|
|
|
| 28 |
height=700,
|
| 29 |
)
|
| 30 |
|
| 31 |
+
chat_input = gr.MultimodalTextbox(interactive=True, file_types=["file"], placeholder="Enter message or upload file...", show_label=False)
|
| 32 |
|
| 33 |
chat_input.submit(bot_response, [chatbot, chat_input], [chatbot,])
|
| 34 |
|