{% if chat.get('schema_version', 0) >= 1 %}
{% for message in chat['messages'] %}
{% for part in message['parts'] %}
{% if part['part_kind']=='system-prompt' %}
{% include('chat_metadata.html') %}
{% elif part['part_kind']=='user-prompt' %}
{% include('user_message.html') %}
{% elif part['part_kind']=='text' and message['kind']=='response' %}
{% include('ai_message.html') %}
{% elif part['part_kind']=='tool-return' %}
{% include('function_call.html') %}
{% endif %}
{% endfor %}
{% endfor %}
{% include('loader.html') %}
{% else %}
{{chat | tojson(indent=2)}}
{% endif %}