mirror of
https://github.com/Palm1r/QodeAssist.git
synced 2026-06-14 02:09:22 -04:00
7 lines
228 B
Django/Jinja
7 lines
228 B
Django/Jinja
{% for msg in ctx.history %}
|
|
{
|
|
"role": {% if msg.role == "assistant" %}"model"{% else %}"user"{% endif %},
|
|
"parts": [ {% for b in msg.content_blocks %}{% include "partials/google_part.jinja" %}{% endfor %} ]
|
|
},
|
|
{% endfor %}
|