Spaces:
Runtime error
Runtime error
ffreemt
commited on
Commit
•
e0faa34
1
Parent(s):
8ac7a2e
Update scale=1 scale=0.1
Browse files
app.py
CHANGED
@@ -363,13 +363,13 @@ with gr.Blocks(
|
|
363 |
chatbot = gr.Chatbot(scroll_to_output=True).style(height=700) # 500
|
364 |
buff = gr.Textbox(show_label=False)
|
365 |
with gr.Row():
|
366 |
-
with gr.Column():
|
367 |
msg = gr.Textbox(
|
368 |
label="Chat Message Box",
|
369 |
placeholder="Ask me anything (press Enter or click Submit to send)",
|
370 |
show_label=False,
|
371 |
).style(container=False)
|
372 |
-
with gr.Column(scale=0.
|
373 |
with gr.Row():
|
374 |
submit = gr.Button("Submit", elem_classes="xsmall")
|
375 |
stop = gr.Button("Stop", visible=False)
|
|
|
363 |
chatbot = gr.Chatbot(scroll_to_output=True).style(height=700) # 500
|
364 |
buff = gr.Textbox(show_label=False)
|
365 |
with gr.Row():
|
366 |
+
with gr.Column(scale=1):
|
367 |
msg = gr.Textbox(
|
368 |
label="Chat Message Box",
|
369 |
placeholder="Ask me anything (press Enter or click Submit to send)",
|
370 |
show_label=False,
|
371 |
).style(container=False)
|
372 |
+
with gr.Column(scale=0.1):
|
373 |
with gr.Row():
|
374 |
submit = gr.Button("Submit", elem_classes="xsmall")
|
375 |
stop = gr.Button("Stop", visible=False)
|