{% extends "base.html" %} {% from "macros.html" import status_badge, cost %} {% block title %}Runs · LLM Admin{% endblock %} {% block content %}

Runs

{{ total }} run(s) · page {{ page }} · {{ per_page }} per page
{% if runs %} {% for r in runs %} {% endfor %}
IDCreatedAgentModelStatus CostTokens (in/out)DurationJob
#{{ r.id }} {{ r.created_at }} {{ r.agent_type }} {{ r.model }} {{ status_badge(r.status) }} {{ cost(r.cost_usd) }} {{ r.prompt_tokens or 0 }} / {{ r.completion_tokens or 0 }} {{ r.duration_ms or 0 }}ms {% if r.job_id %}#{{ r.job_id }}{% else %}—{% endif %}
{% if has_prev %}← Prev{% endif %} Page {{ page }} {% if has_next %}Next →{% endif %}
{% else %}

No runs match these filters. Try widening the window.

{% endif %} {% endblock %}