{% extends "_base.html" %} {% block title %}Usage · {{ project.name | humanize }} · Urika{% endblock %} {% block heading %}Usage{% endblock %} {% block extra_head %} {% endblock %} {% block breadcrumb %} {% endblock %} {% block content %} {% if sessions %}
Estimates only. Token counts and costs below are derived from what the model API returns and Urika's pricing table for the configured model. For authoritative usage and billing, check the console of the provider whose API key Urika is using (e.g. Anthropic, OpenAI, Google, or your private endpoint provider).
Sessions
{{ totals.sessions }}
Total tokens (est.)
{{ totals.total_tokens_in + totals.total_tokens_out }}
Est. cost
${{ "%.2f"|format(totals.total_cost_usd) }}
Agent calls
{{ totals.total_agent_calls }}
Experiments
{{ totals.total_experiments }}

Tokens over time (est.)

Estimated cost over time

Recent sessions

{% for s in recent_sessions %} {% endfor %}
Started Duration (ms) Tokens (est.) Est. cost Agent calls
{{ s.started }} {{ s.duration_ms }} {{ (s.tokens_in or 0) + (s.tokens_out or 0) }} ${{ "%.4f"|format(s.cost_usd or 0) }} {{ s.agent_calls or 0 }}
{% else %}

No usage recorded yet. Run an agent first.

{% endif %} {% endblock %}