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

Task benchmarking

Runs

{{ runs | length | compact_number }}Shown {{ '1' if active_run else '0' }}Active
{% if error %}
{{ error }}
{% endif %}
{% if active_run %}

Run in progress

{{ active_run.name }}

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

{% else %}
{% endif %}
{% for run in runs %} {% else %} {% endfor %}
Run Status Requests LLM Wall Time Total Tokens Output tok/s Signals
{{ run.name }} {{ run.started_at }} {{ 'active' if run.is_active else 'complete' }} {{ run.request_count | compact_number }} {{ run.llm_wall_time_ms | duration_ms }} {{ run.total_tokens | compact_number }} {{ run.output_tokens_per_second | compact_rate }} {% if run.signals.streams %}{{ run.signals.streams | compact_number }} Stream{% endif %} {% if run.signals.images %}{{ run.signals.images | compact_number }} Image{% endif %} {% if run.signals.tools %}{{ run.signals.tools | compact_number }} Tool{% endif %} {% if run.signals.errors %}{{ run.signals.errors | compact_number }} Error{% endif %}
No runs yet.
{% endblock %}