Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -447,8 +447,8 @@ with gr.Blocks(title="AI Research Agent v5.8") as demo:
|
|
447 |
sys_prompt_tb = gr.Textbox(label="System Prompt Base", lines=10, value=DEFAULT_SYSTEM_PROMPT, interactive=True)
|
448 |
if MEMORY_STORAGE_BACKEND == "RAM":
|
449 |
save_faiss_sidebar_btn = gr.Button("Save FAISS Indices", variant="secondary")
|
450 |
-
with gr.Column(
|
451 |
-
with gr.Row(
|
452 |
gr.Markdown("# 🤖 AI Research Agent")
|
453 |
# Removed subtitle from here, can be added in description of Space if hosted on HF
|
454 |
|
|
|
447 |
sys_prompt_tb = gr.Textbox(label="System Prompt Base", lines=10, value=DEFAULT_SYSTEM_PROMPT, interactive=True)
|
448 |
if MEMORY_STORAGE_BACKEND == "RAM":
|
449 |
save_faiss_sidebar_btn = gr.Button("Save FAISS Indices", variant="secondary")
|
450 |
+
with gr.Column(): # New overall wrapper for content
|
451 |
+
with gr.Row():
|
452 |
gr.Markdown("# 🤖 AI Research Agent")
|
453 |
# Removed subtitle from here, can be added in description of Space if hosted on HF
|
454 |
|