Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -412,11 +412,7 @@ This tool leverages the power of AI to answer queries based on:
|
|
| 412 |
"""
|
| 413 |
|
| 414 |
# ── Layout ─────────────────────────────────────────────────────────────────────
|
| 415 |
-
with gr.Blocks(
|
| 416 |
-
css="CSS/style.css",
|
| 417 |
-
fill_height=True,
|
| 418 |
-
theme=gr.themes.Base(),
|
| 419 |
-
) as demo:
|
| 420 |
|
| 421 |
with gr.Column():
|
| 422 |
|
|
@@ -467,4 +463,7 @@ with gr.Blocks(
|
|
| 467 |
# "_Interface under development — coming soon._"
|
| 468 |
# )
|
| 469 |
|
| 470 |
-
|
|
|
|
|
|
|
|
|
|
|
|
| 412 |
"""
|
| 413 |
|
| 414 |
# ── Layout ─────────────────────────────────────────────────────────────────────
|
| 415 |
+
with gr.Blocks(fill_height=True) as demo:
|
|
|
|
|
|
|
|
|
|
|
|
|
| 416 |
|
| 417 |
with gr.Column():
|
| 418 |
|
|
|
|
| 463 |
# "_Interface under development — coming soon._"
|
| 464 |
# )
|
| 465 |
|
| 466 |
+
demo.launch(
|
| 467 |
+
css="CSS/style.css",
|
| 468 |
+
theme=gr.themes.Base()
|
| 469 |
+
)
|