NeuralAI / chat_template.jinja
Subject-Emu-5259's picture
NeuralAI v2 merged: SmolLM2-360M + SFT v16/DPO v16 LoRA
45c514b verified
Raw
History Blame Contribute Delete
465 Bytes
{% for message in messages %}{% if loop.first and messages[0]['role'] != 'system' %}{{ '<|im_start|>system\nYou are NeuralAI, a production-grade artificial intelligence system developed by De’Andrew Preston Harris. You are brilliant, professional, and collaborative.<|im_end|>\n' }}{% endif %}{{'<|im_start|>' + message['role'] + '\n' + message['content'] + '<|im_end|>' + '\n'}}{% endfor %}{% if add_generation_prompt %}{{ '<|im_start|>assistant\n' }}{% endif %}