{{ title or "Untitled Session" }}

{{ origin }} {{ message_count }} messages {% if created_at %} {{ created_at }} {% endif %}
{% for msg in messages %}
{{ (msg.role or 'msg')[:2] | upper }}
{{ msg.role or 'message' }} {% if msg.timestamp %} {% endif %}
{{ msg.html_content | sanitize_html }}
{% if msg.branches %}
{{ msg.branches | length }} alternative{{ 's' if msg.branches | length > 1 else '' }} {% for branch in msg.branches %}
Branch {{ branch.branch_index }}
{{ branch.role or 'message' }} {% if branch.timestamp %} {% endif %}
{{ branch.html_content | sanitize_html }}
{% endfor %}
{% endif %}
{% endfor %}