mirror of
https://github.com/Palm1r/QodeAssist.git
synced 2026-06-14 02:09:22 -04:00
13 lines
285 B
Django/Jinja
13 lines
285 B
Django/Jinja
{% for msg in ctx.history %}
|
|
{
|
|
"role": {{ tojson(msg.role) }},
|
|
"content": [
|
|
{% for b in msg.content_blocks %}
|
|
{% if b.type == "image" %}{% include "partials/anthropic_image.jinja" %}
|
|
{% else %}{{ tojson(b) }},
|
|
{% endif %}
|
|
{% endfor %}
|
|
]
|
|
},
|
|
{% endfor %}
|