Guiyom commited on
Commit
857d5c4
·
verified ·
1 Parent(s): 0f7e8af

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -8
app.py CHANGED
@@ -483,17 +483,18 @@ with gr.Blocks(title="Enhanced Search Assistant", theme=gr.themes.Soft()) as dem
483
  with gr.Row():
484
  searchbutton = gr.Button("🔍 Search", variant="primary")
485
 
486
- with gr.Row():
487
  with gr.Accordion("Editable version"):
488
- output_text = gr.Textbox(
489
- label="Analysis and Results - editable",
490
- lines=20,
491
- interactive=True
492
- )
493
- refreshbutton = gr.Button("Refresh", variant="primary")
 
494
  output_textMarkdown = gr.Markdown(
495
  label="Analysis and Results",
496
- height=200,
497
  max_height=600
498
  )
499
 
 
483
  with gr.Row():
484
  searchbutton = gr.Button("🔍 Search", variant="primary")
485
 
486
+ with gr.Column():
487
  with gr.Accordion("Editable version"):
488
+ with gr.Column():
489
+ output_text = gr.Textbox(
490
+ label="Analysis and Results - editable",
491
+ lines=20,
492
+ interactive=True
493
+ )
494
+ refreshbutton = gr.Button("Refresh", variant="primary")
495
  output_textMarkdown = gr.Markdown(
496
  label="Analysis and Results",
497
+ height=600,
498
  max_height=600
499
  )
500