Defetya commited on
Commit
519cd24
·
verified ·
1 Parent(s): fe512d6

Update tokenizer_config.json

Browse files
Files changed (1) hide show
  1. tokenizer_config.json +1 -1
tokenizer_config.json CHANGED
@@ -1504,7 +1504,7 @@
1504
  "<end_of_turn>"
1505
  ],
1506
  "bos_token": "<bos>",
1507
- "chat_template": "{{ bos_token }}{% if messages[0]['role'] == 'system' %}{{ raise_exception('System role not supported') }}{% endif %}{% 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'] == 'assistant') %}{% set role = 'model' %}{% else %}{% set role = message['role'] %}{% endif %}{{ '<start_of_turn>' + role + '\n' + message['content'] | trim + '<end_of_turn>\n' }}{% endfor %}{% if add_generation_prompt %}{{'<start_of_turn>model\n'}}{% endif %}",
1508
  "clean_up_tokenization_spaces": false,
1509
  "eos_token": "<eos>",
1510
  "model_max_length": 1000000000000000019884624838656,
 
1504
  "<end_of_turn>"
1505
  ],
1506
  "bos_token": "<bos>",
1507
+ "chat_template": "{% for message in messages %}{% if loop.first and messages[0]['role'] != 'system' %}{{ '<|im_start|>system\nYou are a helpful assistant.<|im_end|>\n' }}{% endif %}{{'<|im_start|>' + message['role'] + '\n' + message['content'] + '<|im_end|>' + '\n'}}{% endfor %}{% if add_generation_prompt %}{{ '<|im_start|>assistant\n' }}{% endif %}",
1508
  "clean_up_tokenization_spaces": false,
1509
  "eos_token": "<eos>",
1510
  "model_max_length": 1000000000000000019884624838656,