Florence-MTF-2D / chat_template.json
Treza12's picture
Upload folder using huggingface_hub
98fcb4b verified
raw
history blame
433 Bytes
{
"chat_template": "{% for message in messages %}{% if message['role'] == 'user' %}{% for item in message['content'] %}{% if item['type'] == 'text' %}{{ '<|user|>\n' + item['text'] }}{% elif item['type'] == 'image' %}{{ '<|image|>' }}{% endif %}{% endfor %}{% elif message['role'] == 'assistant' %}{{ '<|assistant|>\n' + message['content'] }}{% endif %}{% endfor %}{% if add_generation_prompt %}{{ '<|assistant|>' }}{% endif %}"
}