Spaces:
Runtime error
Runtime error
Commit
Β·
4911842
1
Parent(s):
3a8b68a
Minor fix
Browse files
app.py
CHANGED
|
@@ -73,6 +73,6 @@ with gr.Blocks(theme=gr.themes.Soft()) as demo:
|
|
| 73 |
with gr.Column():
|
| 74 |
chat_out = gr.Textbox(label="Response", type="text")
|
| 75 |
|
| 76 |
-
|
| 77 |
|
| 78 |
demo.launch()
|
|
|
|
| 73 |
with gr.Column():
|
| 74 |
chat_out = gr.Textbox(label="Response", type="text")
|
| 75 |
|
| 76 |
+
chat_submit_btn.click(inference, inputs=[text], outputs=[chat_out])
|
| 77 |
|
| 78 |
demo.launch()
|