MayankLad31 commited on
Commit
be71a86
·
verified ·
1 Parent(s): 5e38052

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
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 and press Enter or click Send...",
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