Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -105,7 +105,8 @@ with chat_interface:
|
|
105 |
with gr.Row():
|
106 |
send_button = gr.Button("Send")
|
107 |
with gr.Row():
|
108 |
-
with gr.
|
|
|
109 |
chatbot_output = gr.Chatbot(label="Chat History")
|
110 |
|
111 |
# Add functionality to handle interactions
|
|
|
105 |
with gr.Row():
|
106 |
send_button = gr.Button("Send")
|
107 |
with gr.Row():
|
108 |
+
with gr.Row() as chat_container: # or gr.Column(), depending on layout preference
|
109 |
+
|
110 |
chatbot_output = gr.Chatbot(label="Chat History")
|
111 |
|
112 |
# Add functionality to handle interactions
|