{% extends "base.html" %} {% block content %}
{{ stats.total_facts }}
Stored Facts
{{ stats.total_messages }}
Messages
{{ stats.total_sessions }}
Sessions
{{ stats.semantic_index_size }}
Indexed
Stored Facts
You can view, edit, or delete any fact below.
{% if facts %} {% for fact in facts %} {% endfor %}
Fact Category Confidence Stored
{{ fact.fact }} {{ fact.category }} {{ "%.0f"|format(fact.confidence * 100) }}% {{ fact.created_at[:10] }}
{% else %}
🧠
No facts stored yet.
DuckClaw will learn about you as you chat. Facts are extracted automatically.
{% endif %}
{% endblock %} {% block scripts %} {% endblock %}