Spaces:
Sleeping
Sleeping
Tim Seufert commited on
Commit ·
e068441
1
Parent(s): 08bac85
removed the image processing button
Browse files
app.py
CHANGED
|
@@ -55,7 +55,7 @@ with gr.Blocks() as demo:
|
|
| 55 |
chatbot = gr.Chatbot()
|
| 56 |
msg = gr.Textbox()
|
| 57 |
#img = gr.Image(type="filepath")
|
| 58 |
-
clear = gr.ClearButton([msg,
|
| 59 |
|
| 60 |
# Set up message submission
|
| 61 |
msg.submit(respond, [msg, img, chatbot], [msg, chatbot])
|
|
|
|
| 55 |
chatbot = gr.Chatbot()
|
| 56 |
msg = gr.Textbox()
|
| 57 |
#img = gr.Image(type="filepath")
|
| 58 |
+
clear = gr.ClearButton([msg, chatbot])
|
| 59 |
|
| 60 |
# Set up message submission
|
| 61 |
msg.submit(respond, [msg, img, chatbot], [msg, chatbot])
|