Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -444,7 +444,7 @@ def create_interface():
|
|
444 |
height: 500px;
|
445 |
}
|
446 |
""",
|
447 |
-
title="
|
448 |
) as iface:
|
449 |
|
450 |
# Header
|
@@ -471,18 +471,18 @@ def create_interface():
|
|
471 |
)
|
472 |
|
473 |
process_btn = gr.Button(
|
474 |
-
"
|
475 |
variant="primary",
|
476 |
size="lg"
|
477 |
)
|
478 |
|
479 |
-
gr.Markdown("##
|
480 |
gr.Markdown("""
|
481 |
**Agents:**
|
482 |
-
-
|
483 |
-
-
|
484 |
-
-
|
485 |
-
-
|
486 |
|
487 |
**MCP Communication:** Structured message passing between agents
|
488 |
""")
|
@@ -504,7 +504,7 @@ def create_interface():
|
|
504 |
scale=4,
|
505 |
autofocus=True
|
506 |
)
|
507 |
-
submit_btn = gr.Button("Send
|
508 |
|
509 |
gr.Examples(
|
510 |
examples=[
|
|
|
444 |
height: 500px;
|
445 |
}
|
446 |
""",
|
447 |
+
title="Agentic RAG Chatbot"
|
448 |
) as iface:
|
449 |
|
450 |
# Header
|
|
|
471 |
)
|
472 |
|
473 |
process_btn = gr.Button(
|
474 |
+
"Process Documents",
|
475 |
variant="primary",
|
476 |
size="lg"
|
477 |
)
|
478 |
|
479 |
+
gr.Markdown("## Architecture Info")
|
480 |
gr.Markdown("""
|
481 |
**Agents:**
|
482 |
+
- IngestionAgent: Document parsing
|
483 |
+
- RetrievalAgent: Semantic search
|
484 |
+
- LLMResponseAgent: Response generation
|
485 |
+
- CoordinatorAgent: Workflow orchestration
|
486 |
|
487 |
**MCP Communication:** Structured message passing between agents
|
488 |
""")
|
|
|
504 |
scale=4,
|
505 |
autofocus=True
|
506 |
)
|
507 |
+
submit_btn = gr.Button("Send ", scale=1, variant="primary")
|
508 |
|
509 |
gr.Examples(
|
510 |
examples=[
|