{% extends "base.html" %} {% block title %}LLM Limits{% endblock %} {% block extra_head %} {% endblock %} {% block content %}

LLM Limits

Configured limits

{% for row in limits %} {% else %} {% endfor %}
Name Scope Window Purpose Model Cap Used Remaining Resets at
{{ row.name }} {{ row.scope }} {{ row.window }} {{ row.purpose or "" }} {{ row.model_id or "" }} {{ "$%.4f"|format(row.amount_usd) }} {% if row.used_usd is none %}per actor{% else %}{{ "$%.4f"|format(row.used_usd) }}{% endif %} {% if row.remaining_usd is none %}per actor{% else %}{{ "$%.4f"|format(row.remaining_usd) }}{% endif %} {{ row.resets_at or "" }}
No limits configured

Actor usage

{% for row in actor_usage %} {% else %} {% endfor %}
Limit Actor Window Purpose Model Cap Used Remaining Resets at
{{ row.name }} {{ row.actor_id }} {{ row.window }} {{ row.purpose or "" }} {{ row.model_id or "" }} {{ "$%.4f"|format(row.amount_usd) }} {{ "$%.4f"|format(row.used_usd) }} {{ "$%.4f"|format(row.remaining_usd) }} {{ row.resets_at or "" }}
No actor-scoped usage yet

Recent transactions

{% for t in recent_transactions %} {% else %} {% endfor %}
ID Created Actor Purpose Model Reserved Settled Matched limits
{{ t.id }} {{ t.created_at }} {{ t.actor_id or "" }} {{ t.purpose or "" }} {{ t.model_id or "" }} {{ "$%.4f"|format(t.reserved_usd) }} {% if t.settled_usd is not none %}{{ "$%.4f"|format(t.settled_usd) }}{% endif %} {{ t.matched_limits|join(", ") }}
No transactions yet
{% endblock %}