Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -431,12 +431,13 @@ body { background: linear-gradient(to bottom right, #2c3e50, #34495e); color: #e
|
|
431 |
"""
|
432 |
|
433 |
with gr.Blocks(title="AI Research Agent v5.8") as demo:
|
434 |
-
gr.
|
435 |
-
|
436 |
-
with gr.
|
437 |
-
|
438 |
-
|
439 |
-
|
|
|
440 |
|
441 |
avail_provs = get_available_providers()
|
442 |
def_prov = avail_provs[0] if avail_provs else None
|
|
|
431 |
"""
|
432 |
|
433 |
with gr.Blocks(title="AI Research Agent v5.8") as demo:
|
434 |
+
with gr.Column():
|
435 |
+
gr.HTML("<h1> 🤖 AI Research Agent </h1>")
|
436 |
+
with gr.Row():
|
437 |
+
with gr.Column(scale=3): agent_stat_tb = gr.Textbox(label="Agent Status", interactive=False, lines=1, value="Initializing systems...")
|
438 |
+
with gr.Column(scale=1): memory_backend_info_tb = gr.Textbox(label="Memory Backend", value=f"{MEMORY_STORAGE_BACKEND}", interactive=False)
|
439 |
+
sqlite_path_display = gr.Textbox(label="SQLite Path", value=f"{MEMORY_SQLITE_PATH}", interactive=False, scale=2) # Use visible
|
440 |
+
hf_repos_display = gr.Textbox(label="HF Repos", value=f"M: {MEMORY_HF_MEM_REPO}, R: {MEMORY_HF_RULES_REPO}", interactive=False, scale=2) # Use visible
|
441 |
|
442 |
avail_provs = get_available_providers()
|
443 |
def_prov = avail_provs[0] if avail_provs else None
|