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

TES Scoring Ledger — Sessions

Total scored: {{ total_scored }}

{% if headline %}
Token verdict coverage — self-baseline active on all 5 task types
Sessions with content: {{ headline.content_sessions }}{{ headline.content_self_scored }} ({{ headline.content_self_pct }}%) scored against your own lean runs.
Pre-self-baseline (B2 corpus): {{ headline.b2_content_scored }} of {{ headline.b2_content_total }} content sessions scored ({{ headline.b2_content_scored_pct }}%).
Empty/stub sessions (no work product): {{ headline.empty_stubs }} of {{ headline.total }} total — not scoring failures.baseline status by type →
{% endif %}
Token verdicts relative to YOUR OWN lean waste-free sessions (self-baseline) where active. Baseline source shown per session. See session detail for full domain-of-validity.
{% if pairs %} {% for session, traj_state in pairs %} {% endfor %}
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 %}
{% if price_provenance %}

{{ price_provenance }} · Cost annotates the token axis — not a score.

{% endif %} {% else %}

No sessions scored yet. Run tes score <path> to score a session.

{% endif %} {% endblock %}