Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -478,7 +478,7 @@ examples=[["What are the biggest news stories today?", None, None, None, None, N
|
|
478 |
["What are some unique features of Rust that make it stand out compared to other systems programming languages like C++?", None, None, None, None, None,],
|
479 |
]
|
480 |
|
481 |
-
with gr.Blocks(
|
482 |
chatbot=gr.Chatbot(show_label=False, show_share_button=False, show_copy_button=True, likeable=True, layout="panel"),
|
483 |
msg = gr.Textbox()
|
484 |
clear = gr.ClearButton([msg, chatbot])
|
|
|
478 |
["What are some unique features of Rust that make it stand out compared to other systems programming languages like C++?", None, None, None, None, None,],
|
479 |
]
|
480 |
|
481 |
+
with gr.Blocks() as iface:
|
482 |
chatbot=gr.Chatbot(show_label=False, show_share_button=False, show_copy_button=True, likeable=True, layout="panel"),
|
483 |
msg = gr.Textbox()
|
484 |
clear = gr.ClearButton([msg, chatbot])
|