Text Generation
Transformers
Safetensors
English
qwen3
text-generation-inference
unsloth
conversational
Instructions to use ertghiu256/Qwen3-4B-distill-deepseek-opus-gemini with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use ertghiu256/Qwen3-4B-distill-deepseek-opus-gemini with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="ertghiu256/Qwen3-4B-distill-deepseek-opus-gemini") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("ertghiu256/Qwen3-4B-distill-deepseek-opus-gemini") model = AutoModelForCausalLM.from_pretrained("ertghiu256/Qwen3-4B-distill-deepseek-opus-gemini", device_map="auto") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use ertghiu256/Qwen3-4B-distill-deepseek-opus-gemini with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "ertghiu256/Qwen3-4B-distill-deepseek-opus-gemini" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "ertghiu256/Qwen3-4B-distill-deepseek-opus-gemini", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/ertghiu256/Qwen3-4B-distill-deepseek-opus-gemini
- SGLang
How to use ertghiu256/Qwen3-4B-distill-deepseek-opus-gemini with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "ertghiu256/Qwen3-4B-distill-deepseek-opus-gemini" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "ertghiu256/Qwen3-4B-distill-deepseek-opus-gemini", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "ertghiu256/Qwen3-4B-distill-deepseek-opus-gemini" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "ertghiu256/Qwen3-4B-distill-deepseek-opus-gemini", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Unsloth Desktop
- Docker Model Runner
How to use ertghiu256/Qwen3-4B-distill-deepseek-opus-gemini with Docker Model Runner:
docker model run hf.co/ertghiu256/Qwen3-4B-distill-deepseek-opus-gemini
(Trained with Unsloth)
Browse files- .gitattributes +1 -0
- added_tokens.json +29 -0
- chat_template.jinja +98 -3
- config.json +54 -19
- merges.txt +0 -0
- special_tokens_map.json +17 -22
- tokenizer.json +0 -0
- tokenizer_config.json +89 -624
- vocab.json +0 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
added_tokens.json
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"</think>": 151668,
|
| 3 |
+
"</tool_call>": 151658,
|
| 4 |
+
"</tool_response>": 151666,
|
| 5 |
+
"<think>": 151667,
|
| 6 |
+
"<tool_call>": 151657,
|
| 7 |
+
"<tool_response>": 151665,
|
| 8 |
+
"<|PAD_TOKEN|>": 151669,
|
| 9 |
+
"<|box_end|>": 151649,
|
| 10 |
+
"<|box_start|>": 151648,
|
| 11 |
+
"<|endoftext|>": 151643,
|
| 12 |
+
"<|file_sep|>": 151664,
|
| 13 |
+
"<|fim_middle|>": 151660,
|
| 14 |
+
"<|fim_pad|>": 151662,
|
| 15 |
+
"<|fim_prefix|>": 151659,
|
| 16 |
+
"<|fim_suffix|>": 151661,
|
| 17 |
+
"<|im_end|>": 151645,
|
| 18 |
+
"<|im_start|>": 151644,
|
| 19 |
+
"<|image_pad|>": 151655,
|
| 20 |
+
"<|object_ref_end|>": 151647,
|
| 21 |
+
"<|object_ref_start|>": 151646,
|
| 22 |
+
"<|quad_end|>": 151651,
|
| 23 |
+
"<|quad_start|>": 151650,
|
| 24 |
+
"<|repo_name|>": 151663,
|
| 25 |
+
"<|video_pad|>": 151656,
|
| 26 |
+
"<|vision_end|>": 151653,
|
| 27 |
+
"<|vision_pad|>": 151654,
|
| 28 |
+
"<|vision_start|>": 151652
|
| 29 |
+
}
|
chat_template.jinja
CHANGED
|
@@ -1,3 +1,98 @@
|
|
| 1 |
-
{% if
|
| 2 |
-
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{%- if tools %}
|
| 2 |
+
{{- '<|im_start|>system\n' }}
|
| 3 |
+
{%- if messages[0].role == 'system' %}
|
| 4 |
+
{{- messages[0].content + '\n\n' }}
|
| 5 |
+
{%- endif %}
|
| 6 |
+
{{- "# 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>" }}
|
| 7 |
+
{%- for tool in tools %}
|
| 8 |
+
{{- "\n" }}
|
| 9 |
+
{{- tool | tojson }}
|
| 10 |
+
{%- endfor %}
|
| 11 |
+
{{- "\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><|im_end|>\n" }}
|
| 12 |
+
{%- else %}
|
| 13 |
+
{%- if messages[0].role == 'system' %}
|
| 14 |
+
{{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}
|
| 15 |
+
{%- endif %}
|
| 16 |
+
{%- endif %}
|
| 17 |
+
{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
|
| 18 |
+
{%- for forward_message in messages %}
|
| 19 |
+
{%- set index = (messages|length - 1) - loop.index0 %}
|
| 20 |
+
{%- set message = messages[index] %}
|
| 21 |
+
{%- set current_content = message.content if message.content is not none else '' %}
|
| 22 |
+
{%- set tool_start = '<tool_response>' %}
|
| 23 |
+
{%- set tool_start_length = tool_start|length %}
|
| 24 |
+
{%- set start_of_message = current_content[:tool_start_length] %}
|
| 25 |
+
{%- set tool_end = '</tool_response>' %}
|
| 26 |
+
{%- set tool_end_length = tool_end|length %}
|
| 27 |
+
{%- set start_pos = (current_content|length) - tool_end_length %}
|
| 28 |
+
{%- if start_pos < 0 %}
|
| 29 |
+
{%- set start_pos = 0 %}
|
| 30 |
+
{%- endif %}
|
| 31 |
+
{%- set end_of_message = current_content[start_pos:] %}
|
| 32 |
+
{%- if ns.multi_step_tool and message.role == "user" and not(start_of_message == tool_start and end_of_message == tool_end) %}
|
| 33 |
+
{%- set ns.multi_step_tool = false %}
|
| 34 |
+
{%- set ns.last_query_index = index %}
|
| 35 |
+
{%- endif %}
|
| 36 |
+
{%- endfor %}
|
| 37 |
+
{%- for message in messages %}
|
| 38 |
+
{%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
|
| 39 |
+
{{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }}
|
| 40 |
+
{%- elif message.role == "assistant" %}
|
| 41 |
+
{%- set content = message.content %}
|
| 42 |
+
{%- set reasoning_content = '' %}
|
| 43 |
+
{%- if message.reasoning_content is defined and message.reasoning_content is not none %}
|
| 44 |
+
{%- set reasoning_content = message.reasoning_content %}
|
| 45 |
+
{%- else %}
|
| 46 |
+
{%- if '</think>' in message.content %}
|
| 47 |
+
{%- set content = (message.content.split('</think>')|last).lstrip('\n') %}
|
| 48 |
+
{%- set reasoning_content = (message.content.split('</think>')|first).rstrip('\n') %}
|
| 49 |
+
{%- set reasoning_content = (reasoning_content.split('<think>')|last).lstrip('\n') %}
|
| 50 |
+
{%- endif %}
|
| 51 |
+
{%- endif %}
|
| 52 |
+
{%- if loop.index0 > ns.last_query_index %}
|
| 53 |
+
{%- if loop.last or (not loop.last and reasoning_content) %}
|
| 54 |
+
{{- '<|im_start|>' + message.role + '\n<think>\n' + reasoning_content.strip('\n') + '\n</think>\n\n' + content.lstrip('\n') }}
|
| 55 |
+
{%- else %}
|
| 56 |
+
{{- '<|im_start|>' + message.role + '\n' + content }}
|
| 57 |
+
{%- endif %}
|
| 58 |
+
{%- else %}
|
| 59 |
+
{{- '<|im_start|>' + message.role + '\n' + content }}
|
| 60 |
+
{%- endif %}
|
| 61 |
+
{%- if message.tool_calls %}
|
| 62 |
+
{%- for tool_call in message.tool_calls %}
|
| 63 |
+
{%- if (loop.first and content) or (not loop.first) %}
|
| 64 |
+
{{- '\n' }}
|
| 65 |
+
{%- endif %}
|
| 66 |
+
{%- if tool_call.function %}
|
| 67 |
+
{%- set tool_call = tool_call.function %}
|
| 68 |
+
{%- endif %}
|
| 69 |
+
{{- '<tool_call>\n{"name": "' }}
|
| 70 |
+
{{- tool_call.name }}
|
| 71 |
+
{{- '", "arguments": ' }}
|
| 72 |
+
{%- if tool_call.arguments is string %}
|
| 73 |
+
{{- tool_call.arguments }}
|
| 74 |
+
{%- else %}
|
| 75 |
+
{{- tool_call.arguments | tojson }}
|
| 76 |
+
{%- endif %}
|
| 77 |
+
{{- '}\n</tool_call>' }}
|
| 78 |
+
{%- endfor %}
|
| 79 |
+
{%- endif %}
|
| 80 |
+
{{- '<|im_end|>\n' }}
|
| 81 |
+
{%- elif message.role == "tool" %}
|
| 82 |
+
{%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
|
| 83 |
+
{{- '<|im_start|>user' }}
|
| 84 |
+
{%- endif %}
|
| 85 |
+
{{- '\n<tool_response>\n' }}
|
| 86 |
+
{{- message.content }}
|
| 87 |
+
{{- '\n</tool_response>' }}
|
| 88 |
+
{%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
|
| 89 |
+
{{- '<|im_end|>\n' }}
|
| 90 |
+
{%- endif %}
|
| 91 |
+
{%- endif %}
|
| 92 |
+
{%- endfor %}
|
| 93 |
+
{%- if add_generation_prompt %}
|
| 94 |
+
{{- '<|im_start|>assistant\n' }}
|
| 95 |
+
{%- if enable_thinking is defined and enable_thinking is false %}
|
| 96 |
+
{{- '<think>\n\n</think>\n\n' }}
|
| 97 |
+
{%- endif %}
|
| 98 |
+
{%- endif %}
|
config.json
CHANGED
|
@@ -1,34 +1,69 @@
|
|
| 1 |
{
|
| 2 |
"architectures": [
|
| 3 |
-
"
|
| 4 |
],
|
| 5 |
"attention_bias": false,
|
| 6 |
"attention_dropout": 0.0,
|
| 7 |
-
"attention_multiplier": 0.015625,
|
| 8 |
-
"bos_token_id": 100257,
|
| 9 |
"torch_dtype": "float16",
|
| 10 |
-
"
|
| 11 |
-
"
|
| 12 |
"hidden_act": "silu",
|
| 13 |
"hidden_size": 2560,
|
| 14 |
-
"initializer_range": 0.
|
| 15 |
-
"intermediate_size":
|
| 16 |
-
"
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 23 |
"num_key_value_heads": 8,
|
| 24 |
-
"pad_token_id":
|
| 25 |
-
"
|
| 26 |
-
"rms_norm_eps": 1e-05,
|
| 27 |
"rope_scaling": null,
|
| 28 |
-
"rope_theta":
|
|
|
|
| 29 |
"tie_word_embeddings": true,
|
| 30 |
"unsloth_fixed": true,
|
| 31 |
"unsloth_version": "2026.5.2",
|
| 32 |
"use_cache": true,
|
| 33 |
-
"
|
|
|
|
| 34 |
}
|
|
|
|
| 1 |
{
|
| 2 |
"architectures": [
|
| 3 |
+
"Qwen3ForCausalLM"
|
| 4 |
],
|
| 5 |
"attention_bias": false,
|
| 6 |
"attention_dropout": 0.0,
|
|
|
|
|
|
|
| 7 |
"torch_dtype": "float16",
|
| 8 |
+
"eos_token_id": 151645,
|
| 9 |
+
"head_dim": 128,
|
| 10 |
"hidden_act": "silu",
|
| 11 |
"hidden_size": 2560,
|
| 12 |
+
"initializer_range": 0.02,
|
| 13 |
+
"intermediate_size": 9728,
|
| 14 |
+
"layer_types": [
|
| 15 |
+
"full_attention",
|
| 16 |
+
"full_attention",
|
| 17 |
+
"full_attention",
|
| 18 |
+
"full_attention",
|
| 19 |
+
"full_attention",
|
| 20 |
+
"full_attention",
|
| 21 |
+
"full_attention",
|
| 22 |
+
"full_attention",
|
| 23 |
+
"full_attention",
|
| 24 |
+
"full_attention",
|
| 25 |
+
"full_attention",
|
| 26 |
+
"full_attention",
|
| 27 |
+
"full_attention",
|
| 28 |
+
"full_attention",
|
| 29 |
+
"full_attention",
|
| 30 |
+
"full_attention",
|
| 31 |
+
"full_attention",
|
| 32 |
+
"full_attention",
|
| 33 |
+
"full_attention",
|
| 34 |
+
"full_attention",
|
| 35 |
+
"full_attention",
|
| 36 |
+
"full_attention",
|
| 37 |
+
"full_attention",
|
| 38 |
+
"full_attention",
|
| 39 |
+
"full_attention",
|
| 40 |
+
"full_attention",
|
| 41 |
+
"full_attention",
|
| 42 |
+
"full_attention",
|
| 43 |
+
"full_attention",
|
| 44 |
+
"full_attention",
|
| 45 |
+
"full_attention",
|
| 46 |
+
"full_attention",
|
| 47 |
+
"full_attention",
|
| 48 |
+
"full_attention",
|
| 49 |
+
"full_attention",
|
| 50 |
+
"full_attention"
|
| 51 |
+
],
|
| 52 |
+
"max_position_embeddings": 40960,
|
| 53 |
+
"max_window_layers": 36,
|
| 54 |
+
"model_type": "qwen3",
|
| 55 |
+
"num_attention_heads": 32,
|
| 56 |
+
"num_hidden_layers": 36,
|
| 57 |
"num_key_value_heads": 8,
|
| 58 |
+
"pad_token_id": 151669,
|
| 59 |
+
"rms_norm_eps": 1e-06,
|
|
|
|
| 60 |
"rope_scaling": null,
|
| 61 |
+
"rope_theta": 1000000,
|
| 62 |
+
"sliding_window": null,
|
| 63 |
"tie_word_embeddings": true,
|
| 64 |
"unsloth_fixed": true,
|
| 65 |
"unsloth_version": "2026.5.2",
|
| 66 |
"use_cache": true,
|
| 67 |
+
"use_sliding_window": false,
|
| 68 |
+
"vocab_size": 151936
|
| 69 |
}
|
merges.txt
CHANGED
|
The diff for this file is too large to render.
See raw diff
|
|
|
special_tokens_map.json
CHANGED
|
@@ -1,30 +1,25 @@
|
|
| 1 |
{
|
| 2 |
-
"
|
| 3 |
-
"
|
| 4 |
-
"
|
| 5 |
-
"
|
| 6 |
-
"
|
| 7 |
-
"
|
| 8 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9 |
"eos_token": {
|
| 10 |
-
"content": "<|
|
| 11 |
-
"lstrip": false,
|
| 12 |
-
"normalized": false,
|
| 13 |
-
"rstrip": false,
|
| 14 |
-
"single_word": false
|
| 15 |
-
},
|
| 16 |
-
"pad_token": {
|
| 17 |
-
"content": "<|pad|>",
|
| 18 |
"lstrip": false,
|
| 19 |
"normalized": false,
|
| 20 |
"rstrip": false,
|
| 21 |
"single_word": false
|
| 22 |
},
|
| 23 |
-
"
|
| 24 |
-
"content": "<|unk|>",
|
| 25 |
-
"lstrip": false,
|
| 26 |
-
"normalized": false,
|
| 27 |
-
"rstrip": false,
|
| 28 |
-
"single_word": false
|
| 29 |
-
}
|
| 30 |
}
|
|
|
|
| 1 |
{
|
| 2 |
+
"additional_special_tokens": [
|
| 3 |
+
"<|im_start|>",
|
| 4 |
+
"<|im_end|>",
|
| 5 |
+
"<|object_ref_start|>",
|
| 6 |
+
"<|object_ref_end|>",
|
| 7 |
+
"<|box_start|>",
|
| 8 |
+
"<|box_end|>",
|
| 9 |
+
"<|quad_start|>",
|
| 10 |
+
"<|quad_end|>",
|
| 11 |
+
"<|vision_start|>",
|
| 12 |
+
"<|vision_end|>",
|
| 13 |
+
"<|vision_pad|>",
|
| 14 |
+
"<|image_pad|>",
|
| 15 |
+
"<|video_pad|>"
|
| 16 |
+
],
|
| 17 |
"eos_token": {
|
| 18 |
+
"content": "<|im_end|>",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 19 |
"lstrip": false,
|
| 20 |
"normalized": false,
|
| 21 |
"rstrip": false,
|
| 22 |
"single_word": false
|
| 23 |
},
|
| 24 |
+
"pad_token": "<|PAD_TOKEN|>"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 25 |
}
|
tokenizer.json
CHANGED
|
The diff for this file is too large to render.
See raw diff
|
|
|
tokenizer_config.json
CHANGED
|
@@ -2,119 +2,119 @@
|
|
| 2 |
"add_bos_token": false,
|
| 3 |
"add_prefix_space": false,
|
| 4 |
"added_tokens_decoder": {
|
| 5 |
-
"
|
| 6 |
-
"content": "<|
|
| 7 |
"lstrip": false,
|
| 8 |
"normalized": false,
|
| 9 |
"rstrip": false,
|
| 10 |
"single_word": false,
|
| 11 |
"special": true
|
| 12 |
},
|
| 13 |
-
"
|
| 14 |
-
"content": "<|
|
| 15 |
"lstrip": false,
|
| 16 |
"normalized": false,
|
| 17 |
"rstrip": false,
|
| 18 |
"single_word": false,
|
| 19 |
"special": true
|
| 20 |
},
|
| 21 |
-
"
|
| 22 |
-
"content": "<|
|
| 23 |
"lstrip": false,
|
| 24 |
"normalized": false,
|
| 25 |
"rstrip": false,
|
| 26 |
"single_word": false,
|
| 27 |
-
"special":
|
| 28 |
},
|
| 29 |
-
"
|
| 30 |
-
"content": "<|
|
| 31 |
"lstrip": false,
|
| 32 |
"normalized": false,
|
| 33 |
"rstrip": false,
|
| 34 |
"single_word": false,
|
| 35 |
-
"special":
|
| 36 |
},
|
| 37 |
-
"
|
| 38 |
-
"content": "<|
|
| 39 |
"lstrip": false,
|
| 40 |
"normalized": false,
|
| 41 |
"rstrip": false,
|
| 42 |
"single_word": false,
|
| 43 |
-
"special":
|
| 44 |
},
|
| 45 |
-
"
|
| 46 |
-
"content": "<|
|
| 47 |
"lstrip": false,
|
| 48 |
"normalized": false,
|
| 49 |
"rstrip": false,
|
| 50 |
"single_word": false,
|
| 51 |
-
"special":
|
| 52 |
},
|
| 53 |
-
"
|
| 54 |
-
"content": "<|
|
| 55 |
"lstrip": false,
|
| 56 |
"normalized": false,
|
| 57 |
"rstrip": false,
|
| 58 |
"single_word": false,
|
| 59 |
-
"special":
|
| 60 |
},
|
| 61 |
-
"
|
| 62 |
-
"content": "<|
|
| 63 |
"lstrip": false,
|
| 64 |
"normalized": false,
|
| 65 |
"rstrip": false,
|
| 66 |
"single_word": false,
|
| 67 |
-
"special":
|
| 68 |
},
|
| 69 |
-
"
|
| 70 |
-
"content": "<|
|
| 71 |
"lstrip": false,
|
| 72 |
"normalized": false,
|
| 73 |
"rstrip": false,
|
| 74 |
"single_word": false,
|
| 75 |
"special": true
|
| 76 |
},
|
| 77 |
-
"
|
| 78 |
-
"content": "<|
|
| 79 |
"lstrip": false,
|
| 80 |
"normalized": false,
|
| 81 |
"rstrip": false,
|
| 82 |
"single_word": false,
|
| 83 |
"special": true
|
| 84 |
},
|
| 85 |
-
"
|
| 86 |
-
"content": "<|
|
| 87 |
"lstrip": false,
|
| 88 |
"normalized": false,
|
| 89 |
"rstrip": false,
|
| 90 |
"single_word": false,
|
| 91 |
"special": true
|
| 92 |
},
|
| 93 |
-
"
|
| 94 |
-
"content": "<|
|
| 95 |
"lstrip": false,
|
| 96 |
"normalized": false,
|
| 97 |
"rstrip": false,
|
| 98 |
"single_word": false,
|
| 99 |
"special": true
|
| 100 |
},
|
| 101 |
-
"
|
| 102 |
-
"content": "<|
|
| 103 |
"lstrip": false,
|
| 104 |
"normalized": false,
|
| 105 |
"rstrip": false,
|
| 106 |
"single_word": false,
|
| 107 |
"special": true
|
| 108 |
},
|
| 109 |
-
"
|
| 110 |
-
"content": "<|
|
| 111 |
"lstrip": false,
|
| 112 |
"normalized": false,
|
| 113 |
"rstrip": false,
|
| 114 |
"single_word": false,
|
| 115 |
"special": true
|
| 116 |
},
|
| 117 |
-
"
|
| 118 |
"content": "<tool_call>",
|
| 119 |
"lstrip": false,
|
| 120 |
"normalized": false,
|
|
@@ -122,7 +122,7 @@
|
|
| 122 |
"single_word": false,
|
| 123 |
"special": false
|
| 124 |
},
|
| 125 |
-
"
|
| 126 |
"content": "</tool_call>",
|
| 127 |
"lstrip": false,
|
| 128 |
"normalized": false,
|
|
@@ -130,640 +130,88 @@
|
|
| 130 |
"single_word": false,
|
| 131 |
"special": false
|
| 132 |
},
|
| 133 |
-
"
|
| 134 |
-
"content": "<
|
| 135 |
"lstrip": false,
|
| 136 |
"normalized": false,
|
| 137 |
"rstrip": false,
|
| 138 |
"single_word": false,
|
| 139 |
"special": false
|
| 140 |
},
|
| 141 |
-
"
|
| 142 |
-
"content": "<
|
| 143 |
"lstrip": false,
|
| 144 |
"normalized": false,
|
| 145 |
"rstrip": false,
|
| 146 |
"single_word": false,
|
| 147 |
"special": false
|
| 148 |
},
|
| 149 |
-
"
|
| 150 |
-
"content": "<
|
| 151 |
"lstrip": false,
|
| 152 |
"normalized": false,
|
| 153 |
"rstrip": false,
|
| 154 |
"single_word": false,
|
| 155 |
"special": false
|
| 156 |
},
|
| 157 |
-
"
|
| 158 |
-
"content": "<
|
| 159 |
"lstrip": false,
|
| 160 |
"normalized": false,
|
| 161 |
"rstrip": false,
|
| 162 |
"single_word": false,
|
| 163 |
"special": false
|
| 164 |
},
|
| 165 |
-
"
|
| 166 |
-
"content": "<
|
| 167 |
-
"lstrip": false,
|
| 168 |
-
"normalized": false,
|
| 169 |
-
"rstrip": false,
|
| 170 |
-
"single_word": false,
|
| 171 |
-
"special": true
|
| 172 |
-
},
|
| 173 |
-
"100277": {
|
| 174 |
-
"content": "<think_off>",
|
| 175 |
-
"lstrip": false,
|
| 176 |
-
"normalized": false,
|
| 177 |
-
"rstrip": false,
|
| 178 |
-
"single_word": false,
|
| 179 |
-
"special": true
|
| 180 |
-
},
|
| 181 |
-
"100278": {
|
| 182 |
-
"content": "<schema>",
|
| 183 |
-
"lstrip": false,
|
| 184 |
-
"normalized": false,
|
| 185 |
-
"rstrip": false,
|
| 186 |
-
"single_word": false,
|
| 187 |
-
"special": true
|
| 188 |
-
},
|
| 189 |
-
"100279": {
|
| 190 |
-
"content": "</schema>",
|
| 191 |
-
"lstrip": false,
|
| 192 |
-
"normalized": false,
|
| 193 |
-
"rstrip": false,
|
| 194 |
-
"single_word": false,
|
| 195 |
-
"special": true
|
| 196 |
-
},
|
| 197 |
-
"100280": {
|
| 198 |
-
"content": "<tools>",
|
| 199 |
-
"lstrip": false,
|
| 200 |
-
"normalized": false,
|
| 201 |
-
"rstrip": false,
|
| 202 |
-
"single_word": false,
|
| 203 |
-
"special": true
|
| 204 |
-
},
|
| 205 |
-
"100281": {
|
| 206 |
-
"content": "</tools>",
|
| 207 |
-
"lstrip": false,
|
| 208 |
-
"normalized": false,
|
| 209 |
-
"rstrip": false,
|
| 210 |
-
"single_word": false,
|
| 211 |
-
"special": true
|
| 212 |
-
},
|
| 213 |
-
"100282": {
|
| 214 |
-
"content": "<documents>",
|
| 215 |
-
"lstrip": false,
|
| 216 |
-
"normalized": false,
|
| 217 |
-
"rstrip": false,
|
| 218 |
-
"single_word": false,
|
| 219 |
-
"special": true
|
| 220 |
-
},
|
| 221 |
-
"100283": {
|
| 222 |
-
"content": "</documents>",
|
| 223 |
-
"lstrip": false,
|
| 224 |
-
"normalized": false,
|
| 225 |
-
"rstrip": false,
|
| 226 |
-
"single_word": false,
|
| 227 |
-
"special": true
|
| 228 |
-
},
|
| 229 |
-
"100284": {
|
| 230 |
-
"content": "<|unused_15|>",
|
| 231 |
-
"lstrip": false,
|
| 232 |
-
"normalized": false,
|
| 233 |
-
"rstrip": false,
|
| 234 |
-
"single_word": false,
|
| 235 |
-
"special": true
|
| 236 |
-
},
|
| 237 |
-
"100285": {
|
| 238 |
-
"content": "<|unused_16|>",
|
| 239 |
-
"lstrip": false,
|
| 240 |
-
"normalized": false,
|
| 241 |
-
"rstrip": false,
|
| 242 |
-
"single_word": false,
|
| 243 |
-
"special": true
|
| 244 |
-
},
|
| 245 |
-
"100286": {
|
| 246 |
-
"content": "<|unused_17|>",
|
| 247 |
-
"lstrip": false,
|
| 248 |
-
"normalized": false,
|
| 249 |
-
"rstrip": false,
|
| 250 |
-
"single_word": false,
|
| 251 |
-
"special": true
|
| 252 |
-
},
|
| 253 |
-
"100287": {
|
| 254 |
-
"content": "<|unused_18|>",
|
| 255 |
-
"lstrip": false,
|
| 256 |
-
"normalized": false,
|
| 257 |
-
"rstrip": false,
|
| 258 |
-
"single_word": false,
|
| 259 |
-
"special": true
|
| 260 |
-
},
|
| 261 |
-
"100288": {
|
| 262 |
-
"content": "<|unused_19|>",
|
| 263 |
-
"lstrip": false,
|
| 264 |
-
"normalized": false,
|
| 265 |
-
"rstrip": false,
|
| 266 |
-
"single_word": false,
|
| 267 |
-
"special": true
|
| 268 |
-
},
|
| 269 |
-
"100289": {
|
| 270 |
-
"content": "<|unused_20|>",
|
| 271 |
-
"lstrip": false,
|
| 272 |
-
"normalized": false,
|
| 273 |
-
"rstrip": false,
|
| 274 |
-
"single_word": false,
|
| 275 |
-
"special": true
|
| 276 |
-
},
|
| 277 |
-
"100290": {
|
| 278 |
-
"content": "<|unused_21|>",
|
| 279 |
-
"lstrip": false,
|
| 280 |
-
"normalized": false,
|
| 281 |
-
"rstrip": false,
|
| 282 |
-
"single_word": false,
|
| 283 |
-
"special": true
|
| 284 |
-
},
|
| 285 |
-
"100291": {
|
| 286 |
-
"content": "<|unused_22|>",
|
| 287 |
-
"lstrip": false,
|
| 288 |
-
"normalized": false,
|
| 289 |
-
"rstrip": false,
|
| 290 |
-
"single_word": false,
|
| 291 |
-
"special": true
|
| 292 |
-
},
|
| 293 |
-
"100292": {
|
| 294 |
-
"content": "<|unused_23|>",
|
| 295 |
-
"lstrip": false,
|
| 296 |
-
"normalized": false,
|
| 297 |
-
"rstrip": false,
|
| 298 |
-
"single_word": false,
|
| 299 |
-
"special": true
|
| 300 |
-
},
|
| 301 |
-
"100293": {
|
| 302 |
-
"content": "<|unused_24|>",
|
| 303 |
-
"lstrip": false,
|
| 304 |
-
"normalized": false,
|
| 305 |
-
"rstrip": false,
|
| 306 |
-
"single_word": false,
|
| 307 |
-
"special": true
|
| 308 |
-
},
|
| 309 |
-
"100294": {
|
| 310 |
-
"content": "<|unused_25|>",
|
| 311 |
-
"lstrip": false,
|
| 312 |
-
"normalized": false,
|
| 313 |
-
"rstrip": false,
|
| 314 |
-
"single_word": false,
|
| 315 |
-
"special": true
|
| 316 |
-
},
|
| 317 |
-
"100295": {
|
| 318 |
-
"content": "<|unused_26|>",
|
| 319 |
-
"lstrip": false,
|
| 320 |
-
"normalized": false,
|
| 321 |
-
"rstrip": false,
|
| 322 |
-
"single_word": false,
|
| 323 |
-
"special": true
|
| 324 |
-
},
|
| 325 |
-
"100296": {
|
| 326 |
-
"content": "<|unused_27|>",
|
| 327 |
-
"lstrip": false,
|
| 328 |
-
"normalized": false,
|
| 329 |
-
"rstrip": false,
|
| 330 |
-
"single_word": false,
|
| 331 |
-
"special": true
|
| 332 |
-
},
|
| 333 |
-
"100297": {
|
| 334 |
-
"content": "<|unused_28|>",
|
| 335 |
-
"lstrip": false,
|
| 336 |
-
"normalized": false,
|
| 337 |
-
"rstrip": false,
|
| 338 |
-
"single_word": false,
|
| 339 |
-
"special": true
|
| 340 |
-
},
|
| 341 |
-
"100298": {
|
| 342 |
-
"content": "<|unused_29|>",
|
| 343 |
-
"lstrip": false,
|
| 344 |
-
"normalized": false,
|
| 345 |
-
"rstrip": false,
|
| 346 |
-
"single_word": false,
|
| 347 |
-
"special": true
|
| 348 |
-
},
|
| 349 |
-
"100299": {
|
| 350 |
-
"content": "<|unused_30|>",
|
| 351 |
-
"lstrip": false,
|
| 352 |
-
"normalized": false,
|
| 353 |
-
"rstrip": false,
|
| 354 |
-
"single_word": false,
|
| 355 |
-
"special": true
|
| 356 |
-
},
|
| 357 |
-
"100300": {
|
| 358 |
-
"content": "<|unused_31|>",
|
| 359 |
-
"lstrip": false,
|
| 360 |
-
"normalized": false,
|
| 361 |
-
"rstrip": false,
|
| 362 |
-
"single_word": false,
|
| 363 |
-
"special": true
|
| 364 |
-
},
|
| 365 |
-
"100301": {
|
| 366 |
-
"content": "<|unused_32|>",
|
| 367 |
-
"lstrip": false,
|
| 368 |
-
"normalized": false,
|
| 369 |
-
"rstrip": false,
|
| 370 |
-
"single_word": false,
|
| 371 |
-
"special": true
|
| 372 |
-
},
|
| 373 |
-
"100302": {
|
| 374 |
-
"content": "<|unused_33|>",
|
| 375 |
-
"lstrip": false,
|
| 376 |
-
"normalized": false,
|
| 377 |
-
"rstrip": false,
|
| 378 |
-
"single_word": false,
|
| 379 |
-
"special": true
|
| 380 |
-
},
|
| 381 |
-
"100303": {
|
| 382 |
-
"content": "<|unused_34|>",
|
| 383 |
-
"lstrip": false,
|
| 384 |
-
"normalized": false,
|
| 385 |
-
"rstrip": false,
|
| 386 |
-
"single_word": false,
|
| 387 |
-
"special": true
|
| 388 |
-
},
|
| 389 |
-
"100304": {
|
| 390 |
-
"content": "<|unused_35|>",
|
| 391 |
-
"lstrip": false,
|
| 392 |
-
"normalized": false,
|
| 393 |
-
"rstrip": false,
|
| 394 |
-
"single_word": false,
|
| 395 |
-
"special": true
|
| 396 |
-
},
|
| 397 |
-
"100305": {
|
| 398 |
-
"content": "<|unused_36|>",
|
| 399 |
-
"lstrip": false,
|
| 400 |
-
"normalized": false,
|
| 401 |
-
"rstrip": false,
|
| 402 |
-
"single_word": false,
|
| 403 |
-
"special": true
|
| 404 |
-
},
|
| 405 |
-
"100306": {
|
| 406 |
-
"content": "<|unused_37|>",
|
| 407 |
-
"lstrip": false,
|
| 408 |
-
"normalized": false,
|
| 409 |
-
"rstrip": false,
|
| 410 |
-
"single_word": false,
|
| 411 |
-
"special": true
|
| 412 |
-
},
|
| 413 |
-
"100307": {
|
| 414 |
-
"content": "<|unused_38|>",
|
| 415 |
-
"lstrip": false,
|
| 416 |
-
"normalized": false,
|
| 417 |
-
"rstrip": false,
|
| 418 |
-
"single_word": false,
|
| 419 |
-
"special": true
|
| 420 |
-
},
|
| 421 |
-
"100308": {
|
| 422 |
-
"content": "<|unused_39|>",
|
| 423 |
-
"lstrip": false,
|
| 424 |
-
"normalized": false,
|
| 425 |
-
"rstrip": false,
|
| 426 |
-
"single_word": false,
|
| 427 |
-
"special": true
|
| 428 |
-
},
|
| 429 |
-
"100309": {
|
| 430 |
-
"content": "<|unused_40|>",
|
| 431 |
-
"lstrip": false,
|
| 432 |
-
"normalized": false,
|
| 433 |
-
"rstrip": false,
|
| 434 |
-
"single_word": false,
|
| 435 |
-
"special": true
|
| 436 |
-
},
|
| 437 |
-
"100310": {
|
| 438 |
-
"content": "<|unused_41|>",
|
| 439 |
-
"lstrip": false,
|
| 440 |
-
"normalized": false,
|
| 441 |
-
"rstrip": false,
|
| 442 |
-
"single_word": false,
|
| 443 |
-
"special": true
|
| 444 |
-
},
|
| 445 |
-
"100311": {
|
| 446 |
-
"content": "<|unused_42|>",
|
| 447 |
-
"lstrip": false,
|
| 448 |
-
"normalized": false,
|
| 449 |
-
"rstrip": false,
|
| 450 |
-
"single_word": false,
|
| 451 |
-
"special": true
|
| 452 |
-
},
|
| 453 |
-
"100312": {
|
| 454 |
-
"content": "<|unused_43|>",
|
| 455 |
-
"lstrip": false,
|
| 456 |
-
"normalized": false,
|
| 457 |
-
"rstrip": false,
|
| 458 |
-
"single_word": false,
|
| 459 |
-
"special": true
|
| 460 |
-
},
|
| 461 |
-
"100313": {
|
| 462 |
-
"content": "<|unused_44|>",
|
| 463 |
-
"lstrip": false,
|
| 464 |
-
"normalized": false,
|
| 465 |
-
"rstrip": false,
|
| 466 |
-
"single_word": false,
|
| 467 |
-
"special": true
|
| 468 |
-
},
|
| 469 |
-
"100314": {
|
| 470 |
-
"content": "<|unused_45|>",
|
| 471 |
-
"lstrip": false,
|
| 472 |
-
"normalized": false,
|
| 473 |
-
"rstrip": false,
|
| 474 |
-
"single_word": false,
|
| 475 |
-
"special": true
|
| 476 |
-
},
|
| 477 |
-
"100315": {
|
| 478 |
-
"content": "<|unused_46|>",
|
| 479 |
-
"lstrip": false,
|
| 480 |
-
"normalized": false,
|
| 481 |
-
"rstrip": false,
|
| 482 |
-
"single_word": false,
|
| 483 |
-
"special": true
|
| 484 |
-
},
|
| 485 |
-
"100316": {
|
| 486 |
-
"content": "<|unused_47|>",
|
| 487 |
-
"lstrip": false,
|
| 488 |
-
"normalized": false,
|
| 489 |
-
"rstrip": false,
|
| 490 |
-
"single_word": false,
|
| 491 |
-
"special": true
|
| 492 |
-
},
|
| 493 |
-
"100317": {
|
| 494 |
-
"content": "<|unused_48|>",
|
| 495 |
-
"lstrip": false,
|
| 496 |
-
"normalized": false,
|
| 497 |
-
"rstrip": false,
|
| 498 |
-
"single_word": false,
|
| 499 |
-
"special": true
|
| 500 |
-
},
|
| 501 |
-
"100318": {
|
| 502 |
-
"content": "<|unused_49|>",
|
| 503 |
-
"lstrip": false,
|
| 504 |
-
"normalized": false,
|
| 505 |
-
"rstrip": false,
|
| 506 |
-
"single_word": false,
|
| 507 |
-
"special": true
|
| 508 |
-
},
|
| 509 |
-
"100319": {
|
| 510 |
-
"content": "<|unused_50|>",
|
| 511 |
-
"lstrip": false,
|
| 512 |
-
"normalized": false,
|
| 513 |
-
"rstrip": false,
|
| 514 |
-
"single_word": false,
|
| 515 |
-
"special": true
|
| 516 |
-
},
|
| 517 |
-
"100320": {
|
| 518 |
-
"content": "<|unused_51|>",
|
| 519 |
"lstrip": false,
|
| 520 |
"normalized": false,
|
| 521 |
"rstrip": false,
|
| 522 |
"single_word": false,
|
| 523 |
-
"special":
|
| 524 |
-
},
|
| 525 |
-
"100321": {
|
| 526 |
-
"content": "<|unused_52|>",
|
| 527 |
-
"lstrip": false,
|
| 528 |
-
"normalized": false,
|
| 529 |
-
"rstrip": false,
|
| 530 |
-
"single_word": false,
|
| 531 |
-
"special": true
|
| 532 |
-
},
|
| 533 |
-
"100322": {
|
| 534 |
-
"content": "<|unused_53|>",
|
| 535 |
-
"lstrip": false,
|
| 536 |
-
"normalized": false,
|
| 537 |
-
"rstrip": false,
|
| 538 |
-
"single_word": false,
|
| 539 |
-
"special": true
|
| 540 |
-
},
|
| 541 |
-
"100323": {
|
| 542 |
-
"content": "<|unused_54|>",
|
| 543 |
-
"lstrip": false,
|
| 544 |
-
"normalized": false,
|
| 545 |
-
"rstrip": false,
|
| 546 |
-
"single_word": false,
|
| 547 |
-
"special": true
|
| 548 |
-
},
|
| 549 |
-
"100324": {
|
| 550 |
-
"content": "<|unused_55|>",
|
| 551 |
-
"lstrip": false,
|
| 552 |
-
"normalized": false,
|
| 553 |
-
"rstrip": false,
|
| 554 |
-
"single_word": false,
|
| 555 |
-
"special": true
|
| 556 |
-
},
|
| 557 |
-
"100325": {
|
| 558 |
-
"content": "<|unused_56|>",
|
| 559 |
-
"lstrip": false,
|
| 560 |
-
"normalized": false,
|
| 561 |
-
"rstrip": false,
|
| 562 |
-
"single_word": false,
|
| 563 |
-
"special": true
|
| 564 |
-
},
|
| 565 |
-
"100326": {
|
| 566 |
-
"content": "<|unused_57|>",
|
| 567 |
-
"lstrip": false,
|
| 568 |
-
"normalized": false,
|
| 569 |
-
"rstrip": false,
|
| 570 |
-
"single_word": false,
|
| 571 |
-
"special": true
|
| 572 |
-
},
|
| 573 |
-
"100327": {
|
| 574 |
-
"content": "<|unused_58|>",
|
| 575 |
-
"lstrip": false,
|
| 576 |
-
"normalized": false,
|
| 577 |
-
"rstrip": false,
|
| 578 |
-
"single_word": false,
|
| 579 |
-
"special": true
|
| 580 |
-
},
|
| 581 |
-
"100328": {
|
| 582 |
-
"content": "<|unused_59|>",
|
| 583 |
-
"lstrip": false,
|
| 584 |
-
"normalized": false,
|
| 585 |
-
"rstrip": false,
|
| 586 |
-
"single_word": false,
|
| 587 |
-
"special": true
|
| 588 |
-
},
|
| 589 |
-
"100329": {
|
| 590 |
-
"content": "<|unused_60|>",
|
| 591 |
-
"lstrip": false,
|
| 592 |
-
"normalized": false,
|
| 593 |
-
"rstrip": false,
|
| 594 |
-
"single_word": false,
|
| 595 |
-
"special": true
|
| 596 |
-
},
|
| 597 |
-
"100330": {
|
| 598 |
-
"content": "<|unused_61|>",
|
| 599 |
-
"lstrip": false,
|
| 600 |
-
"normalized": false,
|
| 601 |
-
"rstrip": false,
|
| 602 |
-
"single_word": false,
|
| 603 |
-
"special": true
|
| 604 |
-
},
|
| 605 |
-
"100331": {
|
| 606 |
-
"content": "<|unused_62|>",
|
| 607 |
-
"lstrip": false,
|
| 608 |
-
"normalized": false,
|
| 609 |
-
"rstrip": false,
|
| 610 |
-
"single_word": false,
|
| 611 |
-
"special": true
|
| 612 |
-
},
|
| 613 |
-
"100332": {
|
| 614 |
-
"content": "<|unused_63|>",
|
| 615 |
-
"lstrip": false,
|
| 616 |
-
"normalized": false,
|
| 617 |
-
"rstrip": false,
|
| 618 |
-
"single_word": false,
|
| 619 |
-
"special": true
|
| 620 |
-
},
|
| 621 |
-
"100333": {
|
| 622 |
-
"content": "<|unused_64|>",
|
| 623 |
-
"lstrip": false,
|
| 624 |
-
"normalized": false,
|
| 625 |
-
"rstrip": false,
|
| 626 |
-
"single_word": false,
|
| 627 |
-
"special": true
|
| 628 |
-
},
|
| 629 |
-
"100334": {
|
| 630 |
-
"content": "<|unused_65|>",
|
| 631 |
-
"lstrip": false,
|
| 632 |
-
"normalized": false,
|
| 633 |
-
"rstrip": false,
|
| 634 |
-
"single_word": false,
|
| 635 |
-
"special": true
|
| 636 |
-
},
|
| 637 |
-
"100335": {
|
| 638 |
-
"content": "<|unused_66|>",
|
| 639 |
-
"lstrip": false,
|
| 640 |
-
"normalized": false,
|
| 641 |
-
"rstrip": false,
|
| 642 |
-
"single_word": false,
|
| 643 |
-
"special": true
|
| 644 |
-
},
|
| 645 |
-
"100336": {
|
| 646 |
-
"content": "<|unused_67|>",
|
| 647 |
-
"lstrip": false,
|
| 648 |
-
"normalized": false,
|
| 649 |
-
"rstrip": false,
|
| 650 |
-
"single_word": false,
|
| 651 |
-
"special": true
|
| 652 |
-
},
|
| 653 |
-
"100337": {
|
| 654 |
-
"content": "<|unused_68|>",
|
| 655 |
-
"lstrip": false,
|
| 656 |
-
"normalized": false,
|
| 657 |
-
"rstrip": false,
|
| 658 |
-
"single_word": false,
|
| 659 |
-
"special": true
|
| 660 |
-
},
|
| 661 |
-
"100338": {
|
| 662 |
-
"content": "<|unused_69|>",
|
| 663 |
-
"lstrip": false,
|
| 664 |
-
"normalized": false,
|
| 665 |
-
"rstrip": false,
|
| 666 |
-
"single_word": false,
|
| 667 |
-
"special": true
|
| 668 |
-
},
|
| 669 |
-
"100339": {
|
| 670 |
-
"content": "<|unused_70|>",
|
| 671 |
-
"lstrip": false,
|
| 672 |
-
"normalized": false,
|
| 673 |
-
"rstrip": false,
|
| 674 |
-
"single_word": false,
|
| 675 |
-
"special": true
|
| 676 |
-
},
|
| 677 |
-
"100340": {
|
| 678 |
-
"content": "<|unused_71|>",
|
| 679 |
-
"lstrip": false,
|
| 680 |
-
"normalized": false,
|
| 681 |
-
"rstrip": false,
|
| 682 |
-
"single_word": false,
|
| 683 |
-
"special": true
|
| 684 |
-
},
|
| 685 |
-
"100341": {
|
| 686 |
-
"content": "<|unused_72|>",
|
| 687 |
-
"lstrip": false,
|
| 688 |
-
"normalized": false,
|
| 689 |
-
"rstrip": false,
|
| 690 |
-
"single_word": false,
|
| 691 |
-
"special": true
|
| 692 |
-
},
|
| 693 |
-
"100342": {
|
| 694 |
-
"content": "<|unused_73|>",
|
| 695 |
-
"lstrip": false,
|
| 696 |
-
"normalized": false,
|
| 697 |
-
"rstrip": false,
|
| 698 |
-
"single_word": false,
|
| 699 |
-
"special": true
|
| 700 |
-
},
|
| 701 |
-
"100343": {
|
| 702 |
-
"content": "<|unused_74|>",
|
| 703 |
-
"lstrip": false,
|
| 704 |
-
"normalized": false,
|
| 705 |
-
"rstrip": false,
|
| 706 |
-
"single_word": false,
|
| 707 |
-
"special": true
|
| 708 |
-
},
|
| 709 |
-
"100344": {
|
| 710 |
-
"content": "<|unused_75|>",
|
| 711 |
-
"lstrip": false,
|
| 712 |
-
"normalized": false,
|
| 713 |
-
"rstrip": false,
|
| 714 |
-
"single_word": false,
|
| 715 |
-
"special": true
|
| 716 |
-
},
|
| 717 |
-
"100345": {
|
| 718 |
-
"content": "<|unused_76|>",
|
| 719 |
-
"lstrip": false,
|
| 720 |
-
"normalized": false,
|
| 721 |
-
"rstrip": false,
|
| 722 |
-
"single_word": false,
|
| 723 |
-
"special": true
|
| 724 |
},
|
| 725 |
-
"
|
| 726 |
-
"content": "<|
|
| 727 |
"lstrip": false,
|
| 728 |
"normalized": false,
|
| 729 |
"rstrip": false,
|
| 730 |
"single_word": false,
|
| 731 |
-
"special":
|
| 732 |
},
|
| 733 |
-
"
|
| 734 |
-
"content": "<
|
| 735 |
"lstrip": false,
|
| 736 |
"normalized": false,
|
| 737 |
"rstrip": false,
|
| 738 |
"single_word": false,
|
| 739 |
-
"special":
|
| 740 |
},
|
| 741 |
-
"
|
| 742 |
-
"content": "<
|
| 743 |
"lstrip": false,
|
| 744 |
"normalized": false,
|
| 745 |
"rstrip": false,
|
| 746 |
"single_word": false,
|
| 747 |
-
"special":
|
| 748 |
},
|
| 749 |
-
"
|
| 750 |
-
"content": "<
|
| 751 |
"lstrip": false,
|
| 752 |
"normalized": false,
|
| 753 |
"rstrip": false,
|
| 754 |
"single_word": false,
|
| 755 |
-
"special":
|
| 756 |
},
|
| 757 |
-
"
|
| 758 |
-
"content": "<
|
| 759 |
"lstrip": false,
|
| 760 |
"normalized": false,
|
| 761 |
"rstrip": false,
|
| 762 |
"single_word": false,
|
| 763 |
-
"special":
|
| 764 |
},
|
| 765 |
-
"
|
| 766 |
-
"content": "<|
|
| 767 |
"lstrip": false,
|
| 768 |
"normalized": false,
|
| 769 |
"rstrip": false,
|
|
@@ -771,14 +219,31 @@
|
|
| 771 |
"special": true
|
| 772 |
}
|
| 773 |
},
|
| 774 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 775 |
"clean_up_tokenization_spaces": false,
|
| 776 |
-
"eos_token": "<|
|
|
|
|
| 777 |
"extra_special_tokens": {},
|
| 778 |
-
"model_max_length":
|
| 779 |
-
"pad_token": "<|
|
| 780 |
-
"padding_side": "
|
| 781 |
-
"
|
| 782 |
-
"
|
| 783 |
-
"
|
|
|
|
| 784 |
}
|
|
|
|
| 2 |
"add_bos_token": false,
|
| 3 |
"add_prefix_space": false,
|
| 4 |
"added_tokens_decoder": {
|
| 5 |
+
"151643": {
|
| 6 |
+
"content": "<|endoftext|>",
|
| 7 |
"lstrip": false,
|
| 8 |
"normalized": false,
|
| 9 |
"rstrip": false,
|
| 10 |
"single_word": false,
|
| 11 |
"special": true
|
| 12 |
},
|
| 13 |
+
"151644": {
|
| 14 |
+
"content": "<|im_start|>",
|
| 15 |
"lstrip": false,
|
| 16 |
"normalized": false,
|
| 17 |
"rstrip": false,
|
| 18 |
"single_word": false,
|
| 19 |
"special": true
|
| 20 |
},
|
| 21 |
+
"151645": {
|
| 22 |
+
"content": "<|im_end|>",
|
| 23 |
"lstrip": false,
|
| 24 |
"normalized": false,
|
| 25 |
"rstrip": false,
|
| 26 |
"single_word": false,
|
| 27 |
+
"special": true
|
| 28 |
},
|
| 29 |
+
"151646": {
|
| 30 |
+
"content": "<|object_ref_start|>",
|
| 31 |
"lstrip": false,
|
| 32 |
"normalized": false,
|
| 33 |
"rstrip": false,
|
| 34 |
"single_word": false,
|
| 35 |
+
"special": true
|
| 36 |
},
|
| 37 |
+
"151647": {
|
| 38 |
+
"content": "<|object_ref_end|>",
|
| 39 |
"lstrip": false,
|
| 40 |
"normalized": false,
|
| 41 |
"rstrip": false,
|
| 42 |
"single_word": false,
|
| 43 |
+
"special": true
|
| 44 |
},
|
| 45 |
+
"151648": {
|
| 46 |
+
"content": "<|box_start|>",
|
| 47 |
"lstrip": false,
|
| 48 |
"normalized": false,
|
| 49 |
"rstrip": false,
|
| 50 |
"single_word": false,
|
| 51 |
+
"special": true
|
| 52 |
},
|
| 53 |
+
"151649": {
|
| 54 |
+
"content": "<|box_end|>",
|
| 55 |
"lstrip": false,
|
| 56 |
"normalized": false,
|
| 57 |
"rstrip": false,
|
| 58 |
"single_word": false,
|
| 59 |
+
"special": true
|
| 60 |
},
|
| 61 |
+
"151650": {
|
| 62 |
+
"content": "<|quad_start|>",
|
| 63 |
"lstrip": false,
|
| 64 |
"normalized": false,
|
| 65 |
"rstrip": false,
|
| 66 |
"single_word": false,
|
| 67 |
+
"special": true
|
| 68 |
},
|
| 69 |
+
"151651": {
|
| 70 |
+
"content": "<|quad_end|>",
|
| 71 |
"lstrip": false,
|
| 72 |
"normalized": false,
|
| 73 |
"rstrip": false,
|
| 74 |
"single_word": false,
|
| 75 |
"special": true
|
| 76 |
},
|
| 77 |
+
"151652": {
|
| 78 |
+
"content": "<|vision_start|>",
|
| 79 |
"lstrip": false,
|
| 80 |
"normalized": false,
|
| 81 |
"rstrip": false,
|
| 82 |
"single_word": false,
|
| 83 |
"special": true
|
| 84 |
},
|
| 85 |
+
"151653": {
|
| 86 |
+
"content": "<|vision_end|>",
|
| 87 |
"lstrip": false,
|
| 88 |
"normalized": false,
|
| 89 |
"rstrip": false,
|
| 90 |
"single_word": false,
|
| 91 |
"special": true
|
| 92 |
},
|
| 93 |
+
"151654": {
|
| 94 |
+
"content": "<|vision_pad|>",
|
| 95 |
"lstrip": false,
|
| 96 |
"normalized": false,
|
| 97 |
"rstrip": false,
|
| 98 |
"single_word": false,
|
| 99 |
"special": true
|
| 100 |
},
|
| 101 |
+
"151655": {
|
| 102 |
+
"content": "<|image_pad|>",
|
| 103 |
"lstrip": false,
|
| 104 |
"normalized": false,
|
| 105 |
"rstrip": false,
|
| 106 |
"single_word": false,
|
| 107 |
"special": true
|
| 108 |
},
|
| 109 |
+
"151656": {
|
| 110 |
+
"content": "<|video_pad|>",
|
| 111 |
"lstrip": false,
|
| 112 |
"normalized": false,
|
| 113 |
"rstrip": false,
|
| 114 |
"single_word": false,
|
| 115 |
"special": true
|
| 116 |
},
|
| 117 |
+
"151657": {
|
| 118 |
"content": "<tool_call>",
|
| 119 |
"lstrip": false,
|
| 120 |
"normalized": false,
|
|
|
|
| 122 |
"single_word": false,
|
| 123 |
"special": false
|
| 124 |
},
|
| 125 |
+
"151658": {
|
| 126 |
"content": "</tool_call>",
|
| 127 |
"lstrip": false,
|
| 128 |
"normalized": false,
|
|
|
|
| 130 |
"single_word": false,
|
| 131 |
"special": false
|
| 132 |
},
|
| 133 |
+
"151659": {
|
| 134 |
+
"content": "<|fim_prefix|>",
|
| 135 |
"lstrip": false,
|
| 136 |
"normalized": false,
|
| 137 |
"rstrip": false,
|
| 138 |
"single_word": false,
|
| 139 |
"special": false
|
| 140 |
},
|
| 141 |
+
"151660": {
|
| 142 |
+
"content": "<|fim_middle|>",
|
| 143 |
"lstrip": false,
|
| 144 |
"normalized": false,
|
| 145 |
"rstrip": false,
|
| 146 |
"single_word": false,
|
| 147 |
"special": false
|
| 148 |
},
|
| 149 |
+
"151661": {
|
| 150 |
+
"content": "<|fim_suffix|>",
|
| 151 |
"lstrip": false,
|
| 152 |
"normalized": false,
|
| 153 |
"rstrip": false,
|
| 154 |
"single_word": false,
|
| 155 |
"special": false
|
| 156 |
},
|
| 157 |
+
"151662": {
|
| 158 |
+
"content": "<|fim_pad|>",
|
| 159 |
"lstrip": false,
|
| 160 |
"normalized": false,
|
| 161 |
"rstrip": false,
|
| 162 |
"single_word": false,
|
| 163 |
"special": false
|
| 164 |
},
|
| 165 |
+
"151663": {
|
| 166 |
+
"content": "<|repo_name|>",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 167 |
"lstrip": false,
|
| 168 |
"normalized": false,
|
| 169 |
"rstrip": false,
|
| 170 |
"single_word": false,
|
| 171 |
+
"special": false
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 172 |
},
|
| 173 |
+
"151664": {
|
| 174 |
+
"content": "<|file_sep|>",
|
| 175 |
"lstrip": false,
|
| 176 |
"normalized": false,
|
| 177 |
"rstrip": false,
|
| 178 |
"single_word": false,
|
| 179 |
+
"special": false
|
| 180 |
},
|
| 181 |
+
"151665": {
|
| 182 |
+
"content": "<tool_response>",
|
| 183 |
"lstrip": false,
|
| 184 |
"normalized": false,
|
| 185 |
"rstrip": false,
|
| 186 |
"single_word": false,
|
| 187 |
+
"special": false
|
| 188 |
},
|
| 189 |
+
"151666": {
|
| 190 |
+
"content": "</tool_response>",
|
| 191 |
"lstrip": false,
|
| 192 |
"normalized": false,
|
| 193 |
"rstrip": false,
|
| 194 |
"single_word": false,
|
| 195 |
+
"special": false
|
| 196 |
},
|
| 197 |
+
"151667": {
|
| 198 |
+
"content": "<think>",
|
| 199 |
"lstrip": false,
|
| 200 |
"normalized": false,
|
| 201 |
"rstrip": false,
|
| 202 |
"single_word": false,
|
| 203 |
+
"special": false
|
| 204 |
},
|
| 205 |
+
"151668": {
|
| 206 |
+
"content": "</think>",
|
| 207 |
"lstrip": false,
|
| 208 |
"normalized": false,
|
| 209 |
"rstrip": false,
|
| 210 |
"single_word": false,
|
| 211 |
+
"special": false
|
| 212 |
},
|
| 213 |
+
"151669": {
|
| 214 |
+
"content": "<|PAD_TOKEN|>",
|
| 215 |
"lstrip": false,
|
| 216 |
"normalized": false,
|
| 217 |
"rstrip": false,
|
|
|
|
| 219 |
"special": true
|
| 220 |
}
|
| 221 |
},
|
| 222 |
+
"additional_special_tokens": [
|
| 223 |
+
"<|im_start|>",
|
| 224 |
+
"<|im_end|>",
|
| 225 |
+
"<|object_ref_start|>",
|
| 226 |
+
"<|object_ref_end|>",
|
| 227 |
+
"<|box_start|>",
|
| 228 |
+
"<|box_end|>",
|
| 229 |
+
"<|quad_start|>",
|
| 230 |
+
"<|quad_end|>",
|
| 231 |
+
"<|vision_start|>",
|
| 232 |
+
"<|vision_end|>",
|
| 233 |
+
"<|vision_pad|>",
|
| 234 |
+
"<|image_pad|>",
|
| 235 |
+
"<|video_pad|>"
|
| 236 |
+
],
|
| 237 |
+
"bos_token": null,
|
| 238 |
"clean_up_tokenization_spaces": false,
|
| 239 |
+
"eos_token": "<|im_end|>",
|
| 240 |
+
"errors": "replace",
|
| 241 |
"extra_special_tokens": {},
|
| 242 |
+
"model_max_length": 40960,
|
| 243 |
+
"pad_token": "<|PAD_TOKEN|>",
|
| 244 |
+
"padding_side": "left",
|
| 245 |
+
"split_special_tokens": false,
|
| 246 |
+
"tokenizer_class": "Qwen2Tokenizer",
|
| 247 |
+
"unk_token": null,
|
| 248 |
+
"chat_template": "{%- if tools %}\n {{- '<|im_start|>system\\n' }}\n {%- if messages[0].role == 'system' %}\n {{- messages[0].content + '\\n\\n' }}\n {%- endif %}\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><|im_end|>\\n\" }}\n{%- else %}\n {%- if messages[0].role == 'system' %}\n {{- '<|im_start|>system\\n' + messages[0].content + '<|im_end|>\\n' }}\n {%- endif %}\n{%- endif %}\n{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}\n{%- for forward_message in messages %}\n {%- set index = (messages|length - 1) - loop.index0 %}\n {%- set message = messages[index] %}\n {%- set current_content = message.content if message.content is not none else '' %}\n {%- set tool_start = '<tool_response>' %}\n {%- set tool_start_length = tool_start|length %}\n {%- set start_of_message = current_content[:tool_start_length] %}\n {%- set tool_end = '</tool_response>' %}\n {%- set tool_end_length = tool_end|length %}\n {%- set start_pos = (current_content|length) - tool_end_length %}\n {%- if start_pos < 0 %}\n {%- set start_pos = 0 %}\n {%- endif %}\n {%- set end_of_message = current_content[start_pos:] %}\n {%- if ns.multi_step_tool and message.role == \"user\" and not(start_of_message == tool_start and end_of_message == tool_end) %}\n {%- set ns.multi_step_tool = false %}\n {%- set ns.last_query_index = index %}\n {%- endif %}\n{%- endfor %}\n{%- for message in messages %}\n {%- if (message.role == \"user\") or (message.role == \"system\" and not loop.first) %}\n {{- '<|im_start|>' + message.role + '\\n' + message.content + '<|im_end|>' + '\\n' }}\n {%- elif message.role == \"assistant\" %}\n {%- set content = message.content %}\n {%- set reasoning_content = '' %}\n {%- if message.reasoning_content is defined and message.reasoning_content is not none %}\n {%- set reasoning_content = message.reasoning_content %}\n {%- else %}\n {%- if '</think>' in message.content %}\n {%- set content = (message.content.split('</think>')|last).lstrip('\\n') %}\n {%- set reasoning_content = (message.content.split('</think>')|first).rstrip('\\n') %}\n {%- set reasoning_content = (reasoning_content.split('<think>')|last).lstrip('\\n') %}\n {%- endif %}\n {%- endif %}\n {%- if loop.index0 > ns.last_query_index %}\n {%- if loop.last or (not loop.last and reasoning_content) %}\n {{- '<|im_start|>' + message.role + '\\n<think>\\n' + reasoning_content.strip('\\n') + '\\n</think>\\n\\n' + content.lstrip('\\n') }}\n {%- else %}\n {{- '<|im_start|>' + message.role + '\\n' + content }}\n {%- endif %}\n {%- else %}\n {{- '<|im_start|>' + message.role + '\\n' + content }}\n {%- endif %}\n {%- if message.tool_calls %}\n {%- for tool_call in message.tool_calls %}\n {%- if (loop.first and content) or (not loop.first) %}\n {{- '\\n' }}\n {%- endif %}\n {%- if tool_call.function %}\n {%- set tool_call = tool_call.function %}\n {%- endif %}\n {{- '<tool_call>\\n{\"name\": \"' }}\n {{- tool_call.name }}\n {{- '\", \"arguments\": ' }}\n {%- if tool_call.arguments is string %}\n {{- tool_call.arguments }}\n {%- else %}\n {{- tool_call.arguments | tojson }}\n {%- endif %}\n {{- '}\\n</tool_call>' }}\n {%- endfor %}\n {%- endif %}\n {{- '<|im_end|>\\n' }}\n {%- elif message.role == \"tool\" %}\n {%- if loop.first or (messages[loop.index0 - 1].role != \"tool\") %}\n {{- '<|im_start|>user' }}\n {%- endif %}\n {{- '\\n<tool_response>\\n' }}\n {{- message.content }}\n {{- '\\n</tool_response>' }}\n {%- if loop.last or (messages[loop.index0 + 1].role != \"tool\") %}\n {{- '<|im_end|>\\n' }}\n {%- endif %}\n {%- endif %}\n{%- endfor %}\n{%- if add_generation_prompt %}\n {{- '<|im_start|>assistant\\n' }}\n {%- if enable_thinking is defined and enable_thinking is false %}\n {{- '<think>\\n\\n</think>\\n\\n' }}\n {%- endif %}\n{%- endif %}"
|
| 249 |
}
|
vocab.json
CHANGED
|
The diff for this file is too large to render.
See raw diff
|
|
|