{% 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 {{ run.started_at }} Ended {{ run.ended_at | default('active', true) }}
{% if run.is_active %}

Run in progress

{{ run.name }}

{{ stats.request_count | compact_number }} request{{ '' if stats.request_count == 1 else 's' }} ยท {{ run.open_duration_ms | duration_ms }} open

{% 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 }}
Output tok/s{{ stats.throughput.output_wall | compact_rate }}

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 %}