Deepakraj2006 commited on
Commit
d9bb5f4
Β·
verified Β·
1 Parent(s): 03ba8ec

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -5
app.py CHANGED
@@ -92,11 +92,10 @@ with gr.Blocks(theme=gr.themes.Soft()) as demo:
92
  with gr.Row():
93
  dark_mode = gr.Checkbox(label="πŸŒ™ Toggle light/dark mode")
94
 
95
- with gr.Row():
96
- with gr.Box():
97
- gr.Markdown("Hello there! I'm your friendly data assistant, ready to answer any questions regarding your data. Could you please upload a PDF file for me to analyze?")
98
- file_input = gr.File(label="Upload File")
99
- upload_button = gr.Button("πŸ“‚ Upload File")
100
 
101
  status_output = gr.Textbox(label="Status", interactive=False)
102
 
 
92
  with gr.Row():
93
  dark_mode = gr.Checkbox(label="πŸŒ™ Toggle light/dark mode")
94
 
95
+ with gr.Column(): # βœ… Replace `gr.Box()` with `gr.Column()`
96
+ gr.Markdown("Hello there! I'm your friendly data assistant, ready to answer any questions regarding your data. Could you please upload a PDF file for me to analyze?")
97
+ file_input = gr.File(label="Upload File")
98
+ upload_button = gr.Button("πŸ“‚ Upload File")
 
99
 
100
  status_output = gr.Textbox(label="Status", interactive=False)
101