Better textbox UI (#11)
Browse files- Better textbox UI (a46fb59b2a34e3b1118baa61a427317d84e7d4a8)
Co-authored-by: Ali Abid <[email protected]>
app.py
CHANGED
@@ -94,7 +94,7 @@ with gr.Blocks() as demo:
|
|
94 |
chatbot = gr.Chatbot().style(height=500)
|
95 |
with gr.Row():
|
96 |
with gr.Column(scale=0.70):
|
97 |
-
msg = gr.Textbox(label="", placeholder="Chat Message Box")
|
98 |
with gr.Column(scale=0.30):
|
99 |
with gr.Row():
|
100 |
submit = gr.Button("Submit")
|
|
|
94 |
chatbot = gr.Chatbot().style(height=500)
|
95 |
with gr.Row():
|
96 |
with gr.Column(scale=0.70):
|
97 |
+
msg = gr.Textbox(label="Chat Message Box", placeholder="Chat Message Box", show_label="False").style(container=False)
|
98 |
with gr.Column(scale=0.30):
|
99 |
with gr.Row():
|
100 |
submit = gr.Button("Submit")
|