mirror of
https://github.com/karpathy/nanochat.git
synced 2026-03-24 13:53:27 +00:00
7 lines
377 B
JSON
7 lines
377 B
JSON
{
|
|
"chat_template": "<|bos|>{% for message in messages %}{% if message['role'] == 'user' %}<|user_start|>{{ message['content'] }}<|user_end|>{% elif message['role'] == 'assistant' %}<|assistant_start|>{{ message['content'] }}<|assistant_end|>{% endif %}{% endfor %}<|assistant_start|>",
|
|
"bos_token": "<|bos|>",
|
|
"eos_token": "<|assistant_end|>",
|
|
"pad_token": "<|bos|>"
|
|
}
|