ChatOn: Update sample meta json to be a valid json

This commit is contained in:
HanishKVC 2024-04-22 21:32:09 +05:30
parent dc56be951d
commit 093abc29a2

View file

@ -3,40 +3,40 @@
"llama2": { "llama2": {
"global": { "global": {
"prefix": "[INST] ", "prefix": "[INST] ",
"suffix": " [/INST]", "suffix": " [/INST]"
}, },
"system": { "system": {
"prefix": " <<SYS>>\n", "prefix": " <<SYS>>\n",
"suffix": "\n<</SYS>>\n\n", "suffix": "\n<</SYS>>\n\n"
}, },
"user": { "user": {
"prefix": "", "prefix": "",
"suffix": "", "suffix": ""
}, },
"assistant": { "assistant": {
"prefix": "", "prefix": "",
"suffix": "", "suffix": ""
}, },
"reverse-prompt": "</s>", "reverse-prompt": "</s>"
}, },
"llama3": { "llama3": {
"global": { "global": {
"prefix": "", "prefix": "",
"suffix": "", "suffix": ""
}, },
"system": { "system": {
"prefix": "<|start_header_id|>system<|end_header_id|>\n\n", "prefix": "<|start_header_id|>system<|end_header_id|>\n\n",
"suffix": "<|eot_id|>\n\n", "suffix": "<|eot_id|>\n\n"
}, },
"user": { "user": {
"prefix": "<|start_header_id|>user<|end_header_id|>\n\n", "prefix": "<|start_header_id|>user<|end_header_id|>\n\n",
"suffix": "<|eot_id|>\n\n", "suffix": "<|eot_id|>\n\n"
}, },
"assistant": { "assistant": {
"prefix": "<|start_header_id|>assistant<|end_header_id|>\n\n", "prefix": "<|start_header_id|>assistant<|end_header_id|>\n\n",
"suffix": "", "suffix": ""
}, },
"reverse-prompt": "<|eot_id|>", "reverse-prompt": "<|eot_id|>"
}, }
} }