Conversation {% if meta %}{% if meta.time %}{{ meta.time }} · {% endif %}{% if meta.total_tokens %}{{ meta.total_tokens }} tokens{% endif %}{% endif %}
{% for block in blocks %} {% if block.kind == "system" %}
System instructions
{{ block.content }}
{% elif block.kind == "activity" %}
Activity · {{ block.tools | length }} {{ "step" if block.tools | length == 1 else "steps" }}
{% for tool in block.tools %}
{{ tool.name }}{% if tool.result is not none %}result{% endif %}
{% if tool.args is not none %}Input
{{ tool.args | tojson(indent=2) }}
{% endif %} {% if tool.result is not none %}Output{% if tool.result is string %}
{{ tool.result }}
{% else %}
{{ tool.result | tojson(indent=2) }}
{% endif %}{% endif %}
{% endfor %}
{% elif block.kind == "message" %}
{{ "You" if block.role == "user" else "Assistant" }}{% if block.message_hash %}{{ block.message_hash }}{% endif %}
{{ block.content }}
{% endif %} {% endfor %}