{% extends "base.html" %} {% from "macros.html" import cost, pct %} {% block title %}Budgets ยท LLM Admin{% endblock %} {% block content %}
| Scope | Period | Spent | Limit | % | Status | Action |
|---|---|---|---|---|---|---|
| {{ b.scope_kind }}{% if b.scope_value %}: {{ b.scope_value }}{% endif %} | {{ b.period }} | {{ cost(b.spent_usd) }} | {{ cost(b.limit_usd) }} | {{ pct(b.pct_of_limit) }} | {% if b.action == 'block' %} block {% else %} warn {% endif %} |
No budgets configured. Add some to config/budgets.yaml and run sync_budgets_from_yaml().