Spaces:
Runtime error
Runtime error
Update main.py
Browse files
main.py
CHANGED
@@ -77,8 +77,9 @@ with gr.Blocks(theme=gr.themes.Soft()) as demo:
|
|
77 |
# interactive chat
|
78 |
chatbot = gr.Chatbot()
|
79 |
msg = gr.Textbox(label="Query")
|
80 |
-
|
81 |
-
|
|
|
82 |
|
83 |
# actions
|
84 |
def reset_all():
|
|
|
77 |
# interactive chat
|
78 |
chatbot = gr.Chatbot()
|
79 |
msg = gr.Textbox(label="Query")
|
80 |
+
with gr.Row():
|
81 |
+
msg_submitbtn = gr.Button("Submit")
|
82 |
+
clear = gr.Button("Clear")
|
83 |
|
84 |
# actions
|
85 |
def reset_all():
|