{% extends "base.html" %} {% from "macros.html" import cost %} {% block title %}Cost by Agent · LLM Admin{% endblock %} {% block content %}

Cost by Agent

Window: {{ since }} → {{ until }}
{% if rows %} {% for r in rows %} {% endfor %}
AgentRunsTotalAvg/run
{{ r.agent_type }} {{ r.runs }} {{ cost(r.total_cost) }} {{ cost(r.avg_cost) }}
{% else %}

No runs in the window.

{% endif %} {% endblock %}