← Back to {{ project_name }}
Session ID: {{ session.info.id }}
Directory: {{ session.info.directory }}
Created: {{ session_created_text }} | Updated: {{ session_updated_text }}
Messages: {{ session.message_count }} | Tool calls: {{ session.tool_call_count }} | Tokens: in {{ "{:,}".format(session.total_input_tokens) }} / out {{ "{:,}".format(session.total_output_tokens) }} {% if session.total_reasoning_tokens > 0 %} / reasoning {{ "{:,}".format(session.total_reasoning_tokens) }}{% endif %} | Cost: ${{ "%.6f"|format(session.total_cost) }}
{% for msg in rendered_messages %}
{{ msg.role_label }} {% if msg.agent %}agent: {{ msg.agent }}{% endif %} {% if msg.mode %}mode: {{ msg.mode }}{% endif %} {% if msg.model %}model: {{ msg.provider }}/{{ msg.model }}{% endif %} {% if msg.finish %}finish: {{ msg.finish }}{% endif %}
{{ msg.created_text }}
{% if msg.error %}
❌ {{ msg.error }}
{% endif %}
{{ msg.token_text }}
cost ${{ msg.cost_text }}
{% for part in msg.parts %}
{{ part.html | safe }}
{% endfor %}
{% endfor %}