Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -205,12 +205,14 @@ with gr.Blocks(theme=gr.themes.Soft(primary_hue=gr.themes.colors.blue, secondary
|
|
| 205 |
with gr.Row():
|
| 206 |
user_message_input = gr.Textbox(
|
| 207 |
label="What insights are you seeking? ",
|
| 208 |
-
placeholder="Type your question here
|
| 209 |
lines=1,
|
| 210 |
scale=4 # Textbox takes more horizontal space in this row
|
| 211 |
)
|
| 212 |
with gr.Row():
|
|
|
|
| 213 |
send_button = gr.Button("Ask", variant="primary", scale=1) # Send button
|
|
|
|
| 214 |
|
| 215 |
|
| 216 |
|
|
|
|
| 205 |
with gr.Row():
|
| 206 |
user_message_input = gr.Textbox(
|
| 207 |
label="What insights are you seeking? ",
|
| 208 |
+
placeholder="Type your question here...",
|
| 209 |
lines=1,
|
| 210 |
scale=4 # Textbox takes more horizontal space in this row
|
| 211 |
)
|
| 212 |
with gr.Row():
|
| 213 |
+
empty_space = gr.HTML("")
|
| 214 |
send_button = gr.Button("Ask", variant="primary", scale=1) # Send button
|
| 215 |
+
empty_space = gr.HTML("")
|
| 216 |
|
| 217 |
|
| 218 |
|