mirror of
https://github.com/Palm1r/QodeAssist.git
synced 2026-06-13 17:59:15 -04:00
13 lines
375 B
Django/Jinja
13 lines
375 B
Django/Jinja
[
|
|
{% if msg.content != "" %}
|
|
{ "type": "text", "text": {{ tojson(msg.content) }} },
|
|
{% endif %}
|
|
{% for img in msg.images %}
|
|
{% if img.is_url %}
|
|
{ "type": "image_url", "image_url": { "url": {{ tojson(img.data) }} } },
|
|
{% else %}
|
|
{ "type": "image_url", "image_url": { "url": "data:{{ img.media_type }};base64,{{ img.data }}" } },
|
|
{% endif %}
|
|
{% endfor %}
|
|
]
|