sasa2000 commited on
Commit
9ffd50d
·
verified ·
1 Parent(s): c1230e3

Upload 15 files

Browse files
.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,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "</think>": 151668,
3
+ "</tool_call>": 151658,
4
+ "</tool_response>": 151666,
5
+ "<think>": 151667,
6
+ "<tool_call>": 151657,
7
+ "<tool_response>": 151665,
8
+ "<|box_end|>": 151649,
9
+ "<|box_start|>": 151648,
10
+ "<|endoftext|>": 151643,
11
+ "<|file_sep|>": 151664,
12
+ "<|fim_middle|>": 151660,
13
+ "<|fim_pad|>": 151662,
14
+ "<|fim_prefix|>": 151659,
15
+ "<|fim_suffix|>": 151661,
16
+ "<|im_end|>": 151645,
17
+ "<|im_start|>": 151644,
18
+ "<|image_pad|>": 151655,
19
+ "<|object_ref_end|>": 151647,
20
+ "<|object_ref_start|>": 151646,
21
+ "<|quad_end|>": 151651,
22
+ "<|quad_start|>": 151650,
23
+ "<|repo_name|>": 151663,
24
+ "<|video_pad|>": 151656,
25
+ "<|vision_end|>": 151653,
26
+ "<|vision_pad|>": 151654,
27
+ "<|vision_start|>": 151652
28
+ }
chat_template.jinja ADDED
@@ -0,0 +1,117 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {% macro render_extra_keys(json_dict, handled_keys) %}
2
+ {%- if json_dict is mapping %}
3
+ {%- for json_key in json_dict if json_key not in handled_keys %}
4
+ {%- if json_dict[json_key] is mapping or (json_dict[json_key] is sequence and json_dict[json_key] is not string) %}
5
+ {{- '\n<' ~ json_key ~ '>' ~ (json_dict[json_key] | tojson | safe) ~ '</' ~ json_key ~ '>' }}
6
+ {%- else %}
7
+ {{-'\n<' ~ json_key ~ '>' ~ (json_dict[json_key] | string) ~ '</' ~ json_key ~ '>' }}
8
+ {%- endif %}
9
+ {%- endfor %}
10
+ {%- endif %}
11
+ {% endmacro %}
12
+
13
+ {%- if messages[0]["role"] == "system" %}
14
+ {%- set system_message = messages[0]["content"] %}
15
+ {%- set loop_messages = messages[1:] %}
16
+ {%- else %}
17
+ {%- set loop_messages = messages %}
18
+ {%- endif %}
19
+
20
+ {%- if not tools is defined %}
21
+ {%- set tools = [] %}
22
+ {%- endif %}
23
+
24
+ {%- if system_message is defined %}
25
+ {{- "<|im_start|>system\n" + system_message }}
26
+ {%- else %}
27
+ {%- if tools is iterable and tools | length > 0 %}
28
+ {{- "<|im_start|>system\nYou are Qwen, a helpful AI assistant that can interact with a computer to solve tasks." }}
29
+ {%- endif %}
30
+ {%- endif %}
31
+ {%- if tools is iterable and tools | length > 0 %}
32
+ {{- "\n\n# Tools\n\nYou have access to the following functions:\n\n" }}
33
+ {{- "<tools>" }}
34
+ {%- for tool in tools %}
35
+ {%- if tool.function is defined %}
36
+ {%- set tool = tool.function %}
37
+ {%- endif %}
38
+ {{- "\n<function>\n<name>" ~ tool.name ~ "</name>" }}
39
+ {%- if tool.description is defined %}
40
+ {{- '\n<description>' ~ (tool.description | trim) ~ '</description>' }}
41
+ {%- endif %}
42
+ {{- '\n<parameters>' }}
43
+ {%- if tool.parameters is defined and tool.parameters is mapping and tool.parameters.properties is defined and tool.parameters.properties is mapping %}
44
+ {%- for param_name, param_fields in tool.parameters.properties|items %}
45
+ {{- '\n<parameter>' }}
46
+ {{- '\n<name>' ~ param_name ~ '</name>' }}
47
+ {%- if param_fields.type is defined %}
48
+ {{- '\n<type>' ~ (param_fields.type | string) ~ '</type>' }}
49
+ {%- endif %}
50
+ {%- if param_fields.description is defined %}
51
+ {{- '\n<description>' ~ (param_fields.description | trim) ~ '</description>' }}
52
+ {%- endif %}
53
+ {%- set handled_keys = ['name', 'type', 'description'] %}
54
+ {{- render_extra_keys(param_fields, handled_keys) }}
55
+ {{- '\n</parameter>' }}
56
+ {%- endfor %}
57
+ {%- endif %}
58
+ {% set handled_keys = ['type', 'properties'] %}
59
+ {{- render_extra_keys(tool.parameters, handled_keys) }}
60
+ {{- '\n</parameters>' }}
61
+ {%- set handled_keys = ['type', 'name', 'description', 'parameters'] %}
62
+ {{- render_extra_keys(tool, handled_keys) }}
63
+ {{- '\n</function>' }}
64
+ {%- endfor %}
65
+ {{- "\n</tools>" }}
66
+ {{- '\n\nIf you choose to call a function ONLY reply in the following format with NO suffix:\n\n<tool_call>\n<function=example_function_name>\n<parameter=example_parameter_1>\nvalue_1\n</parameter>\n<parameter=example_parameter_2>\nThis is the value for the second parameter\nthat can span\nmultiple lines\n</parameter>\n</function>\n</tool_call>\n\n<IMPORTANT>\nReminder:\n- Function calls MUST follow the specified format: an inner <function=...></function> block must be nested within <tool_call></tool_call> XML tags\n- Required parameters MUST be specified\n- You may provide optional reasoning for your function call in natural language BEFORE the function call, but NOT after\n- If there is no function call available, answer the question like normal with your current knowledge and do not tell the user about function calls\n</IMPORTANT>' }}
67
+ {%- endif %}
68
+ {%- if system_message is defined %}
69
+ {{- '<|im_end|>\n' }}
70
+ {%- else %}
71
+ {%- if tools is iterable and tools | length > 0 %}
72
+ {{- '<|im_end|>\n' }}
73
+ {%- endif %}
74
+ {%- endif %}
75
+ {%- for message in loop_messages %}
76
+ {%- if message.role == "assistant" and message.tool_calls is defined and message.tool_calls is iterable and message.tool_calls | length > 0 %}
77
+ {{- '<|im_start|>' + message.role }}
78
+ {%- if message.content is defined and message.content is string and message.content | trim | length > 0 %}
79
+ {{- '\n' + message.content | trim + '\n' }}
80
+ {%- endif %}
81
+ {%- for tool_call in message.tool_calls %}
82
+ {%- if tool_call.function is defined %}
83
+ {%- set tool_call = tool_call.function %}
84
+ {%- endif %}
85
+ {{- '\n<tool_call>\n<function=' + tool_call.name + '>\n' }}
86
+ {%- if tool_call.arguments is defined %}
87
+ {%- for args_name, args_value in tool_call.arguments|items %}
88
+ {{- '<parameter=' + args_name + '>\n' }}
89
+ {%- set args_value = args_value | tojson | safe if args_value is mapping or (args_value is sequence and args_value is not string) else args_value | string %}
90
+ {{- args_value }}
91
+ {{- '\n</parameter>\n' }}
92
+ {%- endfor %}
93
+ {%- endif %}
94
+ {{- '</function>\n</tool_call>' }}
95
+ {%- endfor %}
96
+ {{- '<|im_end|>\n' }}
97
+ {%- elif message.role == "user" or message.role == "system" or message.role == "assistant" %}
98
+ {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }}
99
+ {%- elif message.role == "tool" %}
100
+ {%- if loop.previtem and loop.previtem.role != "tool" %}
101
+ {{- '<|im_start|>user\n' }}
102
+ {%- endif %}
103
+ {{- '<tool_response>\n' }}
104
+ {{- message.content }}
105
+ {{- '\n</tool_response>\n' }}
106
+ {%- if not loop.last and loop.nextitem.role != "tool" %}
107
+ {{- '<|im_end|>\n' }}
108
+ {%- elif loop.last %}
109
+ {{- '<|im_end|>\n' }}
110
+ {%- endif %}
111
+ {%- else %}
112
+ {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>\n' }}
113
+ {%- endif %}
114
+ {%- endfor %}
115
+ {%- if add_generation_prompt %}
116
+ {{- '<|im_start|>assistant\n' }}
117
+ {%- endif %}
config.json ADDED
@@ -0,0 +1,388 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "Qwen3MoeForCausalLM"
4
+ ],
5
+ "attention_bias": false,
6
+ "attention_dropout": 0.0,
7
+ "decoder_sparse_step": 1,
8
+ "dtype": "bfloat16",
9
+ "eos_token_id": 151645,
10
+ "head_dim": 128,
11
+ "hidden_act": "silu",
12
+ "hidden_size": 2048,
13
+ "initializer_range": 0.02,
14
+ "intermediate_size": 5472,
15
+ "max_position_embeddings": 262144,
16
+ "max_window_layers": 28,
17
+ "mlp_only_layers": [],
18
+ "model_type": "qwen3_moe",
19
+ "moe_intermediate_size": 768,
20
+ "norm_topk_prob": true,
21
+ "num_attention_heads": 32,
22
+ "num_experts": 103,
23
+ "num_experts_per_tok": 8,
24
+ "num_hidden_layers": 48,
25
+ "num_key_value_heads": 4,
26
+ "output_router_logits": false,
27
+ "qkv_bias": false,
28
+ "quantization_config": {
29
+ "autoround_version": "0.9.4",
30
+ "bits": 4,
31
+ "data_type": "int",
32
+ "extra_config": {
33
+ "model.layers.0.mlp.gate": {
34
+ "act_bits": 16,
35
+ "bits": 16,
36
+ "data_type": "fp",
37
+ "group_size": 128,
38
+ "sym": true
39
+ },
40
+ "model.layers.1.mlp.gate": {
41
+ "act_bits": 16,
42
+ "bits": 16,
43
+ "data_type": "fp",
44
+ "group_size": 128,
45
+ "sym": true
46
+ },
47
+ "model.layers.10.mlp.gate": {
48
+ "act_bits": 16,
49
+ "bits": 16,
50
+ "data_type": "fp",
51
+ "group_size": 128,
52
+ "sym": true
53
+ },
54
+ "model.layers.11.mlp.gate": {
55
+ "act_bits": 16,
56
+ "bits": 16,
57
+ "data_type": "fp",
58
+ "group_size": 128,
59
+ "sym": true
60
+ },
61
+ "model.layers.12.mlp.gate": {
62
+ "act_bits": 16,
63
+ "bits": 16,
64
+ "data_type": "fp",
65
+ "group_size": 128,
66
+ "sym": true
67
+ },
68
+ "model.layers.13.mlp.gate": {
69
+ "act_bits": 16,
70
+ "bits": 16,
71
+ "data_type": "fp",
72
+ "group_size": 128,
73
+ "sym": true
74
+ },
75
+ "model.layers.14.mlp.gate": {
76
+ "act_bits": 16,
77
+ "bits": 16,
78
+ "data_type": "fp",
79
+ "group_size": 128,
80
+ "sym": true
81
+ },
82
+ "model.layers.15.mlp.gate": {
83
+ "act_bits": 16,
84
+ "bits": 16,
85
+ "data_type": "fp",
86
+ "group_size": 128,
87
+ "sym": true
88
+ },
89
+ "model.layers.16.mlp.gate": {
90
+ "act_bits": 16,
91
+ "bits": 16,
92
+ "data_type": "fp",
93
+ "group_size": 128,
94
+ "sym": true
95
+ },
96
+ "model.layers.17.mlp.gate": {
97
+ "act_bits": 16,
98
+ "bits": 16,
99
+ "data_type": "fp",
100
+ "group_size": 128,
101
+ "sym": true
102
+ },
103
+ "model.layers.18.mlp.gate": {
104
+ "act_bits": 16,
105
+ "bits": 16,
106
+ "data_type": "fp",
107
+ "group_size": 128,
108
+ "sym": true
109
+ },
110
+ "model.layers.19.mlp.gate": {
111
+ "act_bits": 16,
112
+ "bits": 16,
113
+ "data_type": "fp",
114
+ "group_size": 128,
115
+ "sym": true
116
+ },
117
+ "model.layers.2.mlp.gate": {
118
+ "act_bits": 16,
119
+ "bits": 16,
120
+ "data_type": "fp",
121
+ "group_size": 128,
122
+ "sym": true
123
+ },
124
+ "model.layers.20.mlp.gate": {
125
+ "act_bits": 16,
126
+ "bits": 16,
127
+ "data_type": "fp",
128
+ "group_size": 128,
129
+ "sym": true
130
+ },
131
+ "model.layers.21.mlp.gate": {
132
+ "act_bits": 16,
133
+ "bits": 16,
134
+ "data_type": "fp",
135
+ "group_size": 128,
136
+ "sym": true
137
+ },
138
+ "model.layers.22.mlp.gate": {
139
+ "act_bits": 16,
140
+ "bits": 16,
141
+ "data_type": "fp",
142
+ "group_size": 128,
143
+ "sym": true
144
+ },
145
+ "model.layers.23.mlp.gate": {
146
+ "act_bits": 16,
147
+ "bits": 16,
148
+ "data_type": "fp",
149
+ "group_size": 128,
150
+ "sym": true
151
+ },
152
+ "model.layers.24.mlp.gate": {
153
+ "act_bits": 16,
154
+ "bits": 16,
155
+ "data_type": "fp",
156
+ "group_size": 128,
157
+ "sym": true
158
+ },
159
+ "model.layers.25.mlp.gate": {
160
+ "act_bits": 16,
161
+ "bits": 16,
162
+ "data_type": "fp",
163
+ "group_size": 128,
164
+ "sym": true
165
+ },
166
+ "model.layers.26.mlp.gate": {
167
+ "act_bits": 16,
168
+ "bits": 16,
169
+ "data_type": "fp",
170
+ "group_size": 128,
171
+ "sym": true
172
+ },
173
+ "model.layers.27.mlp.gate": {
174
+ "act_bits": 16,
175
+ "bits": 16,
176
+ "data_type": "fp",
177
+ "group_size": 128,
178
+ "sym": true
179
+ },
180
+ "model.layers.28.mlp.gate": {
181
+ "act_bits": 16,
182
+ "bits": 16,
183
+ "data_type": "fp",
184
+ "group_size": 128,
185
+ "sym": true
186
+ },
187
+ "model.layers.29.mlp.gate": {
188
+ "act_bits": 16,
189
+ "bits": 16,
190
+ "data_type": "fp",
191
+ "group_size": 128,
192
+ "sym": true
193
+ },
194
+ "model.layers.3.mlp.gate": {
195
+ "act_bits": 16,
196
+ "bits": 16,
197
+ "data_type": "fp",
198
+ "group_size": 128,
199
+ "sym": true
200
+ },
201
+ "model.layers.30.mlp.gate": {
202
+ "act_bits": 16,
203
+ "bits": 16,
204
+ "data_type": "fp",
205
+ "group_size": 128,
206
+ "sym": true
207
+ },
208
+ "model.layers.31.mlp.gate": {
209
+ "act_bits": 16,
210
+ "bits": 16,
211
+ "data_type": "fp",
212
+ "group_size": 128,
213
+ "sym": true
214
+ },
215
+ "model.layers.32.mlp.gate": {
216
+ "act_bits": 16,
217
+ "bits": 16,
218
+ "data_type": "fp",
219
+ "group_size": 128,
220
+ "sym": true
221
+ },
222
+ "model.layers.33.mlp.gate": {
223
+ "act_bits": 16,
224
+ "bits": 16,
225
+ "data_type": "fp",
226
+ "group_size": 128,
227
+ "sym": true
228
+ },
229
+ "model.layers.34.mlp.gate": {
230
+ "act_bits": 16,
231
+ "bits": 16,
232
+ "data_type": "fp",
233
+ "group_size": 128,
234
+ "sym": true
235
+ },
236
+ "model.layers.35.mlp.gate": {
237
+ "act_bits": 16,
238
+ "bits": 16,
239
+ "data_type": "fp",
240
+ "group_size": 128,
241
+ "sym": true
242
+ },
243
+ "model.layers.36.mlp.gate": {
244
+ "act_bits": 16,
245
+ "bits": 16,
246
+ "data_type": "fp",
247
+ "group_size": 128,
248
+ "sym": true
249
+ },
250
+ "model.layers.37.mlp.gate": {
251
+ "act_bits": 16,
252
+ "bits": 16,
253
+ "data_type": "fp",
254
+ "group_size": 128,
255
+ "sym": true
256
+ },
257
+ "model.layers.38.mlp.gate": {
258
+ "act_bits": 16,
259
+ "bits": 16,
260
+ "data_type": "fp",
261
+ "group_size": 128,
262
+ "sym": true
263
+ },
264
+ "model.layers.39.mlp.gate": {
265
+ "act_bits": 16,
266
+ "bits": 16,
267
+ "data_type": "fp",
268
+ "group_size": 128,
269
+ "sym": true
270
+ },
271
+ "model.layers.4.mlp.gate": {
272
+ "act_bits": 16,
273
+ "bits": 16,
274
+ "data_type": "fp",
275
+ "group_size": 128,
276
+ "sym": true
277
+ },
278
+ "model.layers.40.mlp.gate": {
279
+ "act_bits": 16,
280
+ "bits": 16,
281
+ "data_type": "fp",
282
+ "group_size": 128,
283
+ "sym": true
284
+ },
285
+ "model.layers.41.mlp.gate": {
286
+ "act_bits": 16,
287
+ "bits": 16,
288
+ "data_type": "fp",
289
+ "group_size": 128,
290
+ "sym": true
291
+ },
292
+ "model.layers.42.mlp.gate": {
293
+ "act_bits": 16,
294
+ "bits": 16,
295
+ "data_type": "fp",
296
+ "group_size": 128,
297
+ "sym": true
298
+ },
299
+ "model.layers.43.mlp.gate": {
300
+ "act_bits": 16,
301
+ "bits": 16,
302
+ "data_type": "fp",
303
+ "group_size": 128,
304
+ "sym": true
305
+ },
306
+ "model.layers.44.mlp.gate": {
307
+ "act_bits": 16,
308
+ "bits": 16,
309
+ "data_type": "fp",
310
+ "group_size": 128,
311
+ "sym": true
312
+ },
313
+ "model.layers.45.mlp.gate": {
314
+ "act_bits": 16,
315
+ "bits": 16,
316
+ "data_type": "fp",
317
+ "group_size": 128,
318
+ "sym": true
319
+ },
320
+ "model.layers.46.mlp.gate": {
321
+ "act_bits": 16,
322
+ "bits": 16,
323
+ "data_type": "fp",
324
+ "group_size": 128,
325
+ "sym": true
326
+ },
327
+ "model.layers.47.mlp.gate": {
328
+ "act_bits": 16,
329
+ "bits": 16,
330
+ "data_type": "fp",
331
+ "group_size": 128,
332
+ "sym": true
333
+ },
334
+ "model.layers.5.mlp.gate": {
335
+ "act_bits": 16,
336
+ "bits": 16,
337
+ "data_type": "fp",
338
+ "group_size": 128,
339
+ "sym": true
340
+ },
341
+ "model.layers.6.mlp.gate": {
342
+ "act_bits": 16,
343
+ "bits": 16,
344
+ "data_type": "fp",
345
+ "group_size": 128,
346
+ "sym": true
347
+ },
348
+ "model.layers.7.mlp.gate": {
349
+ "act_bits": 16,
350
+ "bits": 16,
351
+ "data_type": "fp",
352
+ "group_size": 128,
353
+ "sym": true
354
+ },
355
+ "model.layers.8.mlp.gate": {
356
+ "act_bits": 16,
357
+ "bits": 16,
358
+ "data_type": "fp",
359
+ "group_size": 128,
360
+ "sym": true
361
+ },
362
+ "model.layers.9.mlp.gate": {
363
+ "act_bits": 16,
364
+ "bits": 16,
365
+ "data_type": "fp",
366
+ "group_size": 128,
367
+ "sym": true
368
+ }
369
+ },
370
+ "group_size": 128,
371
+ "low_gpu_mem_usage": true,
372
+ "packing_format": "auto_round:auto_gptq",
373
+ "quant_method": "auto-round",
374
+ "sym": true
375
+ },
376
+ "rms_norm_eps": 1e-06,
377
+ "rope_scaling": null,
378
+ "rope_theta": 10000000,
379
+ "router_aux_loss_coef": 0.0,
380
+ "shared_expert_intermediate_size": 0,
381
+ "sliding_window": null,
382
+ "tie_word_embeddings": false,
383
+ "transformers_version": "4.57.3",
384
+ "use_cache": true,
385
+ "use_qk_norm": true,
386
+ "use_sliding_window": false,
387
+ "vocab_size": 151936
388
+ }
generation_config.json ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "do_sample": true,
3
+ "eos_token_id": [
4
+ 151645,
5
+ 151643
6
+ ],
7
+ "pad_token_id": 151643,
8
+ "repetition_penalty": 1.05,
9
+ "temperature": 0.7,
10
+ "top_k": 20,
11
+ "top_p": 0.8,
12
+ "transformers_version": "4.57.3"
13
+ }
merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
model-00001-of-00003.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c778331b621990f62a8c044c9f40b41099dd37c137783144a42c4ec9f1dbfc33
3
+ size 5001665096
model-00002-of-00003.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e18ddf143240b8fab01d544f8e13ed2bda71aa047e275a94f3b4dddf0d537782
3
+ size 5001522136
model-00003-of-00003.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c1a7b3f4c49b5af671dfc90d19b144b9de9e5bb22d4295d409a17e257c2e7b89
3
+ size 3858301424
model.safetensors.index.json ADDED
The diff for this file is too large to render. See raw diff
 
