Visual Document Retrieval
ColPali
Safetensors
English
vidore
colpali / chat_template.jinja
tomaarsen's picture
tomaarsen HF Staff
Integrate with Sentence Transformers via MultiVectorEncoder
d56fc86 verified
Raw
History Blame
455 Bytes
{%- for message in messages -%}
{%- set images = message['content'] | selectattr('type', 'equalto', 'image') | list -%}
{%- set texts = message['content'] | selectattr('type', 'equalto', 'text') | map(attribute='text') | list -%}
{%- if images -%}
{%- for _ in images -%}{{- '<image>' -}}{%- endfor -%}
{{- texts[0] if texts else 'Describe the image.' -}}
{%- else -%}
{{ bos_token }}Question: {{ texts[0] }}{{ '<unused0>' * 5 }}
{% endif %}
{% endfor %}