mirror of
https://github.com/LostRuins/koboldcpp.git
synced 2025-09-15 11:29:43 +00:00
Chat Adapters (#956)
* Give the CI builds a recognizable AVX1 name * Chat Adapters
This commit is contained in:
parent
d120c55e12
commit
8421243c6d
7 changed files with 48 additions and 0 deletions
8
kcpp_adapters/ChatML.json
Normal file
8
kcpp_adapters/ChatML.json
Normal file
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"system_start":"<|im_start|>system",
|
||||
"system_end":"<|im_end|>",
|
||||
"user_start":"<|im_start|>user",
|
||||
"user_end":"<|im_end|>",
|
||||
"assistant_start":"<|im_start|>assistant",
|
||||
"assistant_end":"<|im_end|>"
|
||||
}
|
8
kcpp_adapters/Command-R.json
Normal file
8
kcpp_adapters/Command-R.json
Normal file
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"system_start":"<|START_OF_TURN_TOKEN|><|SYSTEM_TOKEN|>",
|
||||
"system_end":"<|END_OF_TURN_TOKEN|>",
|
||||
"user_start":"<|START_OF_TURN_TOKEN|><|USER_TOKEN|>",
|
||||
"user_end":"<|END_OF_TURN_TOKEN|>",
|
||||
"assistant_start":"<|START_OF_TURN_TOKEN|><|CHATBOT_TOKEN|>",
|
||||
"assistant_end":"<|END_OF_TURN_TOKEN|>"
|
||||
}
|
8
kcpp_adapters/Llama-2-Chat.json
Normal file
8
kcpp_adapters/Llama-2-Chat.json
Normal file
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"system_start":"",
|
||||
"system_end":"",
|
||||
"user_start":"[INST] ",
|
||||
"user_end":"",
|
||||
"assistant_start":" [/INST]",
|
||||
"assistant_end":""
|
||||
}
|
8
kcpp_adapters/Metharme.json
Normal file
8
kcpp_adapters/Metharme.json
Normal file
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"system_start":"<|system|>",
|
||||
"system_end":"",
|
||||
"user_start":"<|user|>",
|
||||
"user_end":"",
|
||||
"assistant_start":"<|model>",
|
||||
"assistant_end":""
|
||||
}
|
8
kcpp_adapters/Phi-3.json
Normal file
8
kcpp_adapters/Phi-3.json
Normal file
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"system_start":"<|system|>",
|
||||
"system_end":"<|end|>",
|
||||
"user_start":"<|user|>",
|
||||
"user_end":"<|end|>",
|
||||
"assistant_start":"<|assistant|>",
|
||||
"assistant_end":"<|end|>"
|
||||
}
|
8
kcpp_adapters/Vicuna.json
Normal file
8
kcpp_adapters/Vicuna.json
Normal file
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"system_start":"\nSYSTEM: ",
|
||||
"system_end":"",
|
||||
"user_start":"\nUSER: ",
|
||||
"user_end":"",
|
||||
"assistant_start":"\nASSISTANT: ",
|
||||
"assistant_end":""
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue