{% extends "base.html" %} {% block content %}
← History
#{{ run_info.run_id }}
{% if run_info.summary %}

{{ run_info.summary }}

{% endif %}
Model {{ run_info.model_name or 'default' }}
Passed {{ stats.status_counts.get('passed', 0) }} / {{ stats.total_tests or 0 }} domain {{ individual_stats.passed }} / {{ individual_stats.total }} individual
Overall Score {% if run_info.overall_score is not none %}{{ "%.1f"|format(run_info.overall_score * 100) }}%{% else %}—{% endif %}
{% if run_info.total_tokens and run_info.total_tokens > 0 %}
Speed {{ "%.1f"|format((run_info.total_tokens or 0) / ((run_info.total_duration_ms or 1) / 1000)) }} tok/s
Tokens {{ "{:,}".format(run_info.total_tokens or 0) }}
Duration {{ "%.1f"|format((run_info.total_duration_ms or 0) / 1000) }}s
{% endif %}
{% for domain in domains %}
{{ (domain_names or {}).get(domain, domain.replace('_', ' ')) }}
{% for level in range(1, 6) %}
L{{ level }}
-
{% endfor %}
-
0/5
{% endfor %}
{% include 'partials/test-modal.html' %} {% include 'partials/training-modal.html' %} {% endblock %}