Spaces:
Runtime error
Runtime error
Commit
·
e9807fd
1
Parent(s):
fc2f10b
Update app.py
Browse files
app.py
CHANGED
@@ -22,12 +22,12 @@ examples = [
|
|
22 |
]
|
23 |
]
|
24 |
|
25 |
-
user_input = ['']
|
26 |
-
chat_history = ['']
|
27 |
|
28 |
|
29 |
with gr.Blocks() as demo:
|
30 |
-
chatbot = gr.Chatbot(
|
31 |
msg = gr.Textbox()
|
32 |
clear = gr.ClearButton([msg, chatbot])
|
33 |
|
|
|
22 |
]
|
23 |
]
|
24 |
|
25 |
+
# user_input = ['']
|
26 |
+
# chat_history = ['']
|
27 |
|
28 |
|
29 |
with gr.Blocks() as demo:
|
30 |
+
chatbot = gr.Chatbot()
|
31 |
msg = gr.Textbox()
|
32 |
clear = gr.ClearButton([msg, chatbot])
|
33 |
|