qwen2-vl-2b-lora-ocr / chat_template.jinja
Piyu12's picture
Upload folder using huggingface_hub
3c2f7bf verified
raw
history blame contribute delete
391 Bytes
{% if messages is string %}{{ messages }}{% else %}{% for content in messages %}{% if content['type'] == 'image' or 'image' in content or 'image_url' in content %}<|vision_start|><|image_pad|><|vision_end|>{% elif content['type'] == 'video' or 'video' in content %}<|vision_start|><|video_pad|><|vision_end|>{% elif 'text' in content %}{{ content['text'] }}{% endif %}{% endfor %}{% endif %}