quantization_config.json ADDED
@@ -0,0 +1,348 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bits": 4,
3
+ "group_size": 128,
4
+ "sym": true,
5
+ "data_type": "int",
6
+ "low_gpu_mem_usage": true,
7
+ "autoround_version": "0.9.4",
8
+ "quant_method": "auto-round",
9
+ "packing_format": "auto_round:auto_gptq",
10
+ "extra_config": {
11
+ "model.layers.0.mlp.gate": {
12
+ "bits": 16,
13
+ "group_size": 128,
14
+ "sym": true,
15
+ "data_type": "fp",
16
+ "act_bits": 16
17
+ },
18
+ "model.layers.1.mlp.gate": {
19
+ "bits": 16,
20
+ "group_size": 128,
21
+ "sym": true,
22
+ "data_type": "fp",
23
+ "act_bits": 16
24
+ },
25
+ "model.layers.2.mlp.gate": {
26
+ "bits": 16,
27
+ "group_size": 128,
28
+ "sym": true,
29
+ "data_type": "fp",
30
+ "act_bits": 16
31
+ },
32
+ "model.layers.3.mlp.gate": {
33
+ "bits": 16,
34
+ "group_size": 128,
35
+ "sym": true,
36
+ "data_type": "fp",
37
+ "act_bits": 16
38
+ },
39
+ "model.layers.4.mlp.gate": {
40
+ "bits": 16,
41
+ "group_size": 128,
42
+ "sym": true,
43
+ "data_type": "fp",
44
+ "act_bits": 16
45
+ },
46
+ "model.layers.5.mlp.gate": {
47
+ "bits": 16,
48
+ "group_size": 128,
49
+ "sym": true,
50
+ "data_type": "fp",
51
+ "act_bits": 16
52
+ },
53
+ "model.layers.6.mlp.gate": {
54
+ "bits": 16,
55
+ "group_size": 128,
56
+ "sym": true,
57
+ "data_type": "fp",
58
+ "act_bits": 16
59
+ },
60
+ "model.layers.7.mlp.gate": {
61
+ "bits": 16,
62
+ "group_size": 128,
63
+ "sym": true,
64
+ "data_type": "fp",
65
+ "act_bits": 16
66
+ },
67
+ "model.layers.8.mlp.gate": {
68
+ "bits": 16,
69
+ "group_size": 128,
70
+ "sym": true,
71
+ "data_type": "fp",
72
+ "act_bits": 16
73
+ },
74
+ "model.layers.9.mlp.gate": {
75
+ "bits": 16,
76
+ "group_size": 128,
77
+ "sym": true,
78
+ "data_type": "fp",
79
+ "act_bits": 16
80
+ },
81
+ "model.layers.10.mlp.gate": {
82
+ "bits": 16,
83
+ "group_size": 128,
84
+ "sym": true,
85
+ "data_type": "fp",
86
+ "act_bits": 16
87
+ },
88
+ "model.layers.11.mlp.gate": {
89
+ "bits": 16,
90
+ "group_size": 128,
91
+ "sym": true,
92
+ "data_type": "fp",
93
+ "act_bits": 16
94
+ },
95
+ "model.layers.12.mlp.gate": {
96
+ "bits": 16,
97
+ "group_size": 128,
98
+ "sym": true,
99
+ "data_type": "fp",
100
+ "act_bits": 16
101
+ },
102
+ "model.layers.13.mlp.gate": {
103
+ "bits": 16,
104
+ "group_size": 128,
105
+ "sym": true,
106
+ "data_type": "fp",
107
+ "act_bits": 16
108
+ },
109
+ "model.layers.14.mlp.gate": {
110
+ "bits": 16,
111
+ "group_size": 128,
112
+ "sym": true,
113
+ "data_type": "fp",
114
+ "act_bits": 16
115
+ },
116
+ "model.layers.15.mlp.gate": {
117
+ "bits": 16,
118
+ "group_size": 128,
119
+ "sym": true,
120
+ "data_type": "fp",
121
+ "act_bits": 16
122
+ },
123
+ "model.layers.16.mlp.gate": {
124
+ "bits": 16,
125
+ "group_size": 128,
126
+ "sym": true,
127
+ "data_type": "fp",
128
+ "act_bits": 16
129
+ },
130
+ "model.layers.17.mlp.gate": {
131
+ "bits": 16,
132
+ "group_size": 128,
133
+ "sym": true,
134
+ "data_type": "fp",
135
+ "act_bits": 16
136
+ },
137
+ "model.layers.18.mlp.gate": {
138
+ "bits": 16,
139
+ "group_size": 128,
140
+ "sym": true,
141
+ "data_type": "fp",
142
+ "act_bits": 16
143
+ },
144
+ "model.layers.19.mlp.gate": {
145
+ "bits": 16,
146
+ "group_size": 128,
147
+ "sym": true,
148
+ "data_type": "fp",
149
+ "act_bits": 16
150
+ },
151
+ "model.layers.20.mlp.gate": {
152
+ "bits": 16,
153
+ "group_size": 128,
154
+ "sym": true,
155
+ "data_type": "fp",
156
+ "act_bits": 16
157
+ },
158
+ "model.layers.21.mlp.gate": {
159
+ "bits": 16,
160
+ "group_size": 128,
161
+ "sym": true,
162
+ "data_type": "fp",
163
+ "act_bits": 16
164
+ },
165
+ "model.layers.22.mlp.gate": {
166
+ "bits": 16,
167
+ "group_size": 128,
168
+ "sym": true,
169
+ "data_type": "fp",
170
+ "act_bits": 16
171
+ },
172
+ "model.layers.23.mlp.gate": {
173
+ "bits": 16,
174
+ "group_size": 128,
175
+ "sym": true,
176
+ "data_type": "fp",
177
+ "act_bits": 16
178
+ },
179
+ "model.layers.24.mlp.gate": {
180
+ "bits": 16,
181
+ "group_size": 128,
182
+ "sym": true,
183
+ "data_type": "fp",
184
+ "act_bits": 16
185
+ },
186
+ "model.layers.25.mlp.gate": {
187
+ "bits": 16,
188
+ "group_size": 128,
189
+ "sym": true,
190
+ "data_type": "fp",
191
+ "act_bits": 16
192
+ },
193
+ "model.layers.26.mlp.gate": {
194
+ "bits": 16,
195
+ "group_size": 128,
196
+ "sym": true,
197
+ "data_type": "fp",
198
+ "act_bits": 16
199
+ },
200
+ "model.layers.27.mlp.gate": {
201
+ "bits": 16,
202
+ "group_size": 128,
203
+ "sym": true,
204
+ "data_type": "fp",
205
+ "act_bits": 16
206
+ },
207
+ "model.layers.28.mlp.gate": {
208
+ "bits": 16,
209
+ "group_size": 128,
210
+ "sym": true,
211
+ "data_type": "fp",
212
+ "act_bits": 16
213
+ },
214
+ "model.layers.29.mlp.gate": {
215
+ "bits": 16,
216
+ "group_size": 128,
217
+ "sym": true,
218
+ "data_type": "fp",
219
+ "act_bits": 16
220
+ },
221
+ "model.layers.30.mlp.gate": {
222
+ "bits": 16,
223
+ "group_size": 128,
224
+ "sym": true,
225
+ "data_type": "fp",
226
+ "act_bits": 16
227
+ },
228
+ "model.layers.31.mlp.gate": {
229
+ "bits": 16,
230
+ "group_size": 128,
231
+ "sym": true,
232
+ "data_type": "fp",
233
+ "act_bits": 16
234
+ },
235
+ "model.layers.32.mlp.gate": {
236
+ "bits": 16,
237
+ "group_size": 128,
238
+ "sym": true,
239
+ "data_type": "fp",
240
+ "act_bits": 16
241
+ },
242
+ "model.layers.33.mlp.gate": {
243
+ "bits": 16,
244
+ "group_size": 128,
245
+ "sym": true,
246
+ "data_type": "fp",
247
+ "act_bits": 16
248
+ },
249
+ "model.layers.34.mlp.gate": {
250
+ "bits": 16,
251
+ "group_size": 128,
252
+ "sym": true,
253
+ "data_type": "fp",
254
+ "act_bits": 16
255
+ },
256
+ "model.layers.35.mlp.gate": {
257
+ "bits": 16,
258
+ "group_size": 128,
259
+ "sym": true,
260
+ "data_type": "fp",
261
+ "act_bits": 16
262
+ },
263
+ "model.layers.36.mlp.gate": {
264
+ "bits": 16,
265
+ "group_size": 128,
266
+ "sym": true,
267
+ "data_type": "fp",
268
+ "act_bits": 16
269
+ },
270
+ "model.layers.37.mlp.gate": {
271
+ "bits": 16,
272
+ "group_size": 128,
273
+ "sym": true,
274
+ "data_type": "fp",
275
+ "act_bits": 16
276
+ },
277
+ "model.layers.38.mlp.gate": {
278
+ "bits": 16,
279
+ "group_size": 128,
280
+ "sym": true,
281
+ "data_type": "fp",
282
+ "act_bits": 16
283
+ },
284
+ "model.layers.39.mlp.gate": {
285
+ "bits": 16,
286
+ "group_size": 128,
287
+ "sym": true,
288
+ "data_type": "fp",
289
+ "act_bits": 16
290
+ },
291
+ "model.layers.40.mlp.gate": {
292
+ "bits": 16,
293
+ "group_size": 128,
294
+ "sym": true,
295
+ "data_type": "fp",
296
+ "act_bits": 16
297
+ },
298
+ "model.layers.41.mlp.gate": {
299
+ "bits": 16,
300
+ "group_size": 128,
301
+ "sym": true,
302
+ "data_type": "fp",
303
+ "act_bits": 16
304
+ },
305
+ "model.layers.42.mlp.gate": {
306
+ "bits": 16,
307
+ "group_size": 128,
308
+ "sym": true,
309
+ "data_type": "fp",
310
+ "act_bits": 16
311
+ },
312
+ "model.layers.43.mlp.gate": {
313
+ "bits": 16,
314
+ "group_size": 128,
315
+ "sym": true,
316
+ "data_type": "fp",
317
+ "act_bits": 16
318
+ },
319
+ "model.layers.44.mlp.gate": {
320
+ "bits": 16,
321
+ "group_size": 128,
322
+ "sym": true,
323
+ "data_type": "fp",
324
+ "act_bits": 16
325
+ },
326
+ "model.layers.45.mlp.gate": {
327
+ "bits": 16,
328
+ "group_size": 128,
329
+ "sym": true,
330
+ "data_type": "fp",
331
+ "act_bits": 16
332
+ },
333
+ "model.layers.46.mlp.gate": {
334
+ "bits": 16,
335
+ "group_size": 128,
336
+ "sym": true,
337
+ "data_type": "fp",
338
+ "act_bits": 16
339
+ },
340
+ "model.layers.47.mlp.gate": {
341
+ "bits": 16,
342
+ "group_size": 128,
343
+ "sym": true,
344
+ "data_type": "fp",
345
+ "act_bits": 16
346
+ }
347
+ }
348
+ }
qwen3coder_tool_parser.py ADDED
@@ -0,0 +1,689 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # SPDX-License-Identifier: Apache-2.0
2
+ # SPDX-FileCopyrightText: Copyright contributors to the vLLM project
3
+ import ast
4
+ import json
5
+ import uuid
6
+ from collections.abc import Sequence
7
+ from typing import Any, List, Optional, Union
8
+
9
+ import regex as re
10
+
11
+ from vllm.entrypoints.openai.protocol import (ChatCompletionRequest,
12
+ ChatCompletionToolsParam,
13
+ DeltaFunctionCall, DeltaMessage,
14
+ DeltaToolCall,
15
+ ExtractedToolCallInformation,
16
+ FunctionCall, ToolCall)
17
+ from vllm.entrypoints.openai.tool_parsers.abstract_tool_parser import (
18
+ ToolParser, ToolParserManager)
19
+ from vllm.logger import init_logger
20
+ from vllm.transformers_utils.tokenizer import AnyTokenizer
21
+
22
+ logger = init_logger(__name__)
23
+
24
+
25
+ @ToolParserManager.register_module("qwen3_coder")
26
+ class Qwen3CoderToolParser(ToolParser):
27
+
28
+ def __init__(self, tokenizer: AnyTokenizer):
29
+ super().__init__(tokenizer)
30
+
31
+ self.current_tool_name_sent: bool = False
32
+ self.prev_tool_call_arr: list[dict] = []
33
+ self.current_tool_id: int = -1
34
+ self.streamed_args_for_tool: list[str] = []
35
+
36
+ # Sentinel tokens for streaming mode
37
+ self.tool_call_start_token: str = "<tool_call>"
38
+ self.tool_call_end_token: str = "</tool_call>"
39
+ self.tool_call_prefix: str = "<function="
40
+ self.function_end_token: str = "</function>"
41
+ self.parameter_prefix: str = "<parameter="
42
+ self.parameter_end_token: str = "</parameter>"
43
+ self.is_tool_call_started: bool = False
44
+ self.failed_count: int = 0
45
+
46
+ # Enhanced streaming state - reset for each new message
47
+ self._reset_streaming_state()
48
+
49
+ # Regex patterns
50
+ self.tool_call_complete_regex = re.compile(
51
+ r"<tool_call>(.*?)</tool_call>", re.DOTALL)
52
+ self.tool_call_regex = re.compile(
53
+ r"<tool_call>(.*?)</tool_call>|<tool_call>(.*?)$", re.DOTALL)
54
+ self.tool_call_function_regex = re.compile(
55
+ r"<function=(.*?)</function>|<function=(.*)$", re.DOTALL)
56
+ self.tool_call_parameter_regex = re.compile(
57
+ r"<parameter=(.*?)(?:</parameter>|(?=<parameter=)|(?=</function>)|$)",
58
+ re.DOTALL)
59
+
60
+ if not self.model_tokenizer:
61
+ raise ValueError(
62
+ "The model tokenizer must be passed to the ToolParser "
63
+ "constructor during construction.")
64
+
65
+ self.tool_call_start_token_id = self.vocab.get(
66
+ self.tool_call_start_token)
67
+ self.tool_call_end_token_id = self.vocab.get(self.tool_call_end_token)
68
+
69
+ if self.tool_call_start_token_id is None or self.tool_call_end_token_id is None:
70
+ raise RuntimeError(
71
+ "Qwen3 XML Tool parser could not locate tool call start/end "
72
+ "tokens in the tokenizer!")
73
+
74
+ logger.info(
75
+ f"vLLM Successfully import tool parser {self.__class__.__name__} !"
76
+ )
77
+
78
+ def _generate_tool_call_id(self) -> str:
79
+ """Generate a unique tool call ID."""
80
+ return f"call_{uuid.uuid4().hex[:24]}"
81
+
82
+ def _reset_streaming_state(self):
83
+ """Reset all streaming state."""
84
+ self.current_tool_index = 0
85
+ self.is_tool_call_started = False
86
+ self.header_sent = False
87
+ self.current_tool_id = None
88
+ self.current_function_name = None
89
+ self.current_param_name = None
90
+ self.current_param_value = ""
91
+ self.param_count = 0
92
+ self.in_param = False
93
+ self.in_function = False
94
+ self.accumulated_text = ""
95
+ self.json_started = False
96
+ self.json_closed = False
97
+ # Store accumulated parameters for type conversion
98
+ self.accumulated_params = {}
99
+ self.streaming_request = None
100
+
101
+ def _get_arguments_config(
102
+ self, func_name: str,
103
+ tools: Optional[list[ChatCompletionToolsParam]]) -> dict:
104
+ """Extract argument configuration for a function."""
105
+ if tools is None:
106
+ return {}
107
+ for config in tools:
108
+ if not hasattr(config, "type") or not (hasattr(
109
+ config, "function") and hasattr(config.function, "name")):
110
+ continue
111
+ if config.type == "function" and config.function.name == func_name:
112
+ if not hasattr(config.function, "parameters"):
113
+ return {}
114
+ params = config.function.parameters
115
+ if isinstance(params, dict) and "properties" in params:
116
+ return params["properties"]
117
+ elif isinstance(params, dict):
118
+ return params
119
+ else:
120
+ return {}
121
+ logger.warning(f"Tool '{func_name}' is not defined in the tools list.")
122
+ return {}
123
+
124
+ def _convert_param_value(self, param_value: str, param_name: str,
125
+ param_config: dict, func_name: str) -> Any:
126
+ """Convert parameter value based on its type in the schema."""
127
+ # Handle null value for any type
128
+ if param_value.lower() == "null":
129
+ return None
130
+
131
+ if param_name not in param_config:
132
+ if param_config != {}:
133
+ logger.warning(
134
+ f"Parsed parameter '{param_name}' is not defined in the tool "
135
+ f"parameters for tool '{func_name}', directly returning the string value."
136
+ )
137
+ return param_value
138
+
139
+ if isinstance(param_config[param_name],
140
+ dict) and "type" in param_config[param_name]:
141
+ param_type = str(param_config[param_name]["type"]).strip().lower()
142
+ else:
143
+ param_type = "string"
144
+ if param_type in ["string", "str", "text", "varchar", "char", "enum"]:
145
+ return param_value
146
+ elif param_type.startswith("int") or param_type.startswith(
147
+ "uint") or param_type.startswith(
148
+ "long") or param_type.startswith(
149
+ "short") or param_type.startswith("unsigned"):
150
+ try:
151
+ param_value = int(param_value)
152
+ except:
153
+ logger.warning(
154
+ f"Parsed value '{param_value}' of parameter '{param_name}' is not an integer in tool "
155
+ f"'{func_name}', degenerating to string.")
156
+ return param_value
157
+ elif param_type.startswith("num") or param_type.startswith("float"):
158
+ try:
159
+ float_param_value = float(param_value)
160
+ param_value = float_param_value if float_param_value - int(
161
+ float_param_value) != 0 else int(float_param_value)
162
+ except:
163
+ logger.warning(
164
+ f"Parsed value '{param_value}' of parameter '{param_name}' is not a float in tool "
165
+ f"'{func_name}', degenerating to string.")
166
+ return param_value
167
+ elif param_type in ["boolean", "bool", "binary"]:
168
+ param_value = param_value.lower()
169
+ if param_value not in ["true", "false"]:
170
+ logger.warning(
171
+ f"Parsed value '{param_value}' of parameter '{param_name}' is not a boolean (`true` of `false`) in tool '{func_name}', degenerating to false."
172
+ )
173
+ return param_value == "true"
174
+ else:
175
+ if param_type in ["object", "array", "arr"
176
+ ] or param_type.startswith(
177
+ "dict") or param_type.startswith("list"):
178
+ try:
179
+ param_value = json.loads(param_value)
180
+ return param_value
181
+ except:
182
+ logger.warning(
183
+ f"Parsed value '{param_value}' of parameter '{param_name}' cannot be parsed with json.loads in tool "
184
+ f"'{func_name}', will try other methods to parse it.")
185
+ try:
186
+ param_value = ast.literal_eval(param_value) # safer
187
+ except:
188
+ logger.warning(
189
+ f"Parsed value '{param_value}' of parameter '{param_name}' cannot be converted via Python `ast.literal_eval()` in tool '{func_name}', degenerating to string."
190
+ )
191
+ return param_value
192
+
193
+ def _parse_xml_function_call(
194
+ self, function_call_str: str,
195
+ tools: Optional[list[ChatCompletionToolsParam]]
196
+ ) -> Optional[ToolCall]:
197
+
198
+ # Extract function name
199
+ end_index = function_call_str.index(">")
200
+ function_name = function_call_str[:end_index]
201
+ param_config = self._get_arguments_config(function_name, tools)
202
+ parameters = function_call_str[end_index + 1:]
203
+ param_dict = {}
204
+ for match_text in self.tool_call_parameter_regex.findall(parameters):
205
+ idx = match_text.index(">")
206
+ param_name = match_text[:idx]
207
+ param_value = str(match_text[idx + 1:])
208
+ # Remove prefix and trailing \n
209
+ if param_value.startswith("\n"):
210
+ param_value = param_value[1:]
211
+ if param_value.endswith("\n"):
212
+ param_value = param_value[:-1]
213
+
214
+ param_dict[param_name] = self._convert_param_value(
215
+ param_value, param_name, param_config, function_name)
216
+ return ToolCall(
217
+ type="function",
218
+ function=FunctionCall(name=function_name,
219
+ arguments=json.dumps(param_dict,
220
+ ensure_ascii=False)),
221
+ )
222
+
223
+ def _get_function_calls(self, model_output: str) -> List[str]:
224
+ # Find all tool calls
225
+ matched_ranges = self.tool_call_regex.findall(model_output)
226
+ raw_tool_calls = [
227
+ match[0] if match[0] else match[1] for match in matched_ranges
228
+ ]
229
+
230
+ # Back-off strategy if no tool_call tags found
231
+ if len(raw_tool_calls) == 0:
232
+ raw_tool_calls = [model_output]
233
+
234
+ raw_function_calls = []
235
+ for tool_call in raw_tool_calls:
236
+ raw_function_calls.extend(
237
+ self.tool_call_function_regex.findall(tool_call))
238
+
239
+ function_calls = [
240
+ match[0] if match[0] else match[1] for match in raw_function_calls
241
+ ]
242
+ return function_calls
243
+
244
+ def extract_tool_calls(
245
+ self,
246
+ model_output: str,
247
+ request: ChatCompletionRequest,
248
+ ) -> ExtractedToolCallInformation:
249
+ # Quick check to avoid unnecessary processing
250
+ if self.tool_call_prefix not in model_output:
251
+ return ExtractedToolCallInformation(tools_called=False,
252
+ tool_calls=[],
253
+ content=model_output)
254
+
255
+ try:
256
+ function_calls = self._get_function_calls(model_output)
257
+ if len(function_calls) == 0:
258
+ return ExtractedToolCallInformation(tools_called=False,
259
+ tool_calls=[],
260
+ content=model_output)
261
+
262
+ tool_calls = [
263
+ self._parse_xml_function_call(function_call_str, request.tools)
264
+ for function_call_str in function_calls
265
+ ]
266
+
267
+ # Populate prev_tool_call_arr for serving layer to set finish_reason
268
+ self.prev_tool_call_arr.clear() # Clear previous calls
269
+ for tool_call in tool_calls:
270
+ if tool_call:
271
+ self.prev_tool_call_arr.append({
272
+ "name":
273
+ tool_call.function.name,
274
+ "arguments":
275
+ tool_call.function.arguments,
276
+ })
277
+
278
+ # Extract content before tool calls
279
+ content_index = model_output.find(self.tool_call_start_token)
280
+ content_index = content_index if content_index >= 0 else model_output.find(
281
+ self.tool_call_prefix)
282
+ content = model_output[:content_index] # .rstrip()
283
+
284
+ return ExtractedToolCallInformation(
285
+ tools_called=(len(tool_calls) > 0),
286
+ tool_calls=tool_calls,
287
+ content=content if content else None,
288
+ )
289
+
290
+ except Exception:
291
+ logger.exception("Error in extracting tool call from response.")
292
+ return ExtractedToolCallInformation(tools_called=False,
293
+ tool_calls=[],
294
+ content=model_output)
295
+
296
+ def extract_tool_calls_streaming(
297
+ self,
298
+ previous_text: str,
299
+ current_text: str,
300
+ delta_text: str,
301
+ previous_token_ids: Sequence[int],
302
+ current_token_ids: Sequence[int],
303
+ delta_token_ids: Sequence[int],
304
+ request: ChatCompletionRequest,
305
+ ) -> Union[DeltaMessage, None]:
306
+ # Store request for type conversion
307
+ if not previous_text:
308
+ self._reset_streaming_state()
309
+ self.streaming_request = request
310
+
311
+ # If no delta text, return None unless it's an EOS token after tool calls
312
+ if not delta_text:
313
+ # Check if this is an EOS token after all tool calls are complete
314
+ # We check for tool calls in the text even if is_tool_call_started is False
315
+ # because it might have been reset after processing all tools
316
+ if delta_token_ids and self.tool_call_end_token_id not in delta_token_ids:
317
+ # Count complete tool calls
318
+ complete_calls = len(
319
+ self.tool_call_complete_regex.findall(current_text))
320
+
321
+ # If we have completed tool calls and populated prev_tool_call_arr
322
+ if complete_calls > 0 and len(self.prev_tool_call_arr) > 0:
323
+ # Check if all tool calls are closed
324
+ open_calls = current_text.count(
325
+ self.tool_call_start_token) - current_text.count(
326
+ self.tool_call_end_token)
327
+ if open_calls == 0:
328
+ # Return empty delta message to allow finish_reason processing
329
+ return DeltaMessage(content="")
330
+ elif not self.is_tool_call_started and current_text:
331
+ # This is a regular content response that's now complete
332
+ return DeltaMessage(content="")
333
+ return None
334
+
335
+ # Update accumulated text
336
+ self.accumulated_text = current_text
337
+
338
+ # Check if we need to advance to next tool
339
+ if self.json_closed and not self.in_function:
340
+ # Check if this tool call has ended
341
+ tool_ends = current_text.count(self.tool_call_end_token)
342
+ if tool_ends > self.current_tool_index:
343
+ # This tool has ended, advance to next
344
+ self.current_tool_index += 1
345
+ self.header_sent = False
346
+ self.param_count = 0
347
+ self.json_started = False
348
+ self.json_closed = False
349
+ self.accumulated_params = {}
350
+
351
+ # Check if there are more tool calls
352
+ tool_starts = current_text.count(self.tool_call_start_token)
353
+ if self.current_tool_index >= tool_starts:
354
+ # No more tool calls
355
+ self.is_tool_call_started = False
356
+ # Continue processing next tool
357
+ return None
358
+
359
+ # Handle normal content before tool calls
360
+ if not self.is_tool_call_started:
361
+ # Check if tool call is starting
362
+ if self.tool_call_start_token_id in delta_token_ids or self.tool_call_start_token in delta_text:
363
+ self.is_tool_call_started = True
364
+ # Return any content before the tool call
365
+ if self.tool_call_start_token in delta_text:
366
+ content_before = delta_text[:delta_text.index(
367
+ self.tool_call_start_token)]
368
+ if content_before:
369
+ return DeltaMessage(content=content_before)
370
+ return None
371
+ else:
372
+ # Check if we're between tool calls - skip whitespace
373
+ if current_text.rstrip().endswith(self.tool_call_end_token):
374
+ # We just ended a tool call, skip whitespace
375
+ if delta_text.strip() == "":
376
+ return None
377
+ # Normal content, no tool call
378
+ return DeltaMessage(content=delta_text)
379
+
380
+ # Check if we're between tool calls (waiting for next one)
381
+ # Count tool calls we've seen vs processed
382
+ tool_starts_count = current_text.count(self.tool_call_start_token)
383
+ if self.current_tool_index >= tool_starts_count:
384
+ # We're past all tool calls, shouldn't be here
385
+ return None
386
+
387
+ # We're in a tool call, find the current tool call portion
388
+ # Need to find the correct tool call based on current_tool_index
389
+ tool_starts = []
390
+ idx = 0
391
+ while True:
392
+ idx = current_text.find(self.tool_call_start_token, idx)
393
+ if idx == -1:
394
+ break
395
+ tool_starts.append(idx)
396
+ idx += len(self.tool_call_start_token)
397
+
398
+ if self.current_tool_index >= len(tool_starts):
399
+ # No more tool calls to process yet
400
+ return None
401
+
402
+ tool_start_idx = tool_starts[self.current_tool_index]
403
+ # Find where this tool call ends (or current position if not ended yet)
404
+ tool_end_idx = current_text.find(self.tool_call_end_token,
405
+ tool_start_idx)
406
+ if tool_end_idx == -1:
407
+ tool_text = current_text[tool_start_idx:]
408
+ else:
409
+ tool_text = current_text[tool_start_idx:tool_end_idx +
410
+ len(self.tool_call_end_token)]
411
+
412
+ # Looking for function header
413
+ if not self.header_sent:
414
+ if self.tool_call_prefix in tool_text:
415
+ func_start = tool_text.find(self.tool_call_prefix) + len(
416
+ self.tool_call_prefix)
417
+ func_end = tool_text.find(">", func_start)
418
+
419
+ if func_end != -1:
420
+ # Found complete function name
421
+ self.current_function_name = tool_text[func_start:func_end]
422
+ self.current_tool_id = self._generate_tool_call_id()
423
+ self.header_sent = True
424
+ self.in_function = True
425
+
426
+ # IMPORTANT: Add to prev_tool_call_arr immediately when we detect a tool call
427
+ # This ensures finish_reason="tool_calls" even if parsing isn't complete
428
+ already_added = any(
429
+ tool.get("name") == self.current_function_name
430
+ for tool in self.prev_tool_call_arr)
431
+ if not already_added:
432
+ self.prev_tool_call_arr.append({
433
+ "name": self.current_function_name,
434
+ "arguments":
435
+ "{}", # Placeholder, will be updated later
436
+ })
437
+
438
+ # Send header with function info
439
+ return DeltaMessage(tool_calls=[
440
+ DeltaToolCall(
441
+ index=self.current_tool_index,
442
+ id=self.current_tool_id,
443
+ function=DeltaFunctionCall(
444
+ name=self.current_function_name, arguments=""),
445
+ type="function",
446
+ )
447
+ ])
448
+ return None
449
+
450
+ # We've sent header, now handle function body
451
+ if self.in_function:
452
+ # Send opening brace if not sent yet
453
+ if not self.json_started and self.parameter_prefix not in delta_text:
454
+ self.json_started = True
455
+ return DeltaMessage(tool_calls=[
456
+ DeltaToolCall(
457
+ index=self.current_tool_index,
458
+ function=DeltaFunctionCall(arguments="{"),
459
+ )
460
+ ])
461
+
462
+ # Make sure json_started is set if we're processing parameters
463
+ if not self.json_started:
464
+ self.json_started = True
465
+
466
+ # Check for function end in accumulated text
467
+ if not self.json_closed and self.function_end_token in tool_text:
468
+ # Close JSON
469
+ self.json_closed = True
470
+
471
+ # Extract the complete tool call to update prev_tool_call_arr with final arguments
472
+ # Find the function content
473
+ func_start = tool_text.find(self.tool_call_prefix) + len(
474
+ self.tool_call_prefix)
475
+ func_content_end = tool_text.find(self.function_end_token,
476
+ func_start)
477
+ if func_content_end != -1:
478
+ func_content = tool_text[func_start:func_content_end]
479
+ # Parse to get the complete arguments
480
+ try:
481
+ parsed_tool = self._parse_xml_function_call(
482
+ func_content, self.streaming_request.tools
483
+ if self.streaming_request else None)
484
+ if parsed_tool:
485
+ # Update existing entry in prev_tool_call_arr with complete arguments
486
+ for i, tool in enumerate(self.prev_tool_call_arr):
487
+ if tool.get(
488
+ "name") == parsed_tool.function.name:
489
+ self.prev_tool_call_arr[i][
490
+ "arguments"] = parsed_tool.function.arguments
491
+ break
492
+ except Exception:
493
+ pass # Ignore parsing errors during streaming
494
+
495
+ result = DeltaMessage(tool_calls=[
496
+ DeltaToolCall(
497
+ index=self.current_tool_index,
498
+ function=DeltaFunctionCall(arguments="}"),
499
+ )
500
+ ])
501
+
502
+ # Reset state for next tool
503
+ self.in_function = False
504
+ self.json_closed = True
505
+ self.accumulated_params = {}
506
+
507
+ return result
508
+
509
+ # Look for parameters
510
+ # Find all parameter starts
511
+ param_starts = []
512
+ idx = 0
513
+ while True:
514
+ idx = tool_text.find(self.parameter_prefix, idx)
515
+ if idx == -1:
516
+ break
517
+ param_starts.append(idx)
518
+ idx += len(self.parameter_prefix)
519
+
520
+ # Check if we should start a new parameter
521
+ if not self.in_param and self.param_count < len(param_starts):
522
+
523
+ if len(param_starts) > self.param_count:
524
+ # Process the next parameter
525
+ param_idx = param_starts[self.param_count]
526
+ param_start = param_idx + len(self.parameter_prefix)
527
+ remaining = tool_text[param_start:]
528
+
529
+ if ">" in remaining:
530
+ # We have the complete parameter name
531
+ name_end = remaining.find(">")
532
+ self.current_param_name = remaining[:name_end]
533
+
534
+ # Find the parameter value
535
+ value_start = param_start + name_end + 1
536
+ value_text = tool_text[value_start:]
537
+ if value_text.startswith("\n"):
538
+ value_text = value_text[1:]
539
+
540
+ # Find where this parameter ends
541
+ param_end_idx = value_text.find(
542
+ self.parameter_end_token)
543
+ if param_end_idx == -1:
544
+ # No closing tag, look for next parameter or function end
545
+ next_param_idx = value_text.find(
546
+ self.parameter_prefix)
547
+ func_end_idx = value_text.find(
548
+ self.function_end_token)
549
+
550
+ if next_param_idx != -1 and (func_end_idx == -1
551
+ or next_param_idx
552
+ < func_end_idx):
553
+ param_end_idx = next_param_idx
554
+ elif func_end_idx != -1:
555
+ param_end_idx = func_end_idx
556
+ else:
557
+ # Neither found, check if tool call is complete
558
+ if self.tool_call_end_token in tool_text:
559
+ # Tool call is complete, so parameter must be complete too
560
+ # Use all remaining text before function end as value
561
+ param_end_idx = len(value_text)
562
+ else:
563
+ # Still streaming, wait for more content
564
+ return None
565
+
566
+ if param_end_idx != -1:
567
+ # Complete parameter found
568
+ param_value = value_text[:param_end_idx]
569
+ if param_value.endswith("\n"):
570
+ param_value = param_value[:-1]
571
+
572
+ # Store raw value for later processing
573
+ self.accumulated_params[
574
+ self.current_param_name] = param_value
575
+
576
+ # Get parameter configuration for type conversion
577
+ param_config = self._get_arguments_config(
578
+ self.current_function_name,
579
+ self.streaming_request.tools
580
+ if self.streaming_request else None)
581
+
582
+ # Convert the parameter value to the appropriate type
583
+ converted_value = self._convert_param_value(
584
+ param_value, self.current_param_name,
585
+ param_config, self.current_function_name)
586
+
587
+ # Build JSON fragment based on the converted type
588
+ # Use json.dumps to properly serialize the value
589
+ serialized_value = json.dumps(converted_value,
590
+ ensure_ascii=False)
591
+
592
+ if self.param_count == 0:
593
+ json_fragment = f'"{self.current_param_name}": {serialized_value}'
594
+ else:
595
+ json_fragment = f', "{self.current_param_name}": {serialized_value}'
596
+
597
+ self.param_count += 1
598
+
599
+ return DeltaMessage(tool_calls=[
600
+ DeltaToolCall(
601
+ index=self.current_tool_index,
602
+ function=DeltaFunctionCall(
603
+ arguments=json_fragment),
604
+ )
605
+ ])
606
+
607
+ # Continue parameter value - Not used in the current implementation
608
+ # since we process complete parameters above
609
+ if self.in_param:
610
+ if self.parameter_end_token in delta_text:
611
+ # End of parameter
612
+ end_idx = delta_text.find(self.parameter_end_token)
613
+ value_chunk = delta_text[:end_idx]
614
+
615
+ # Skip past > if at start
616
+ if not self.current_param_value and ">" in value_chunk:
617
+ gt_idx = value_chunk.find(">")
618
+ value_chunk = value_chunk[gt_idx + 1:]
619
+
620
+ if not self.current_param_value and value_chunk.startswith(
621
+ "\n"):
622
+ value_chunk = value_chunk[1:]
623
+
624
+ # Store complete value
625
+ full_value = self.current_param_value + value_chunk
626
+ self.accumulated_params[
627
+ self.current_param_name] = full_value
628
+
629
+ # Get parameter configuration for type conversion
630
+ param_config = self._get_arguments_config(
631
+ self.current_function_name,
632
+ self.streaming_request.tools
633
+ if self.streaming_request else None)
634
+
635
+ # Convert the parameter value to the appropriate type
636
+ converted_value = self._convert_param_value(
637
+ full_value, self.current_param_name, param_config,
638
+ self.current_function_name)
639
+
640
+ # Serialize the converted value
641
+ serialized_value = json.dumps(converted_value,
642
+ ensure_ascii=False)
643
+
644
+ # Since we've been streaming the quoted version, we need to close it properly
645
+ # This is complex - for now just complete the value
646
+ self.in_param = False
647
+ self.current_param_value = ""
648
+
649
+ # Just close the current parameter string
650
+ return DeltaMessage(tool_calls=[
651
+ DeltaToolCall(
652
+ index=self.current_tool_index,
653
+ function=DeltaFunctionCall(
654
+ arguments='"'), # Close the string quote
655
+ )
656
+ ])
657
+ else:
658
+ # Continue accumulating value
659
+ value_chunk = delta_text
660
+
661
+ # Handle first chunk after param name
662
+ if not self.current_param_value and ">" in value_chunk:
663
+ gt_idx = value_chunk.find(">")
664
+ value_chunk = value_chunk[gt_idx + 1:]
665
+
666
+ if not self.current_param_value and value_chunk.startswith(
667
+ "\n"):
668
+ value_chunk = value_chunk[1:]
669
+
670
+ if value_chunk:
671
+ # Stream the escaped delta
672
+ prev_escaped = json.dumps(
673
+ self.current_param_value, ensure_ascii=False
674
+ )[1:-1] if self.current_param_value else ""
675
+ self.current_param_value += value_chunk
676
+ full_escaped = json.dumps(self.current_param_value,
677
+ ensure_ascii=False)[1:-1]
678
+ delta_escaped = full_escaped[len(prev_escaped):]
679
+
680
+ if delta_escaped:
681
+ return DeltaMessage(tool_calls=[
682
+ DeltaToolCall(
683
+ index=self.current_tool_index,
684
+ function=DeltaFunctionCall(
685
+ arguments=delta_escaped),
686
+ )
687
+ ])
688
+
689
+ return None
special_tokens_map.json ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": {
25
+ "content": "<|endoftext|>",
26
+ "lstrip": false,
27
+ "normalized": false,
28
+ "rstrip": false,
29
+ "single_word": false
30
+ }
31
+ }
tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c0acdaba32b920d640afb36af4396c91974e074735636e4016d17a8ed9c03730
3
+ size 11422753
tokenizer_config.json ADDED
@@ -0,0 +1,239 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
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,
121
+ "rstrip": false,
122
+ "single_word": false,
123
+ "special": false
124
+ },
125
+ "151658": {
126
+ "content": "</tool_call>",
127
+ "lstrip": false,
128
+ "normalized": false,
129
+ "rstrip": 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
+ },
214
+ "additional_special_tokens": [
215
+ "<|im_start|>",
216
+ "<|im_end|>",
217
+ "<|object_ref_start|>",
218
+ "<|object_ref_end|>",
219
+ "<|box_start|>",
220
+ "<|box_end|>",
221
+ "<|quad_start|>",
222
+ "<|quad_end|>",
223
+ "<|vision_start|>",
224
+ "<|vision_end|>",
225
+ "<|vision_pad|>",
226
+ "<|image_pad|>",
227
+ "<|video_pad|>"
228
+ ],
229
+ "bos_token": null,
230
+ "clean_up_tokenization_spaces": false,
231
+ "eos_token": "<|im_end|>",
232
+ "errors": "replace",
233
+ "extra_special_tokens": {},
234
+ "model_max_length": 1048576,
235
+ "pad_token": "<|endoftext|>",
236
+ "split_special_tokens": false,
237
+ "tokenizer_class": "Qwen2Tokenizer",
238
+ "unk_token": null
239
+ }
vocab.json ADDED
The diff for this file is too large to render. See raw diff