Remove label from input box - cleaner interface
Browse files
app.py
CHANGED
|
@@ -446,9 +446,10 @@ with gr.Blocks(
|
|
| 446 |
|
| 447 |
# Input
|
| 448 |
user_input = gr.Textbox(
|
| 449 |
-
label="
|
| 450 |
-
placeholder="Type
|
| 451 |
-
lines=3
|
|
|
|
| 452 |
)
|
| 453 |
|
| 454 |
with gr.Row():
|
|
|
|
| 446 |
|
| 447 |
# Input
|
| 448 |
user_input = gr.Textbox(
|
| 449 |
+
label="",
|
| 450 |
+
placeholder="Type here...",
|
| 451 |
+
lines=3,
|
| 452 |
+
show_label=False
|
| 453 |
)
|
| 454 |
|
| 455 |
with gr.Row():
|