jahhs0n commited on
Commit
b667b1c
1 Parent(s): 566afff

Add chat template in tokenizer_config.json

Browse files

Add chat template in tokenizer_config.json so that we can use tokenizer.apply_chat_template for prompt templating

Sorry for the spam, wasn't able to edit my Pull Request

Files changed (1) hide show
  1. tokenizer_config.json +2 -1
tokenizer_config.json CHANGED
@@ -49,5 +49,6 @@
49
  "pad_token": "<|padding|>",
50
  "sp_model_kwargs": {},
51
  "tokenizer_class": "SEABPETokenizer",
52
- "unk_token": "<unk>"
 
53
  }
 
49
  "pad_token": "<|padding|>",
50
  "sp_model_kwargs": {},
51
  "tokenizer_class": "SEABPETokenizer",
52
+ "unk_token": "<unk>",
53
+ "chat_template": "{% 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'] == 'user' %}### USER:\n{{ message['content'] + '\n\n' }}{% elif message['role'] == 'assistant' %}### RESPONSE:\n{{ message['content'] + '\n\n' }}{% else %}{{ raise_exception('Only user and assistant roles are supported!') }}{% endif %}{% endfor %}{% if add_generation_prompt %}### RESPONSE\n{% endif %}"
54
  }