Task ID
{{ snapshot.task_id }}
Worker
{{ snapshot.routing_decision | upper }}
({{ snapshot.owner_role }})
Confidence
{{ snapshot.confidence * 100 | int }}%
Outcome
{% if snapshot.outcome == "ACCEPT" %}
{{ snapshot.outcome }}
{% elif snapshot.outcome == "RETURN" %}
{{ snapshot.outcome }}
{% elif snapshot.outcome == "ESCALATE" %}
{{ snapshot.outcome }}
{% else %}
{{ snapshot.outcome }}
{% endif %}
Cost
${{ "%.4f"|format(snapshot.cost_usd) }} USD
Completed
{{ snapshot.timestamp | replace("T", " ") | truncate(19, True, "") }}
{% if snapshot.lesson_text %}
Lesson
{{ snapshot.lesson_text }}
{% endif %}
{% if snapshot.output %}
Output
{{ snapshot.output }}
{% endif %}