DFveloper commited on
Commit
307c7e3
·
verified ·
1 Parent(s): 881f51a

Upload model trained with Unsloth

Browse files

Upload model trained with Unsloth 2x faster

.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
chat_template.jinja ADDED
@@ -0,0 +1,294 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {%- macro format_parameters(properties, required) -%}
2
+ {%- set standard_keys = ['description', 'type', 'properties', 'required', 'nullable'] -%}
3
+ {%- set ns = namespace(found_first=false) -%}
4
+ {%- for key, value in properties | dictsort -%}
5
+ {%- set add_comma = false -%}
6
+ {%- if key not in standard_keys -%}
7
+ {%- if ns.found_first %},{% endif -%}
8
+ {%- set ns.found_first = true -%}
9
+ {{ key }}:{
10
+ {%- if value['description'] -%}
11
+ description:<|"|>{{ value['description'] }}<|"|>
12
+ {%- set add_comma = true -%}
13
+ {%- endif -%}
14
+ {%- if value['nullable'] %}
15
+ {%- if add_comma %},{%- else -%} {%- set add_comma = true -%} {% endif -%}
16
+ nullable:true
17
+ {%- endif -%}
18
+ {%- if value['type'] | upper == 'STRING' -%}
19
+ {%- if value['enum'] -%}
20
+ {%- if add_comma %},{%- else -%} {%- set add_comma = true -%} {% endif -%}
21
+ enum:{{ format_argument(value['enum']) }}
22
+ {%- endif -%}
23
+ {%- elif value['type'] | upper == 'OBJECT' -%}
24
+ ,properties:{
25
+ {%- if value['properties'] is defined and value['properties'] is mapping -%}
26
+ {{- format_parameters(value['properties'], value['required'] | default([])) -}}
27
+ {%- elif value is mapping -%}
28
+ {{- format_parameters(value, value['required'] | default([])) -}}
29
+ {%- endif -%}
30
+ }
31
+ {%- if value['required'] -%}
32
+ ,required:[
33
+ {%- for item in value['required'] | default([]) -%}
34
+ <|"|>{{- item -}}<|"|>
35
+ {%- if not loop.last %},{% endif -%}
36
+ {%- endfor -%}
37
+ ]
38
+ {%- endif -%}
39
+ {%- elif value['type'] | upper == 'ARRAY' -%}
40
+ {%- if value['items'] is mapping and value['items'] -%}
41
+ ,items:{
42
+ {%- set ns_items = namespace(found_first=false) -%}
43
+ {%- for item_key, item_value in value['items'] | dictsort -%}
44
+ {%- if item_value is not none -%}
45
+ {%- if ns_items.found_first %},{% endif -%}
46
+ {%- set ns_items.found_first = true -%}
47
+ {%- if item_key == 'properties' -%}
48
+ properties:{
49
+ {%- if item_value is mapping -%}
50
+ {{- format_parameters(item_value, value['items']['required'] | default([])) -}}
51
+ {%- endif -%}
52
+ }
53
+ {%- elif item_key == 'required' -%}
54
+ required:[
55
+ {%- for req_item in item_value -%}
56
+ <|"|>{{- req_item -}}<|"|>
57
+ {%- if not loop.last %},{% endif -%}
58
+ {%- endfor -%}
59
+ ]
60
+ {%- elif item_key == 'type' -%}
61
+ {%- if item_value is string -%}
62
+ type:{{ format_argument(item_value | upper) }}
63
+ {%- else -%}
64
+ type:{{ format_argument(item_value | map('upper') | list) }}
65
+ {%- endif -%}
66
+ {%- else -%}
67
+ {{ item_key }}:{{ format_argument(item_value) }}
68
+ {%- endif -%}
69
+ {%- endif -%}
70
+ {%- endfor -%}
71
+ }
72
+ {%- endif -%}
73
+ {%- endif -%}
74
+ {%- if add_comma %},{%- else -%} {%- set add_comma = true -%} {% endif -%}
75
+ type:<|"|>{{ value['type'] | upper }}<|"|>}
76
+ {%- endif -%}
77
+ {%- endfor -%}
78
+ {%- endmacro -%}
79
+ {%- macro format_function_declaration(tool_data) -%}
80
+ declaration:{{- tool_data['function']['name'] -}}{description:<|"|>{{- tool_data['function']['description'] -}}<|"|>
81
+ {%- set params = tool_data['function']['parameters'] -%}
82
+ {%- if params -%}
83
+ ,parameters:{
84
+ {%- if params['properties'] -%}
85
+ properties:{ {{- format_parameters(params['properties'], params['required']) -}} },
86
+ {%- endif -%}
87
+ {%- if params['required'] -%}
88
+ required:[
89
+ {%- for item in params['required'] -%}
90
+ <|"|>{{- item -}}<|"|>
91
+ {{- ',' if not loop.last -}}
92
+ {%- endfor -%}
93
+ ],
94
+ {%- endif -%}
95
+ {%- if params['type'] -%}
96
+ type:<|"|>{{- params['type'] | upper -}}<|"|>}
97
+ {%- endif -%}
98
+ {%- endif -%}
99
+ {%- if 'response' in tool_data['function'] -%}
100
+ {%- set response_declaration = tool_data['function']['response'] -%}
101
+ ,response:{
102
+ {%- if response_declaration['description'] -%}
103
+ description:<|"|>{{- response_declaration['description'] -}}<|"|>,
104
+ {%- endif -%}
105
+ {%- if response_declaration['type'] | upper == 'OBJECT' -%}
106
+ type:<|"|>{{- response_declaration['type'] | upper -}}<|"|>}
107
+ {%- endif -%}
108
+ {%- endif -%}
109
+ }
110
+ {%- endmacro -%}
111
+ {%- macro format_argument(argument, escape_keys=True) -%}
112
+ {%- if argument is string -%}
113
+ {{- '<|"|>' + argument + '<|"|>' -}}
114
+ {%- elif argument is boolean -%}
115
+ {{- 'true' if argument else 'false' -}}
116
+ {%- elif argument is mapping -%}
117
+ {{- '{' -}}
118
+ {%- set ns = namespace(found_first=false) -%}
119
+ {%- for key, value in argument | dictsort -%}
120
+ {%- if ns.found_first %},{% endif -%}
121
+ {%- set ns.found_first = true -%}
122
+ {%- if escape_keys -%}
123
+ {{- '<|"|>' + key + '<|"|>' -}}
124
+ {%- else -%}
125
+ {{- key -}}
126
+ {%- endif -%}
127
+ :{{- format_argument(value, escape_keys=escape_keys) -}}
128
+ {%- endfor -%}
129
+ {{- '}' -}}
130
+ {%- elif argument is sequence -%}
131
+ {{- '[' -}}
132
+ {%- for item in argument -%}
133
+ {{- format_argument(item, escape_keys=escape_keys) -}}
134
+ {%- if not loop.last %},{% endif -%}
135
+ {%- endfor -%}
136
+ {{- ']' -}}
137
+ {%- else -%}
138
+ {{- argument -}}
139
+ {%- endif -%}
140
+ {%- endmacro -%}
141
+ {%- macro strip_thinking(text) -%}
142
+ {%- set ns = namespace(result='') -%}
143
+ {%- for part in text.split('<channel|>') -%}
144
+ {%- if '<|channel>' in part -%}
145
+ {%- set ns.result = ns.result + part.split('<|channel>')[0] -%}
146
+ {%- else -%}
147
+ {%- set ns.result = ns.result + part -%}
148
+ {%- endif -%}
149
+ {%- endfor -%}
150
+ {{- ns.result | trim -}}
151
+ {%- endmacro -%}
152
+
153
+ {%- set ns = namespace(prev_message_type=None, last_user_message=-1) -%}
154
+ {%- set loop_messages = messages -%}
155
+ {{- bos_token -}}
156
+ {#- Handle System/Tool Definitions Block -#}
157
+ {%- if (enable_thinking is defined and enable_thinking) or tools or messages[0]['role'] in ['system', 'developer'] -%}
158
+ {{- '<|turn>system
159
+ ' -}}
160
+
161
+ {#- Inject Thinking token at the very top of the FIRST system turn -#}
162
+ {%- if enable_thinking is defined and enable_thinking -%}
163
+ {{- '<|think|>
164
+ ' -}}
165
+ {%- set ns.prev_message_type = 'think' -%}
166
+ {%- endif -%}
167
+
168
+ {%- if messages[0]['role'] in ['system', 'developer'] -%}
169
+ {{- messages[0]['content'] | trim -}}
170
+ {%- set loop_messages = messages[1:] -%}
171
+ {%- endif -%}
172
+
173
+ {%- if tools -%}
174
+ {%- for tool in tools %}
175
+ {{- '<|tool>' -}}
176
+ {{- format_function_declaration(tool) | trim -}}
177
+ {{- '<tool|>' -}}
178
+ {%- endfor %}
179
+ {%- set ns.prev_message_type = 'tool' -%}
180
+ {%- endif -%}
181
+
182
+ {{- '<turn|>
183
+ ' -}}
184
+ {%- endif %}
185
+
186
+ {#- Find last user message -#}
187
+ {%- for message in loop_messages -%}
188
+ {%- if message['role'] == 'user' -%}
189
+ {%- set ns.last_user_message = loop.index0 -%}
190
+ {%- endif -%}
191
+ {%- endfor -%}
192
+
193
+ {#- Loop through messages -#}
194
+ {%- for message in loop_messages -%}
195
+ {%- set role = 'model' if message['role'] == 'assistant' else message['role'] -%}
196
+ {%- if not (ns.prev_message_type == 'tool_response' and message['tool_calls']) -%}
197
+ {{- '<|turn>' + role + '
198
+ ' }}
199
+ {%- endif -%}
200
+
201
+ {%- set ns.prev_message_type = None -%}
202
+
203
+ {%- if message['tool_calls'] -%}
204
+ {#- Preserve reasoning between tool calls for model turns that come after the last user turn -#}
205
+ {%- if message['reasoning_content'] and loop.index0 > ns.last_user_message -%}
206
+ {{- '<|channel>thought
207
+ ' -}}
208
+ {{- message['reasoning_content'] -}}
209
+ {{- '<channel|>' -}}
210
+ {%- endif -%}
211
+ {%- for tool_call in message['tool_calls'] -%}
212
+ {%- set function = tool_call['function'] -%}
213
+ {{- '<|tool_call>call:' + function['name'] + '{' -}}
214
+ {%- if function['arguments'] is mapping -%}
215
+ {%- set ns_args = namespace(found_first=false) -%}
216
+ {%- for key, value in function['arguments'] | dictsort -%}
217
+ {%- if ns_args.found_first %},{% endif -%}
218
+ {%- set ns_args.found_first = true -%}
219
+ {{- key -}}:{{- format_argument(value, escape_keys=False) -}}
220
+ {%- endfor -%}
221
+ {%- elif function['arguments'] is string -%}
222
+ {{- function['arguments'] -}}
223
+ {%- endif -%}
224
+ {{- '}<tool_call|>' -}}
225
+ {%- endfor -%}
226
+ {%- set ns.prev_message_type = 'tool_call' -%}
227
+ {%- endif -%}
228
+
229
+ {%- if message['tool_responses'] -%}
230
+ {#- Tool Response handling -#}
231
+ {%- for tool_response in message['tool_responses'] -%}
232
+ {{- '<|tool_response>' -}}
233
+ {%- if tool_response['response'] is mapping -%}
234
+ {{- 'response:' + tool_response['name'] | default('unknown') + '{' -}}
235
+ {%- for key, value in tool_response['response'] | dictsort -%}
236
+ {{- key -}}:{{- format_argument(value, escape_keys=False) -}}
237
+ {%- if not loop.last %},{% endif -%}
238
+ {%- endfor -%}
239
+ {{- '}' -}}
240
+ {%- else -%}
241
+ {{- 'response:' + tool_response['name'] | default('unknown') + '{value:' + format_argument(tool_response['response'], escape_keys=False) + '}' -}}
242
+ {%- endif -%}
243
+ {{- '<tool_response|>' -}}
244
+ {%- endfor -%}
245
+ {%- set ns.prev_message_type = 'tool_response' -%}
246
+ {%- endif -%}
247
+
248
+ {%- if message['content'] is string -%}
249
+ {%- if role == 'model' -%}
250
+ {{- strip_thinking(message['content']) -}}
251
+ {%- else -%}
252
+ {{- message['content'] | trim -}}
253
+ {%- endif -%}
254
+ {%- elif message['content'] is sequence -%}
255
+ {%- for item in message['content'] -%}
256
+ {%- if item['type'] == 'text' -%}
257
+ {%- if role == 'model' -%}
258
+ {{- strip_thinking(item['text']) -}}
259
+ {%- else -%}
260
+ {{- item['text'] | trim -}}
261
+ {%- endif -%}
262
+ {%- elif item['type'] == 'image' -%}
263
+ {{- '<|image|>' -}}
264
+ {%- set ns.prev_message_type = 'image' -%}
265
+ {%- elif item['type'] == 'audio' -%}
266
+ {{- '<|audio|>' -}}
267
+ {%- set ns.prev_message_type = 'audio' -%}
268
+ {%- elif item['type'] == 'video' -%}
269
+ {{- '<|video|>' -}}
270
+ {%- set ns.prev_message_type = 'video' -%}
271
+ {%- endif -%}
272
+ {%- endfor -%}
273
+ {%- endif -%}
274
+
275
+ {%- if not (message['tool_responses'] and not message['content']) -%}
276
+ {{- '<turn|>
277
+ ' -}}
278
+ {%- endif -%}
279
+ {%- endfor -%}
280
+
281
+ {%- if add_generation_prompt -%}
282
+ {%- if ns.prev_message_type != 'tool_response' -%}
283
+ {{- '<|turn>model
284
+ ' -}}
285
+ {%- endif -%}
286
+ {%- if not enable_thinking | default(false) -%}
287
+ {{- '<|channel>thought
288
+ <channel|>' -}}
289
+ {%- endif -%}
290
+ {%- if enable_thinking | default(true) -%}
291
+ {{- '<|channel>thought
292
+ ' -}}
293
+ {%- endif -%}
294
+ {%- endif -%}
processor_config.json ADDED
@@ -0,0 +1,75 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "audio_ms_per_token": 40,
3
+ "audio_seq_length": 750,
4
+ "feature_extractor": {
5
+ "dither": 0.0,
6
+ "feature_extractor_type": "Gemma4AudioFeatureExtractor",
7
+ "feature_size": 128,
8
+ "fft_length": 512,
9
+ "fft_overdrive": false,
10
+ "frame_length": 320,
11
+ "hop_length": 160,
12
+ "input_scale_factor": 1.0,
13
+ "max_frequency": 8000.0,
14
+ "mel_floor": 0.001,
15
+ "min_frequency": 0.0,
16
+ "padding_side": "right",
17
+ "padding_value": 0.0,
18
+ "per_bin_mean": null,
19
+ "per_bin_stddev": null,
20
+ "preemphasis": 0.0,
21
+ "preemphasis_htk_flavor": true,
22
+ "return_attention_mask": true,
23
+ "sampling_rate": 16000
24
+ },
25
+ "image_processor": {
26
+ "do_convert_rgb": true,
27
+ "do_normalize": false,
28
+ "do_rescale": true,
29
+ "do_resize": true,
30
+ "image_mean": [
31
+ 0.0,
32
+ 0.0,
33
+ 0.0
34
+ ],
35
+ "image_processor_type": "Gemma4ImageProcessor",
36
+ "image_seq_length": 280,
37
+ "image_std": [
38
+ 1.0,
39
+ 1.0,
40
+ 1.0
41
+ ],
42
+ "max_soft_tokens": 280,
43
+ "patch_size": 16,
44
+ "pooling_kernel_size": 3,
45
+ "resample": 3,
46
+ "rescale_factor": 0.00392156862745098
47
+ },
48
+ "image_seq_length": 280,
49
+ "processor_class": "Gemma4Processor",
50
+ "video_processor": {
51
+ "do_convert_rgb": true,
52
+ "do_normalize": true,
53
+ "do_rescale": true,
54
+ "do_resize": true,
55
+ "do_sample_frames": true,
56
+ "image_mean": [
57
+ 0.0,
58
+ 0.0,
59
+ 0.0
60
+ ],
61
+ "image_std": [
62
+ 1.0,
63
+ 1.0,
64
+ 1.0
65
+ ],
66
+ "max_soft_tokens": 70,
67
+ "num_frames": 32,
68
+ "patch_size": 16,
69
+ "pooling_kernel_size": 3,
70
+ "resample": 3,
71
+ "rescale_factor": 0.00392156862745098,
72
+ "return_metadata": false,
73
+ "video_processor_type": "Gemma4VideoProcessor"
74
+ }
75
+ }
tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:435198dd84a7fa659300af3e5c30918fb6acaaf3365d6398b67ab87d1eb36288
3
+ size 32169880
tokenizer_config.json ADDED
@@ -0,0 +1,293 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "audio_token": "<|audio|>",
3
+ "backend": "tokenizers",
4
+ "boa_token": "<|audio>",
5
+ "boi_token": "<|image>",
6
+ "bos_token": "<bos>",
7
+ "eoa_token": "<audio|>",
8
+ "eoc_token": "<channel|>",
9
+ "eoi_token": "<image|>",
10
+ "eos_token": "<eos>",
11
+ "eot_token": "<turn|>",
12
+ "escape_token": "<|\"|>",
13
+ "etc_token": "<tool_call|>",
14
+ "etd_token": "<tool|>",
15
+ "etr_token": "<tool_response|>",
16
+ "extra_special_tokens": [
17
+ "<|video|>"
18
+ ],
19
+ "image_token": "<|image|>",
20
+ "is_local": false,
21
+ "local_files_only": false,
22
+ "mask_token": "<mask>",
23
+ "max_length": null,
24
+ "model_max_length": 1000000000000000019884624838656,
25
+ "model_specific_special_tokens": {
26
+ "audio_token": "<|audio|>",
27
+ "boa_token": "<|audio>",
28
+ "boi_token": "<|image>",
29
+ "eoa_token": "<audio|>",
30
+ "eoc_token": "<channel|>",
31
+ "eoi_token": "<image|>",
32
+ "eot_token": "<turn|>",
33
+ "escape_token": "<|\"|>",
34
+ "etc_token": "<tool_call|>",
35
+ "etd_token": "<tool|>",
36
+ "etr_token": "<tool_response|>",
37
+ "image_token": "<|image|>",
38
+ "soc_token": "<|channel>",
39
+ "sot_token": "<|turn>",
40
+ "stc_token": "<|tool_call>",
41
+ "std_token": "<|tool>",
42
+ "str_token": "<|tool_response>",
43
+ "think_token": "<|think|>"
44
+ },
45
+ "pad_to_multiple_of": null,
46
+ "pad_token": "<pad>",
47
+ "pad_token_type_id": 0,
48
+ "padding_side": "right",
49
+ "processor_class": "Gemma4Processor",
50
+ "response_schema": {
51
+ "properties": {
52
+ "content": {
53
+ "type": "string"
54
+ },
55
+ "role": {
56
+ "const": "assistant"
57
+ },
58
+ "thinking": {
59
+ "type": "string"
60
+ },
61
+ "tool_calls": {
62
+ "items": {
63
+ "properties": {
64
+ "function": {
65
+ "properties": {
66
+ "arguments": {
67
+ "additionalProperties": {},
68
+ "type": "object",
69
+ "x-parser": "gemma4-tool-call"
70
+ },
71
+ "name": {
72
+ "type": "string"
73
+ }
74
+ },
75
+ "type": "object",
76
+ "x-regex": "call\\:(?P<name>\\w+)(?P<arguments>\\{.*\\})"
77
+ },
78
+ "type": {
79
+ "const": "function"
80
+ }
81
+ },
82
+ "type": "object"
83
+ },
84
+ "type": "array",
85
+ "x-regex-iterator": "<\\|tool_call>(.*?)<tool_call\\|>"
86
+ }
87
+ },
88
+ "type": "object",
89
+ "x-regex": "(\\<\\|channel\\>thought\\n(?P<thinking>.*?)\\<channel\\|\\>)?(?P<tool_calls>\\<\\|tool_call\\>.*\\<tool_call\\|\\>)?(?P<content>(?:(?!\\<turn\\|\\>)(?!\\<\\|tool_response\\>).)+)?(?:\\<turn\\|\\>|\\<\\|tool_response\\>)?"
90
+ },
91
+ "soc_token": "<|channel>",
92
+ "sot_token": "<|turn>",
93
+ "stc_token": "<|tool_call>",
94
+ "std_token": "<|tool>",
95
+ "str_token": "<|tool_response>",
96
+ "think_token": "<|think|>",
97
+ "tokenizer_class": "GemmaTokenizer",
98
+ "unk_token": "<unk>",
99
+ "added_tokens_decoder": {
100
+ "0": {
101
+ "content": "<pad>",
102
+ "single_word": false,
103
+ "lstrip": false,
104
+ "rstrip": false,
105
+ "normalized": false,
106
+ "special": true
107
+ },
108
+ "1": {
109
+ "content": "<eos>",
110
+ "single_word": false,
111
+ "lstrip": false,
112
+ "rstrip": false,
113
+ "normalized": false,
114
+ "special": true
115
+ },
116
+ "2": {
117
+ "content": "<bos>",
118
+ "single_word": false,
119
+ "lstrip": false,
120
+ "rstrip": false,
121
+ "normalized": false,
122
+ "special": true
123
+ },
124
+ "3": {
125
+ "content": "<unk>",
126
+ "single_word": false,
127
+ "lstrip": false,
128
+ "rstrip": false,
129
+ "normalized": false,
130
+ "special": true
131
+ },
132
+ "4": {
133
+ "content": "<mask>",
134
+ "single_word": false,
135
+ "lstrip": false,
136
+ "rstrip": false,
137
+ "normalized": false,
138
+ "special": true
139
+ },
140
+ "46": {
141
+ "content": "<|tool>",
142
+ "single_word": false,
143
+ "lstrip": false,
144
+ "rstrip": false,
145
+ "normalized": false,
146
+ "special": true
147
+ },
148
+ "47": {
149
+ "content": "<tool|>",
150
+ "single_word": false,
151
+ "lstrip": false,
152
+ "rstrip": false,
153
+ "normalized": false,
154
+ "special": true
155
+ },
156
+ "48": {
157
+ "content": "<|tool_call>",
158
+ "single_word": false,
159
+ "lstrip": false,
160
+ "rstrip": false,
161
+ "normalized": false,
162
+ "special": true
163
+ },
164
+ "49": {
165
+ "content": "<tool_call|>",
166
+ "single_word": false,
167
+ "lstrip": false,
168
+ "rstrip": false,
169
+ "normalized": false,
170
+ "special": true
171
+ },
172
+ "50": {
173
+ "content": "<|tool_response>",
174
+ "single_word": false,
175
+ "lstrip": false,
176
+ "rstrip": false,
177
+ "normalized": false,
178
+ "special": true
179
+ },
180
+ "51": {
181
+ "content": "<tool_response|>",
182
+ "single_word": false,
183
+ "lstrip": false,
184
+ "rstrip": false,
185
+ "normalized": false,
186
+ "special": true
187
+ },
188
+ "52": {
189
+ "content": "<|\"|>",
190
+ "single_word": false,
191
+ "lstrip": false,
192
+ "rstrip": false,
193
+ "normalized": false,
194
+ "special": true
195
+ },
196
+ "98": {
197
+ "content": "<|think|>",
198
+ "single_word": false,
199
+ "lstrip": false,
200
+ "rstrip": false,
201
+ "normalized": false,
202
+ "special": true
203
+ },
204
+ "100": {
205
+ "content": "<|channel>",
206
+ "single_word": false,
207
+ "lstrip": false,
208
+ "rstrip": false,
209
+ "normalized": false,
210
+ "special": true
211
+ },
212
+ "101": {
213
+ "content": "<channel|>",
214
+ "single_word": false,
215
+ "lstrip": false,
216
+ "rstrip": false,
217
+ "normalized": false,
218
+ "special": true
219
+ },
220
+ "105": {
221
+ "content": "<|turn>",
222
+ "single_word": false,
223
+ "lstrip": false,
224
+ "rstrip": false,
225
+ "normalized": false,
226
+ "special": true
227
+ },
228
+ "106": {
229
+ "content": "<turn|>",
230
+ "single_word": false,
231
+ "lstrip": false,
232
+ "rstrip": false,
233
+ "normalized": false,
234
+ "special": true
235
+ },
236
+ "255999": {
237
+ "content": "<|image>",
238
+ "single_word": false,
239
+ "lstrip": false,
240
+ "rstrip": false,
241
+ "normalized": false,
242
+ "special": true
243
+ },
244
+ "256000": {
245
+ "content": "<|audio>",
246
+ "single_word": false,
247
+ "lstrip": false,
248
+ "rstrip": false,
249
+ "normalized": false,
250
+ "special": true
251
+ },
252
+ "258880": {
253
+ "content": "<|image|>",
254
+ "single_word": false,
255
+ "lstrip": false,
256
+ "rstrip": false,
257
+ "normalized": false,
258
+ "special": true
259
+ },
260
+ "258881": {
261
+ "content": "<|audio|>",
262
+ "single_word": false,
263
+ "lstrip": false,
264
+ "rstrip": false,
265
+ "normalized": false,
266
+ "special": true
267
+ },
268
+ "258882": {
269
+ "content": "<image|>",
270
+ "single_word": false,
271
+ "lstrip": false,
272
+ "rstrip": false,
273
+ "normalized": false,
274
+ "special": true
275
+ },
276
+ "258883": {
277
+ "content": "<audio|>",
278
+ "single_word": false,
279
+ "lstrip": false,
280
+ "rstrip": false,
281
+ "normalized": false,
282
+ "special": true
283
+ },
284
+ "258884": {
285
+ "content": "<|video|>",
286
+ "single_word": false,
287
+ "lstrip": false,
288
+ "rstrip": false,
289
+ "normalized": false,
290
+ "special": true
291
+ }
292
+ }
293
+ }