{% extends "base.html" %} {% set active_nav = "workers" %} {% block title %}Eval Run {{ run.id[:8] }} — Heddle Workshop{% endblock %} {% block content %}

Eval Run {{ run.id[:8] }}

Worker: {{ name }} · Tier: {{ run.tier }} · Status: {{ run.status }} · {{ run.passed_cases }}/{{ run.total_cases }} passed

{% for r in results %} {% endfor %}
Case Result Score Latency Tokens Error
{{ r.case_name }} {% if r.passed %} PASS {% else %} FAIL {% endif %} {{ '%.2f' | format(r.score or 0) }} {{ r.latency_ms or '—' }}ms {{ r.prompt_tokens or 0 }}+{{ r.completion_tokens or 0 }} {{ r.error or '—' }}
{% for r in results %}
{{ r.case_name }} — details

Input

{{ r.input_payload if r.input_payload is string else (r.input_payload | tojson(indent=2)) }}

Expected

{{ r.expected_output if r.expected_output is string else (r.expected_output | tojson(indent=2) if r.expected_output else '—') }}

Actual

{{ r.actual_output if r.actual_output is string else (r.actual_output | tojson(indent=2) if r.actual_output else '—') }}
{% endfor %}

← Back to eval dashboard

{% endblock %}