Update app.py
Browse files
app.py
CHANGED
|
@@ -45,7 +45,7 @@ with gr.Blocks(
|
|
| 45 |
submit_button = gr.Button("Submit")
|
| 46 |
submit_button.click(generate_response, inputs=[model_dropdown, message, chatbot], outputs=[message, chatbot])
|
| 47 |
|
| 48 |
-
clear = gr.ClearButton([message, chatbot]
|
| 49 |
|
| 50 |
# Launch the Gradio app
|
| 51 |
demo.launch()
|
|
|
|
| 45 |
submit_button = gr.Button("Submit")
|
| 46 |
submit_button.click(generate_response, inputs=[model_dropdown, message, chatbot], outputs=[message, chatbot])
|
| 47 |
|
| 48 |
+
clear = gr.ClearButton([message, chatbot])
|
| 49 |
|
| 50 |
# Launch the Gradio app
|
| 51 |
demo.launch()
|