Image-Text-to-Text
Transformers
Safetensors
multilingual
internvl
custom_code
conversational
InternVL3_5-241B-A28B-HF / chat_template.jinja
Weiyun1025's picture
Upload folder using huggingface_hub
2a22d14 verified
raw
history blame contribute delete
481 Bytes
{% for message in messages %}{{'<|im_start|>' + message['role'] + '
'}}{% if message['content'] is string %}{{ message['content'] }}{% else %}{% for content in message['content'] %}{% if content['type'] == 'image' %}{{ '<IMG_CONTEXT>
' }}{% elif content['type'] == 'video' %}{{ '<video>
' }}{% elif content['type'] == 'text' %}{{ content['text'] }}{% endif %}{% endfor %}{% endif %}{{'<|im_end|>
'}}{% endfor %}{% if add_generation_prompt %}{{'<|im_start|>assistant
' }}{% endif %}