Anitaliu98 commited on
Commit
a0beb9c
1 Parent(s): c7d9400

Update tokenizer_config.json

Browse files
Files changed (1) hide show
  1. tokenizer_config.json +2 -1
tokenizer_config.json CHANGED
@@ -188,5 +188,6 @@
188
  "split_special_tokens": false,
189
  "tokenizer_class": "LlamaTokenizer",
190
  "unk_token": null,
191
- "use_default_system_prompt": true
 
192
  }
 
188
  "split_special_tokens": false,
189
  "tokenizer_class": "LlamaTokenizer",
190
  "unk_token": null,
191
+ "use_default_system_prompt": true,
192
+ "chat_template": "{% for message in messages %}\n{{'<|im_start|>' + message['role'] + '\n' + message['content'] + '<|im_end|>' + '\n'}}\n{% endfor %}\n{% if add_generation_prompt %}\n{{ '<|im_start|>assistant\n' }}\n{% endif %}"
193
  }