{% extends "dashboard/base.html" %} {% block title %}Conversations — {{ dashboard_title }}{% endblock %} {% block page_title %}Conversations{% endblock %} {% block content %}

Conversations

Track and monitor multi-turn agent sessions and cumulative usage.

Total Conversations

{{ total }}

Active This Week

{{ total }}

Total Dynamic Sessions

{{ rows|length }}

{% if rows %}
{% for row in rows %} {% endfor %}
Session ID Agent Turns Total Cost Tokens Last Activity
{{ row.session_id_short }}
{{ agent_names.get(row.agent_id, row.agent_id) }} {{ row.execution_count }} {{ format_cost(row.total_cost_usd) }} {{ (row.total_input_tokens + row.total_output_tokens) | int }} {{ relative_time(row.last_activity) }}

Page {{ page }} of {{ total_pages }} ({{ total }} total)

{% if page > 1 %} Previous {% endif %} {% if page < total_pages %} Next {% endif %}
{% else %}

No conversations yet

Conversations appear here when agents are used. Each session tracks multi-turn history and usage metrics.

{% endif %}
{% endblock %}