mirror of https://github.com/hpcaitech/ColossalAI
9 lines
593 B
JSON
9 lines
593 B
JSON
{
|
|
"chat_template": "{{ bos_token }}{% for message in messages %}{% if (message['role'] == 'user') != (loop.index0 % 2 == 0) %}{{ raise_exception('Conversation roles must alternate user/assistant/user/assistant/...') }}{% endif %}{% if message['role'] == 'user' %}{{ '[INST] ' + message['content'] + ' [/INST]' }}{% elif message['role'] == 'assistant' %}{{ message['content'] + eos_token}}{% else %}{{ raise_exception('Only user and assistant roles are supported!') }}{% endif %}{% endfor %}",
|
|
"system_message": null,
|
|
"stop_ids": [
|
|
2
|
|
],
|
|
"end_of_assistant": "</s>"
|
|
}
|