{% extends "base.html" %} {% block content %}

{{ 'Run in progress' if run.is_active else 'Completed run' }}

Run: {{ run.name }}

{% if run.notes %}

{{ run.notes }}

{% endif %}
Started Ended {% if run.ended_at %}{% else %}active{% endif %}
{% if run.is_active %}
{% endif %}
Requests{{ stats.request_count | compact_number }} LLM wall time{{ stats.llm_wall_time_ms | duration_ms }} Run open{{ stats.run_open_duration_ms | duration_ms }} Request duration{{ stats.total_request_duration_ms | duration_ms }} Input tokens{{ stats.tokens.input | compact_number }} Output tokens{{ stats.tokens.output | compact_number }} Total tokens{{ stats.tokens.total | compact_number }} Estimated cost{{ stats.cost_usd | usd }} Output tok/s{{ stats.throughput.output_observed | compact_rate }}

What-if cost

{{ what_if.scenarios | length }} compared
{% for option in what_if.options %} {% else %}

No active model prices configured.

{% endfor %}
{% if what_if.options %} {% endif %}
{% if what_if.message %}

{{ what_if.message }}

{% endif %} {% if what_if.scenarios %}
{% for scenario in what_if.scenarios %} {% if scenario.mixed_tiers %} {% else %} {% endif %} {% endfor %}
Scenario Input Tokens Cached Input Output Tokens Input / 1M Cached / 1M Output / 1M Input Cost Output Cost Total Cost Included Missing Usage
{{ scenario.label }} {{ scenario.provider_name }} / {{ scenario.model }} {{ scenario.input_tokens | compact_number }} {{ scenario.cached_input_tokens | compact_number }} {{ scenario.output_tokens | compact_number }}Mixed tiers Mixed tiers Mixed tiers{{ scenario.input_usd_per_million | usd }} {{ scenario.cached_input_usd_per_million | usd }} {{ scenario.output_usd_per_million | usd }}{{ scenario.input_cost_usd | usd }} {{ scenario.output_cost_usd | usd }} {{ scenario.total_cost_usd | usd }} {{ scenario.included_request_count | compact_number }} {{ scenario.missing_usage_request_count | compact_number }}
{% endif %}

Models

{% for item in stats.models %} {{ item.count | compact_number }}{{ item.label }} {% else %}

No model usage yet.

{% endfor %}

Endpoints

{% for item in stats.endpoints %} {{ item.count | compact_number }}{{ item.label }} {% else %}

No endpoint usage yet.

{% endfor %}

Status Codes

{% for item in stats.statuses %} {{ item.count | compact_number }}{{ item.label }} {% else %}

No status codes yet.

{% endfor %}

Signals

{{ stats.signals.streams | compact_number }}Streams {{ stats.signals.images | compact_number }}Images {{ stats.signals.tools | compact_number }}Tools {{ stats.signals.errors | compact_number }}Errors

Requests

Run traffic

Open in browser
{% set show_run = false %} {% include "_requests_table.html" %} {% endblock %}