File size: 299 Bytes
bdcc7fc | 1 | {% for message in messages %}{% if loop.first and messages[0]['role'] != 'system' %}{{ 'system\nYou are a helpful assistant<|endoftext|>\n' }}{% endif %}{{ message['role'] + '\n' + message['content'] + '<|endoftext|>' + '\n' }}{% endfor %}{% if add_generation_prompt %}{{ 'assistant\n' }}{% endif %} |