{% extends "_layout.html" %} {% set active = "overview" %} {% block title %}Overview{% endblock %} {% block main %}
Episodes (Total) {{ kpi.episodes }} Interactions recorded
Facts (Recallable) {{ health.n_recallable | default(kpi.facts) }} Active & embedded ({{ health.active_embedding_model | default("model unknown") }})
Facts (Quarantined) {{ health.n_quarantined | default(0) }} Anti-confabulation held these back
Superseded / Dark {{ health.n_superseded | default(0) }} / {{ health.n_embedding_dark | default(0) }} {{ health.n_chains | default(0) }} update chains (max length: {{ health.max_chain_length | default(0) }})
Skills (Promoted / Total) {{ kpi.skills_promoted }} / {{ kpi.skills_total }} {{ kpi.skills_candidate }} candidates pending
Mode {{ kpi.mode | upper }} Provider: {{ kpi.provider or "none" }}
{% if health and health.top_topics %}

Top Topics taxonomy

{% for topic in health.top_topics %} {{ topic.topic }} ({{ topic.count }}) {% endfor %}
{% endif %}

Recent events

{% if events %} {% for ev in events %} {% endfor %}
timeeventpayload
{{ ev.time }} {{ ev.name }} {{ ev.payload_short }}
Open live event stream {% else %}

No events yet — start a chat to populate the bus.

{% endif %}

Metrics snapshot (full view)

{{ metrics_json }}
{% endblock %} {% block scripts %} {% endblock %}