🚀 MDSA Framework Dashboard

Multi-Domain Specialized Agentic Orchestration - Monitoring & Control

{{ stats.total_apps }}

MDSA Applications

{{ stats.total_domains }}

Registered Domains

{{ stats.active_models }}

Active Models

{{ stats.rag_documents }}

RAG Documents

{{ stats.total_requests }}

Total Requests

Registered Applications

{% if apps %}
{% for app in apps %}

{{ app.name }}

Framework: {{ app.framework }}

Endpoint: {{ app.endpoint }}

Status: {{ app.health_status }}

{% if app.health_status == 'healthy' %}

Response Time: {{ app.response_time_ms|round(2) }} ms

{% endif %}
{% endfor %}
{% else %}

No applications registered yet. Start the medical chatbot to see it appear here.

python chatbot_app/medical_app/enhanced_medical_chatbot_fixed.py

{% endif %}

Quick View: Domains ({{ stats.total_domains }})

{% if domains %}
{% for domain in domains[:5] %}

{{ domain.description or domain.domain_id }}

ID: {{ domain.domain_id }}

Model: {{ domain.model_name }}

{% if domain.app_name %}

App: {{ domain.app_name }}

{% endif %} {% if domain.keywords %}
{% for keyword in domain.keywords[:5] %} {{ keyword }} {% endfor %} {% if domain.keywords|length > 5 %} +{{ domain.keywords|length - 5 }} more {% endif %}
{% endif %}
{% endfor %} {% if domains|length > 5 %}

View all {{ stats.total_domains }} domains →

{% endif %}
{% else %}

No domains registered yet.

{% endif %}

Features