{% if summary %}
${{ '%.4f' | format(summary.total_cost_usd) }}
Total Cost
{{ summary.total_tokens }}
Total Tokens
{{ summary.total_llm_calls }}
LLM Calls
{% if summary.by_model %}

By Model

{% for row in summary.by_model %} {% endfor %}
Model Cost Tokens Share
{{ row.model }} ${{ '%.6f' | format(row.cost_usd) }} {{ row.tokens }}
{{ '%.1f' | format(row.pct) }}%
{% endif %} {% if summary.by_agent %}

By Agent

{% for row in summary.by_agent %} {% endfor %}
Agent Cost Share
{{ row.agent_id }} ${{ '%.6f' | format(row.cost_usd) }}
{{ '%.1f' | format(row.pct) }}%
{% endif %} {% else %}

No metrics configured. Pass nexus_metrics to create_app().

{% endif %}