Safetensors
English
llava_next
medical
biology
biomed-LLaVA-NeXT-Llama3-8B / chat_template.json
AdaptLLM's picture
a17975566006309f2ee74922745566b7705ea221a57697603002dd4aad4731c0
7a26709 verified
raw
history blame
530 Bytes
{
"chat_template": "{% for message in messages %}{{ '<|start_header_id|>' + message['role'] + '<|end_header_id|>\n\n'}}{# Render all images first #}{% for content in message['content'] | selectattr('type', 'equalto', 'image') %}{{ '<image>' }}{% endfor %}{# Render all text next #}{% for content in message['content'] | selectattr('type', 'equalto', 'text') %}{{ '\n' + content['text'] + '<|eot_id|>' }}{% endfor %}{% endfor %}{% if add_generation_prompt %}{{ '<|start_header_id|>assistant<|end_header_id|>\n\n' }}{% endif %}"
}