Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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.
|
| 487 |
with gr.Accordion("Editable version"):
|
| 488 |
-
|
| 489 |
-
|
| 490 |
-
|
| 491 |
-
|
| 492 |
-
|
| 493 |
-
|
|
|
|
| 494 |
output_textMarkdown = gr.Markdown(
|
| 495 |
label="Analysis and Results",
|
| 496 |
-
height=
|
| 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 |
|