RangiLyu commited on
Commit
2f2a02e
1 Parent(s): 0c024ed

add chatml template

Browse files
Files changed (1) hide show
  1. tokenizer_config.json +2 -1
tokenizer_config.json CHANGED
@@ -85,5 +85,6 @@
85
  "single_word": false,
86
  "special": true
87
  }
88
- }
 
89
  }
 
85
  "single_word": false,
86
  "special": true
87
  }
88
+ },
89
+ "chat_template": "{% for message in messages %}{{'<|im_start|>' + message['role'] + '\n' + message['content'] + '<|im_end|>' + '\n'}}{% endfor %}{% if add_generation_prompt %}{{ '<|im_start|>assistant\n' }}{% endif %}"
90
  }