← Back to Search
{% if code_blocks %}
Code Blocks
{{ code_blocks | length }}
{% for block in code_blocks %}
{{ block.language or 'plaintext' }}
{{ block.lines }} lines
{{ block.role }}
{{ block.code }}
{% endfor %}
{% endif %}
{% for msg in (conversation.messages or []) %}
{{ msg.role or 'Unknown' }}
{{ msg.content or '' }}
{% if msg.timestamp %}
{{ msg.timestamp }}
{% endif %}
{% endfor %}
{% else %}