{{ turn.role | upper }}
{% if turn.timestamp %}
{{ turn.timestamp[11:16] }}
{% endif %}
{% if turn.content %}
{% endif %}
{% if turn.tool_calls %}
{{ turn.content | render_markdown }}
{% endif %}
{% if turn.reasoning %}
Thinking
{{ turn.reasoning | render_markdown }}
{% for tc in turn.tool_calls %}
{% endfor %}
{% endif %}
{{ tc.name }} {{ tc.arguments[:120] if tc.arguments else '' }}
{% if tc.arguments %}
arguments
{{ tc.arguments }}
{% endif %}
{% if tc.output %}
output
{{ tc.output }}
{% endif %}