Update app.py
Browse files
app.py
CHANGED
@@ -125,9 +125,9 @@ with gr.Blocks(theme=gr.themes.Soft()) as demo:
|
|
125 |
|
126 |
with gr.Column(scale=4):
|
127 |
#chatbot = gr.Chatbot(label="Chat", type="messages")
|
128 |
-
chatbot = gr.Chatbot(label="Chat", type="messages", height=
|
129 |
with gr.Row():
|
130 |
-
user_input = gr.Textbox(label="User Input", placeholder="Type your question here...", lines=
|
131 |
with gr.Column():
|
132 |
submit_button = gr.Button("Send", variant="primary", scale=1)
|
133 |
clear_button = gr.Button("Clear", scale=1)
|
|
|
125 |
|
126 |
with gr.Column(scale=4):
|
127 |
#chatbot = gr.Chatbot(label="Chat", type="messages")
|
128 |
+
chatbot = gr.Chatbot(label="Chat", type="messages", height=520)
|
129 |
with gr.Row():
|
130 |
+
user_input = gr.Textbox(label="User Input", placeholder="Type your question here...", lines=4, scale=8)
|
131 |
with gr.Column():
|
132 |
submit_button = gr.Button("Send", variant="primary", scale=1)
|
133 |
clear_button = gr.Button("Clear", scale=1)
|