Xenova HF Staff commited on
Commit
2c51097
·
verified ·
1 Parent(s): 5a0a091

Add default chat template to tokenizer_config.json

Browse files

[Automated] This PR adds the default chat template to the tokenizer config, allowing the model to be used with the new conversational widget (see [PR](https://github.com/huggingface/huggingface.js/pull/457)).

If the default is not appropriate for your model, please set `tokenizer.chat_template` to an appropriate template. See https://huggingface.co/docs/transformers/main/chat_templating for more information.

Files changed (1) hide show
  1. tokenizer_config.json +3 -2
tokenizer_config.json CHANGED
@@ -18,5 +18,6 @@
18
  "model_max_length": 1024,
19
  "pad_token": null,
20
  "tokenizer_class": "GPT2Tokenizer",
21
- "unk_token": "<|endoftext|>"
22
- }
 
 
18
  "model_max_length": 1024,
19
  "pad_token": null,
20
  "tokenizer_class": "GPT2Tokenizer",
21
+ "unk_token": "<|endoftext|>",
22
+ "chat_template": "{% for message in messages %}{{ message.content }}{{ eos_token }}{% endfor %}"
23
+ }