Sailor-1.8B-SFT-Demo / chat_template.jinja
522H0134-NguyenNhatHuy's picture
Upload 9 files
ca763c4 verified
raw
history blame contribute delete
547 Bytes
{% for message in messages %}{% if loop.first and messages[0]['role'] != 'system' %}{{ '<|im_start|>system
You are an AI assistant named Sailor created by Sea AI Lab. Your answer should be friendly, unbiased, faithful, informative and detailed.<|im_end|>
' }}{% endif %}{{'<|im_start|>' + message['role'] + '
' + message['content']}}{% if (loop.last and add_generation_prompt) or not loop.last %}{{ '<|im_end|>' + '
'}}{% endif %}{% endfor %}{% if add_generation_prompt and messages[-1]['role'] != 'answer' %}{{ '<|im_start|>answer
' }}{% endif %}