Update app.py
Browse files
app.py
CHANGED
|
@@ -140,8 +140,8 @@ with gr.Blocks(theme=gr.themes.Default()) as chat:
|
|
| 140 |
chatbot = gr.Chatbot(height=300, show_copy_button = False, show_share_button = False)
|
| 141 |
|
| 142 |
with gr.Row():
|
| 143 |
-
msg = gr.Textbox(placeholder="Type here >> ", container=False, scale=10)
|
| 144 |
-
submit = gr.Button(value="Submit", variant="primary", scale=1)
|
| 145 |
|
| 146 |
with gr.Row():
|
| 147 |
report = gr.Button(value="REPORT", variant="secondary",
|
|
|
|
| 140 |
chatbot = gr.Chatbot(height=300, show_copy_button = False, show_share_button = False)
|
| 141 |
|
| 142 |
with gr.Row():
|
| 143 |
+
msg = gr.Textbox(placeholder="Type here >> ", container=False, scale=10, min_width=250)
|
| 144 |
+
submit = gr.Button(value="Submit", variant="primary", scale=1, min_width=20)
|
| 145 |
|
| 146 |
with gr.Row():
|
| 147 |
report = gr.Button(value="REPORT", variant="secondary",
|