{% extends "base.html" %} {% set active_page = 'memory' %} {% block title %}Memory — Maude Front Desk{% endblock %} {% block content %} {% if activity %}
{% for a in activity %} {% endfor %}
Time Room Trigger Outcome Model Tokens Summary
{{ a.created_at[:16] if a.created_at else '?' }} {{ a.project }} {{ a.trigger or '?' }} {% if a.outcome == 'resolved' %} resolved {% elif a.outcome == 'failed' %} failed {% elif a.outcome == 'escalated' %} escalated {% elif a.outcome == 'no_action' %} no_action {% else %} {{ a.outcome or '?' }} {% endif %} {{ a.model or '?' }} {{ a.tokens_used or '?' }} {{ (a.summary or '')[:100] }}
{% else %}

No agent activity in the last 2 hours.

{% endif %} {% endblock %}