{% extends "base.html" %}
{% set active_nav = "workers" %}
{% block title %}Eval Run {{ run.id[:8] }} — Heddle Workshop{% endblock %}
{% block content %}
Worker: {{ name }} ·
Tier: {{ run.tier }} ·
Status: {{ run.status }} ·
{{ run.passed_cases }}/{{ run.total_cases }} passedEval Run
{{ run.id[:8] }}
| 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 '—' }} |
{{ r.input_payload if r.input_payload is string else (r.input_payload | tojson(indent=2)) }}
{{ r.expected_output if r.expected_output is string else (r.expected_output | tojson(indent=2) if r.expected_output else '—') }}
{{ r.actual_output if r.actual_output is string else (r.actual_output | tojson(indent=2) if r.actual_output else '—') }}