Spaces:
Runtime error
Runtime error
Commit
·
e95887c
1
Parent(s):
f2b22bd
Update app.py
Browse files
app.py
CHANGED
@@ -26,10 +26,10 @@ examples = [
|
|
26 |
history = ['']
|
27 |
|
28 |
|
29 |
-
with gr.Blocks() as demo:
|
30 |
chatbot = gr.Chatbot()
|
31 |
msg = gr.Textbox()
|
32 |
-
btn = gr.Button("Submit"
|
33 |
clear = gr.ClearButton([msg, chatbot])
|
34 |
|
35 |
|
|
|
26 |
history = ['']
|
27 |
|
28 |
|
29 |
+
with gr.Blocks(theme=gr.themes.Soft()) as demo:
|
30 |
chatbot = gr.Chatbot()
|
31 |
msg = gr.Textbox()
|
32 |
+
btn = gr.Button("Submit")
|
33 |
clear = gr.ClearButton([msg, chatbot])
|
34 |
|
35 |
|