Update app.py
Browse files
app.py
CHANGED
|
@@ -161,9 +161,9 @@ with gr.Blocks(theme=gr.themes.Soft()) as demo:
|
|
| 161 |
|
| 162 |
with gr.Column(scale=4):
|
| 163 |
#chatbot = gr.Chatbot(label="Chat", type="messages")
|
| 164 |
-
chatbot = gr.Chatbot(label="Chat", type="messages", height=
|
| 165 |
with gr.Row():
|
| 166 |
-
user_input = gr.Textbox(label="User Input", placeholder="Type your question here...", lines=
|
| 167 |
with gr.Column():
|
| 168 |
submit_button = gr.Button("Send", variant="primary", scale=1)
|
| 169 |
stop_button = gr.Button("⏹ Stop", variant="secondary", scale=1)
|
|
|
|
| 161 |
|
| 162 |
with gr.Column(scale=4):
|
| 163 |
#chatbot = gr.Chatbot(label="Chat", type="messages")
|
| 164 |
+
chatbot = gr.Chatbot(label="Chat", type="messages", height=500)
|
| 165 |
with gr.Row():
|
| 166 |
+
user_input = gr.Textbox(label="User Input", placeholder="Type your question here...", lines=4, scale=8)
|
| 167 |
with gr.Column():
|
| 168 |
submit_button = gr.Button("Send", variant="primary", scale=1)
|
| 169 |
stop_button = gr.Button("⏹ Stop", variant="secondary", scale=1)
|