{% extends "base.html" %} {% block title %}session {{ session_id[:12] }} · claudegrep{% endblock %} {% block content %}

session {{ session_id[:16] }}

{{ chunks|length }} turn{{ "s" if chunks|length != 1 else "" }}
    {% for c in chunks %}
  1. turn {{ c.turn_index }} {% if c.tool_names %} tools: {{ c.tool_names|join(", ") }} {% endif %}
    {{ c.text }}
  2. {% endfor %}
{% endblock %}