{% extends "base.html" %} {% from "macros.html" import status_badge, cost %} {% block title %}Runs · LLM Admin{% endblock %} {% block content %}
| ID | Created | Agent | Model | Status | Cost | Tokens (in/out) | Duration | Job |
|---|---|---|---|---|---|---|---|---|
| #{{ 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 %} |
No runs match these filters. Try widening the window.
{% endif %} {% endblock %}