Files
plaifon-3b-chat/tokenizer_config.json
ModelHub XC 68f028e1d5 初始化项目,由ModelHub XC社区提供模型
Model: wannaphong/plaifon-3b-chat
Source: Original Platform
2026-08-28 15:16:06 +08:00

209 lines
7.4 KiB
JSON

{
"add_bos_token": false,
"add_prefix_space": false,
"added_tokens_decoder": {
"151643": {
"content": "<|endoftext|>",
"lstrip": false,
"normalized": false,
"rstrip": false,
"single_word": false,
"special": true
},
"151644": {
"content": "<|im_start|>",
"lstrip": false,
"normalized": false,
"rstrip": false,
"single_word": false,
"special": true
},
"151645": {
"content": "<|im_end|>",
"lstrip": false,
"normalized": false,
"rstrip": false,
"single_word": false,
"special": true
},
"151646": {
"content": "<|object_ref_start|>",
"lstrip": false,
"normalized": false,
"rstrip": false,
"single_word": false,
"special": true
},
"151647": {
"content": "<|object_ref_end|>",
"lstrip": false,
"normalized": false,
"rstrip": false,
"single_word": false,
"special": true
},
"151648": {
"content": "<|box_start|>",
"lstrip": false,
"normalized": false,
"rstrip": false,
"single_word": false,
"special": true
},
"151649": {
"content": "<|box_end|>",
"lstrip": false,
"normalized": false,
"rstrip": false,
"single_word": false,
"special": true
},
"151650": {
"content": "<|quad_start|>",
"lstrip": false,
"normalized": false,
"rstrip": false,
"single_word": false,
"special": true
},
"151651": {
"content": "<|quad_end|>",
"lstrip": false,
"normalized": false,
"rstrip": false,
"single_word": false,
"special": true
},
"151652": {
"content": "<|vision_start|>",
"lstrip": false,
"normalized": false,
"rstrip": false,
"single_word": false,
"special": true
},
"151653": {
"content": "<|vision_end|>",
"lstrip": false,
"normalized": false,
"rstrip": false,
"single_word": false,
"special": true
},
"151654": {
"content": "<|vision_pad|>",
"lstrip": false,
"normalized": false,
"rstrip": false,
"single_word": false,
"special": true
},
"151655": {
"content": "<|image_pad|>",
"lstrip": false,
"normalized": false,
"rstrip": false,
"single_word": false,
"special": true
},
"151656": {
"content": "<|video_pad|>",
"lstrip": false,
"normalized": false,
"rstrip": false,
"single_word": false,
"special": true
},
"151657": {
"content": "<tool_call>",
"lstrip": false,
"normalized": false,
"rstrip": false,
"single_word": false,
"special": false
},
"151658": {
"content": "</tool_call>",
"lstrip": false,
"normalized": false,
"rstrip": false,
"single_word": false,
"special": false
},
"151659": {
"content": "<|fim_prefix|>",
"lstrip": false,
"normalized": false,
"rstrip": false,
"single_word": false,
"special": false
},
"151660": {
"content": "<|fim_middle|>",
"lstrip": false,
"normalized": false,
"rstrip": false,
"single_word": false,
"special": false
},
"151661": {
"content": "<|fim_suffix|>",
"lstrip": false,
"normalized": false,
"rstrip": false,
"single_word": false,
"special": false
},
"151662": {
"content": "<|fim_pad|>",
"lstrip": false,
"normalized": false,
"rstrip": false,
"single_word": false,
"special": false
},
"151663": {
"content": "<|repo_name|>",
"lstrip": false,
"normalized": false,
"rstrip": false,
"single_word": false,
"special": false
},
"151664": {
"content": "<|file_sep|>",
"lstrip": false,
"normalized": false,
"rstrip": false,
"single_word": false,
"special": false
}
},
"additional_special_tokens": [
"<|im_start|>",
"<|im_end|>",
"<|object_ref_start|>",
"<|object_ref_end|>",
"<|box_start|>",
"<|box_end|>",
"<|quad_start|>",
"<|quad_end|>",
"<|vision_start|>",
"<|vision_end|>",
"<|vision_pad|>",
"<|image_pad|>",
"<|video_pad|>"
],
"bos_token": null,
"chat_template": "{%- if messages[0]['role'] == 'system' -%}\n {%- set system_message = messages[0]['content'] -%}\n {%- set loop_messages = messages[1:] -%}\n{%- else -%}\n {%- set system_message = \"You are an AI assistant named PlaiFon or ปลายฝน in Thai.\" -%}\n {%- set loop_messages = messages -%}\n{%- endif -%}\n{{- '<|im_start|>system\\n' + system_message -}}\n{%- if enable_thinking -%}\n {{- '\\n\\nYou are a reasoning model. You must generate a thought process within <think> tags before your final answer.' -}}\n{%- endif -%}\n{%- if tools -%}\n {{- '\\n\\n# Tools\\n\\nYou may call one or more functions to assist with the user query.\\n\\nYou are provided with function signatures within <tools></tools> XML tags:\\n<tools>' -}}\n {%- for tool in tools -%}\n {{- '\\n' -}}\n {{- tool | tojson -}}\n {%- endfor -%}\n {{- '\\n</tools>\\n\\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\\n<tool_call>\\n{\"name\": <function-name>, \"arguments\": <args-json-object>}\\n</tool_call>' -}}\n{%- endif -%}\n{{- '<|im_end|>\\n' -}}\n{%- for message in loop_messages -%}\n {%- if message['role'] == 'user' -%}\n {{- '<|im_start|>user\\n' + message['content'] + '<|im_end|>\\n' -}}\n {%- elif message['role'] == 'assistant' -%}\n {{- '<|im_start|>assistant\\n' -}}\n {#- 1. Handle Explicit Reasoning Fields (if data separates them) -#}\n {%- if message['thought'] -%}\n {{- '<think>\\n' + message['thought'] + '\\n</think>\\n' -}}\n {%- elif message['reasoning_content'] -%}\n {{- '<think>\\n' + message['reasoning_content'] + '\\n</think>\\n' -}}\n {%- endif -%}\n {#- 2. Handle Content (Text or embedded reasoning like in your failing case) -#}\n {%- if message['content'] -%}\n {{- message['content'] -}}\n {%- endif -%}\n {#- 3. Handle Tool Calls (Sequentially, not exclusive) -#}\n {%- if message['tool_calls'] -%}\n {%- for tool_call in message['tool_calls'] -%}\n {%- if tool_call['function'] is defined -%}\n {%- set tool_call = tool_call['function'] -%}\n {%- endif -%}\n {{- '\\n<tool_call>\\n{\"name\": \"' + tool_call.name + '\", \"arguments\": ' + (tool_call.arguments | tojson) + '}\\n</tool_call>' -}}\n {%- endfor -%}\n {%- endif -%}\n {{- '<|im_end|>\\n' -}}\n {%- elif message['role'] == 'tool' -%}\n {{- '<|im_start|>user\\n<tool_response>\\n' + message['content'] + '\\n</tool_response><|im_end|>\\n' -}}\n {%- endif -%}\n{%- endfor -%}\n{%- if add_generation_prompt -%}\n {{- '<|im_start|>assistant\\n' -}}\n {%- if enable_thinking -%}\n {{- '<think>\\n' -}}\n {%- endif -%}\n{%- endif -%}",
"clean_up_tokenization_spaces": false,
"eos_token": "<|im_end|>",
"errors": "replace",
"extra_special_tokens": {},
"model_max_length": 131072,
"pad_token": "<|endoftext|>",
"split_special_tokens": false,
"tokenizer_class": "Qwen2Tokenizer",
"unk_token": null
}