{% extends "base.html" %} {% block content %}
Total scored: {{ total_scored }}
{% if headline %}| Session ID | Task Type | Scored At | Token Band | Baseline | Trajectory | Waste Events | Cost (annotation) |
|---|---|---|---|---|---|---|---|
| {{ session.session_id[:16] }}… | {{ session.task_type }} | {{ session.scored_at[:19] | replace("T", " ") }} | {% if session.band_verdict == "above_p75" %} {{ session.band_verdict }} {% elif session.band_verdict == "below_p25" %} {{ session.band_verdict }} {% elif session.band_verdict == "within_band" %} {{ session.band_verdict }} {% else %} {{ session.band_verdict }} {% endif %} | {% set bs = session.get("baseline_source", "b2_corpus") %} {% if bs == "self" %} self {% elif bs == "building" %} building {% elif bs == "corpus" %} corpus {% else %} b2 {% endif %} | {% if traj_state.value == "unavailable" %} UNAVAILABLE {% elif traj_state.value == "stale" %} {{ session.judge_verdict }} (stale) {% else %} {{ session.judge_verdict }} {% endif %} | {{ session.waste_event_count }} | {% if session.get("session_cost_usd") is not none %} ${{ "%.2f" | format(session.session_cost_usd) }} {% if session.get("cost_approximate") %} [~] {% endif %} {% if session.get("cost_vs_baseline_pct") is not none %} {% set pct = session.cost_vs_baseline_pct %} {% if pct >= 0 %} (+{{ pct }}% vs baseline) {% else %} ({{ pct }}% vs baseline) {% endif %} {% else %} (no baseline yet) {% endif %} {% else %} — {% endif %} |
{{ price_provenance }} · Cost annotates the token axis — not a score.
{% endif %} {% else %}No sessions scored yet. Run tes score <path> to score a session.