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

Cost by Model

Window: {{ since }} → {{ until }}
{% if rows %} {% for r in rows %} {% endfor %}
ModelRunsTotalAvg/runPrompt tokCompletion tok
{{ r.model }} {{ r.runs }} {{ cost(r.total_cost) }} {{ cost(r.avg_cost) }} {{ r.prompt_tokens }} {{ r.completion_tokens }}
{% else %}

No runs in the window.

{% endif %} {% endblock %}