{% extends "base.html" %} {% block breadcrumbs %} › Traces{% endblock %} {% block title %}Traces — {{ site_title }}{% endblock %} {% block content %}

Agent traces

Every agent invocation, with the steps it took to get there.

{% if traces %}
{% for t in traces %} {% endfor %}
TraceAgentSessionInputOutputStepsTokensStatusDuration
{{ t.short_id }} {{ t.agent }} {{ t.session_id | short(14) or '—' }} {{ t.input | short(45) }} {{ t.output | short(45) }} {{ t.steps }} {{ t.total_tokens | number }} {{ t.status }} {{ t.duration_s | duration }}
{% else %}

No traces yet.

{% endif %}
{% endblock %}