Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -84,9 +84,9 @@ with gr.Blocks(css=CSS) as demo:
|
|
84 |
with gr.Row():
|
85 |
with gr.Column():
|
86 |
#chatbot = gr.Chatbot().style(height=500)
|
87 |
-
chatbot1 = gr.Chatbot(elem_id="chatbot1")
|
88 |
with gr.Column():
|
89 |
-
chatbot2 = gr.Chatbot(elem_id="chatbot2")
|
90 |
with gr.Row():
|
91 |
message = gr.Textbox(
|
92 |
label="What do you want to chat about?",
|
|
|
84 |
with gr.Row():
|
85 |
with gr.Column():
|
86 |
#chatbot = gr.Chatbot().style(height=500)
|
87 |
+
chatbot1 = gr.Chatbot(label="Chatbot1", elem_id="chatbot1")
|
88 |
with gr.Column():
|
89 |
+
chatbot2 = gr.Chatbot(label="Chatbot2", elem_id="chatbot2")
|
90 |
with gr.Row():
|
91 |
message = gr.Textbox(
|
92 |
label="What do you want to chat about?",
|