File tree Expand file tree Collapse file tree 3 files changed +9
-0
lines changed
site/docs/supported-models/_components/llm-models-table Expand file tree Collapse file tree 3 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -195,6 +195,7 @@ export const LLM_MODELS: LLMModelType[] = [
195195 {
196196 name : 'Exaone' ,
197197 links : [
198+ 'https://huggingface.co/LGAI-EXAONE/EXAONE-4.0-1.2B' ,
198199 'https://huggingface.co/LGAI-EXAONE/EXAONE-3.5-2.4B-Instruct' ,
199200 'https://huggingface.co/LGAI-EXAONE/EXAONE-3.5-7.8B-Instruct' ,
200201 'https://huggingface.co/LGAI-EXAONE/EXAONE-3.5-32B-Instruct' ,
Original file line number Diff line number Diff line change @@ -165,6 +165,13 @@ def get_tokenizer_configs():
165165 "unk_token" : "[UNK]" ,
166166 "chat_template" : "{% for message in messages %}{% if loop.first and message['role'] != 'system' %}{{ '[|system|][|endofturn|]\n ' }}{% endif %}{{ '[|' + message['role'] + '|]' + message['content'] }}{% if message['role'] == 'user' %}{{ '\n ' }}{% else %}{{ '[|endofturn|]\n ' }}{% endif %}{% endfor %}{% if add_generation_prompt %}{{ '[|assistant|]' }}{% endif %}"
167167 },
168+ "LGAI-EXAONE/EXAONE-4.0-1.2B" : {
169+ "bos_token" : "[BOS]" ,
170+ "eos_token" : "[|endofturn|]" ,
171+ "pad_token" : "[PAD]" ,
172+ "unk_token" : "[UNK]" ,
173+ "chat_template" : "{% for message in messages %}{% if loop.first and message['role'] != 'system' %}{{ '[|system|][|endofturn|]\n ' }}{% endif %}{{ '[|' + message['role'] + '|]' + message['content'] }}{% if message['role'] == 'user' %}{{ '\n ' }}{% else %}{{ '[|endofturn|]\n ' }}{% endif %}{% endfor %}{% if add_generation_prompt %}{{ '[|assistant|]' }}{% endif %}"
174+ },
168175 "meta-llama/Llama-2-70b-chat-hf" : {
169176 "bos_token" : "<s>" ,
170177 "eos_token" : "</s>" ,
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ BAAI/AquilaChat2-7B
55CohereForAI/c4ai-command-r-v01
66EleutherAI/gpt-j-6B
77EleutherAI/gpt-j-6b
8+ LGAI-EXAONE/EXAONE-4.0-1.2B
89EleutherAI/gpt-neo-1.3B
910EleutherAI/gpt-neo-125m
1011EleutherAI/gpt-neo-2.7B
You can’t perform that action at this time.
0 commit comments