vikramlingam commited on
Commit
cb40b71
·
verified ·
1 Parent(s): d7fb68f

Update weights-mlx/Qwen3.5-0.8B-MLX-4bit/chat_template.jinja

Browse files
weights-mlx/Qwen3.5-0.8B-MLX-4bit/chat_template.jinja CHANGED
@@ -1,221 +1,154 @@
1
- Hugging Face's logo
2
- Hugging Face
3
-
4
- Models
5
- Datasets
6
- Spaces
7
- Buckets
8
- NEW
9
- Docs
10
- Enterprise
11
- Pricing
12
-
13
-
14
- mlx-community
15
- /
16
- Qwen3.5-2B-4bit
17
-
18
- like
19
- 0
20
-
21
- Following
22
- MLX Community
23
- 9.48k
24
-
25
-
26
- Image-Text-to-Text
27
-
28
- Transformers
29
-
30
- Safetensors
31
-
32
- MLX
33
- qwen3_5
34
- conversational
35
-
36
- 4-bit precision
37
-
38
- License:
39
- apache-2.0
40
- Model card
41
-
42
- Files and versions
43
-
44
- xet
45
- Community
46
- Qwen3.5-2B-4bit
47
- /
48
- chat_template.jinja
49
-
50
- machiabeli's picture
51
- machiabeli
52
- Convert Qwen3.5 to MLX Qwen3.5-2B-4bit
53
- b631a05
54
- VERIFIED
55
- 9 days ago
56
- raw
57
-
58
- Copy download link
59
- history
60
- blame
61
- contribute
62
- delete
63
-
64
- 7.76 kB
65
  {%- set image_count = namespace(value=0) %}
66
  {%- set video_count = namespace(value=0) %}
67
  {%- macro render_content(content, do_vision_count, is_system_content=false) %}
68
- {%- if content is string %}
69
- {{- content }}
70
- {%- elif content is iterable and content is not mapping %}
71
- {%- for item in content %}
72
- {%- if 'image' in item or 'image_url' in item or item.type == 'image' %}
73
- {%- if is_system_content %}
74
- {{- raise_exception('System message cannot contain images.') }}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
75
  {%- endif %}
76
- {%- if do_vision_count %}
77
- {%- set image_count.value = image_count.value + 1 %}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
78
  {%- endif %}
79
- {%- if add_vision_id %}
80
- {{- 'Picture ' ~ image_count.value ~ ': ' }}
 
 
 
 
 
 
 
 
 
 
 
81
  {%- endif %}
82
- {{- '<|vision_start|>
83
- <|image_pad|>
84
- <|vision_end|>' }}
85
- {%- elif 'video' in item or item.type == 'video' %}
86
- {%- if is_system_content %}
87
- {{- raise_exception('System message cannot contain videos.') }}
88
- {%- endif %}
89
- {%- if do_vision_count %}
90
- {%- set video_count.value = video_count.value + 1 %}
91
- {%- endif %}
92
- {%- if add_vision_id %}
93
- {{- 'Video ' ~ video_count.value ~ ': ' }}
 
 
 
 
94
  {%- endif %}
95
- {{- '<|vision_start|>
96
- <|video_pad|>
97
- <|vision_end|>' }}
98
- {%- elif 'text' in item %}
99
- {{- item.text }}
100
- {%- else %}
101
- {{- raise_exception('Unexpected item type in content.') }}
102
- {%- endif %}
103
- {%- endfor %}
104
- {%- elif content is none or content is undefined %}
105
- {{- '' }}
106
- {%- else %}
107
- {{- raise_exception('Unexpected content type.') }}
108
- {%- endif %}
109
- {%- endmacro %}
110
- {%- if not messages %}
111
- {{- raise_exception('No messages provided.') }}
112
- {%- endif %}
113
- {%- if tools and tools is iterable and tools is not mapping %}
114
- {{- '<|im_start|>system\n' }}
115
- {{- "# Tools\n\nYou have access to the following functions:\n\n<tools>" }}
116
- {%- for tool in tools %}
117
- {{- "\n" }}
118
- {{- tool | tojson }}
119
- {%- endfor %}
120
- {{- "\n</tools>" }}
121
- {{- '\n\nIf you choose to call a function ONLY reply in the following format with NO
122
- suffix:\n\n<tool_call>\n<function=example_function_name>\n<parameter=example_parameter_1>
123
- \nvalue_1\n</parameter>\n<parameter=example_parameter_2>\nThis is the value for
124
- the second parameter\nthat can span\nmultiple lines\n</parameter>\n
125
- </function>\n</tool_call>\n\n<IMPORTANT>\nReminder:\n- Function calls MUST
126
- follow the specified format: an inner <function=...>
127
- </function> block must be nested within <tool_call></tool_call> XML tags\n- Required
128
- parameters MUST be specified\n- You may provide optional reasoning for your function
129
- call in natural language BEFORE the function call, but NOT after\n- If there is no
130
- function call available, answer the question like normal with your current knowledge
131
- and do not tell the user about function calls\n</IMPORTANT>' }}
132
- {%- if messages[0].role == 'system' %}
133
- {%- set content = render_content(messages[0].content, false, true)|trim %}
134
- {%- if content %}
135
- {{- '\n\n' + content }}
136
- {%- endif %}
137
- {%- endif %}
138
- {{- '<|im_end|>\n' }}
139
- {%- else %}
140
- {%- if messages[0].role == 'system' %}
141
- {%- set content = render_content(messages[0].content, false, true)|trim %}
142
- {{- '<|im_start|>system\n' + content + '<|im_end|>\n' }}
143
- {%- endif %}
144
- {%- endif %}
145
- {%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length -
146
- 1) %}
147
- {%- for message in messages[::-1] %}
148
- {%- set index = (messages|length - 1) - loop.index0 %}
149
- {%- if ns.multi_step_tool and message.role == "user" %}
150
- {%- set content = render_content(message.content, false)|trim %}
151
- {%- if not(content.startswith('<tool_response>') and content.endswith('
152
- </tool_response>')) %}
153
- {%- set ns.multi_step_tool = false %}
154
- {%- set ns.last_query_index = index %}
155
- {%- endif %}
156
- {%- endif %}
157
- {%- endfor %}
158
- {%- if ns.multi_step_tool %}
159
- {{- raise_exception('No user query found in messages.') }}
160
- {%- endif %}
161
- {%- for message in messages %}
162
- {%- set content = render_content(message.content, true)|trim %}
163
- {%- if message.role == "system" %}
164
- {%- if not loop.first %}
165
- {{- raise_exception('System message must be at the beginning.') }}
166
- {%- endif %}
167
- {%- elif message.role == "user" %}
168
- {{- '<|im_start|>' + message.role + '\n' + content + '<|im_end|>' + '\n' }}
169
- {%- elif message.role == "assistant" %}
170
- {%- set reasoning_content = '' %}
171
- {%- if message.reasoning_content is string %}
172
- {%- set reasoning_content = message.reasoning_content %}
173
- {%- else %}
174
- {%- if '</think>' in content %}
175
- {%- set reasoning_content = content.split('</think>
176
- ')[0].rstrip('\n').split('<think>')[-1].lstrip('\n') %}
177
- {%- set content = content.split('</think>')[-1].lstrip('\n') %}
178
- {%- endif %}
179
- {%- endif %}
180
- {%- set reasoning_content = reasoning_content|trim %}
181
- {%- if loop.index0 > ns.last_query_index %}
182
- {{- '<|im_start|>' + message.role + '\n<think>\n' + reasoning_content +
183
- '\n</think>\n\n' + content }}
184
- {%- else %}
185
- {{- '<|im_start|>' + message.role + '\n' + content }}
186
- {%- endif %}
187
- {%- if message.tool_calls and message.tool_calls is iterable and
188
- message.tool_calls is not mapping %}
189
- {%- for tool_call in message.tool_calls %}
190
- {%- if tool_call.function is defined %}
191
- {%- set tool_call = tool_call.function %}
192
- {%- endif %}
193
- {%- if loop.first %}
194
- {%- if content|trim %}
195
- {{- '\n\n<tool_call>\n<function=' + tool_call.name + '>\n' }}
196
- {%- else %} {{- '<tool_call>\n<function=' +
197
- tool_call.name + '>\n' }} {%- endif %} {%- else %}
198
- {{- '\n<tool_call>\n<function=' + tool_call.name + '>\n'
199
- }} {%- endif %} {%- if tool_call.arguments is defined %}
200
- {%- for args_name, args_value in
201
- tool_call.arguments|items %} {{- '<parameter=' +
202
- args_name + '>\n' }} {%- set args_value=args_value |
203
- tojson | safe if args_value is mapping or (args_value is
204
- sequence and args_value is not string) else args_value |
205
- string %} {{- args_value }} {{- '\n</parameter>\n' }}
206
- {%- endfor %} {%- endif %}
207
- {{- '</function>\n</tool_call>' }} {%- endfor %} {%-
208
- endif %} {{- '<|im_end|>\n' }} {%- elif
209
- message.role=="tool" %} {%- if loop.previtem and
210
- loop.previtem.role !="tool" %} {{- '<|im_start|>user' }}
211
- {%- endif %} {{- '\n<tool_response>\n' }} {{- content }}
212
- {{- '\n</tool_response>' }} {%- if not loop.last and
213
- loop.nextitem.role !="tool" %} {{- '<|im_end|>\n' }} {%-
214
- elif loop.last %} {{- '<|im_end|>\n' }} {%- endif %} {%-
215
- else %} {{- raise_exception('Unexpected message role.')
216
- }} {%- endif %} {%- endfor %} {%- if
217
- add_generation_prompt %} {{- '<|im_start|>assistant\n'
218
- }} {%- if enable_thinking is defined and enable_thinking
219
- is true %} {{- '<think>\n' }} {%- else %}
220
- {{- '<think>\n\n</think>\n\n' }} {%- endif %} {%- endif
221
- %}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  {%- set image_count = namespace(value=0) %}
2
  {%- set video_count = namespace(value=0) %}
3
  {%- macro render_content(content, do_vision_count, is_system_content=false) %}
4
+ {%- if content is string %}
5
+ {{- content }}
6
+ {%- elif content is iterable and content is not mapping %}
7
+ {%- for item in content %}
8
+ {%- if 'image' in item or 'image_url' in item or item.type == 'image' %}
9
+ {%- if is_system_content %}
10
+ {{- raise_exception('System message cannot contain images.') }}
11
+ {%- endif %}
12
+ {%- if do_vision_count %}
13
+ {%- set image_count.value = image_count.value + 1 %}
14
+ {%- endif %}
15
+ {%- if add_vision_id %}
16
+ {{- 'Picture ' ~ image_count.value ~ ': ' }}
17
+ {%- endif %}
18
+ {{- '<|vision_start|><|image_pad|><|vision_end|>' }}
19
+ {%- elif 'video' in item or item.type == 'video' %}
20
+ {%- if is_system_content %}
21
+ {{- raise_exception('System message cannot contain videos.') }}
22
+ {%- endif %}
23
+ {%- if do_vision_count %}
24
+ {%- set video_count.value = video_count.value + 1 %}
25
+ {%- endif %}
26
+ {%- if add_vision_id %}
27
+ {{- 'Video ' ~ video_count.value ~ ': ' }}
28
+ {%- endif %}
29
+ {{- '<|vision_start|><|video_pad|><|vision_end|>' }}
30
+ {%- elif 'text' in item %}
31
+ {{- item.text }}
32
+ {%- else %}
33
+ {{- raise_exception('Unexpected item type in content.') }}
34
+ {%- endif %}
35
+ {%- endfor %}
36
+ {%- elif content is none or content is undefined %}
37
+ {{- '' }}
38
+ {%- else %}
39
+ {{- raise_exception('Unexpected content type.') }}
40
+ {%- endif %}
41
+ {%- endmacro %}
42
+ {%- if not messages %}
43
+ {{- raise_exception('No messages provided.') }}
44
  {%- endif %}
45
+ {%- if tools and tools is iterable and tools is not mapping %}
46
+ {{- '<|im_start|>system\n' }}
47
+ {{- "# Tools\n\nYou have access to the following functions:\n\n<tools>" }}
48
+ {%- for tool in tools %}
49
+ {{- "\n" }}
50
+ {{- tool | tojson }}
51
+ {%- endfor %}
52
+ {{- "\n</tools>" }}
53
+ {{- '\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>' }}
54
+ {%- if messages[0].role == 'system' %}
55
+ {%- set content = render_content(messages[0].content, false, true)|trim %}
56
+ {%- if content %}
57
+ {{- '\n\n' + content }}
58
+ {%- endif %}
59
+ {%- endif %}
60
+ {{- '<|im_end|>\n' }}
61
+ {%- else %}
62
+ {%- if messages[0].role == 'system' %}
63
+ {%- set content = render_content(messages[0].content, false, true)|trim %}
64
+ {{- '<|im_start|>system\n' + content + '<|im_end|>\n' }}
65
+ {%- endif %}
66
  {%- endif %}
67
+ {%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
68
+ {%- for message in messages[::-1] %}
69
+ {%- set index = (messages|length - 1) - loop.index0 %}
70
+ {%- if ns.multi_step_tool and message.role == "user" %}
71
+ {%- set content = render_content(message.content, false)|trim %}
72
+ {%- if not(content.startswith('<tool_response>') and content.endswith('</tool_response>')) %}
73
+ {%- set ns.multi_step_tool = false %}
74
+ {%- set ns.last_query_index = index %}
75
+ {%- endif %}
76
+ {%- endif %}
77
+ {%- endfor %}
78
+ {%- if ns.multi_step_tool %}
79
+ {{- raise_exception('No user query found in messages.') }}
80
  {%- endif %}
81
+ {%- for message in messages %}
82
+ {%- set content = render_content(message.content, true)|trim %}
83
+ {%- if message.role == "system" %}
84
+ {%- if not loop.first %}
85
+ {{- raise_exception('System message must be at the beginning.') }}
86
+ {%- endif %}
87
+ {%- elif message.role == "user" %}
88
+ {{- '<|im_start|>' + message.role + '\n' + content + '<|im_end|>' + '\n' }}
89
+ {%- elif message.role == "assistant" %}
90
+ {%- set reasoning_content = '' %}
91
+ {%- if message.reasoning_content is string %}
92
+ {%- set reasoning_content = message.reasoning_content %}
93
+ {%- else %}
94
+ {%- if '</think>' in content %}
95
+ {%- set reasoning_content = content.split('</think>')[0].rstrip('\n').split('<think>')[-1].lstrip('\n') %}
96
+ {%- set content = content.split('</think>')[-1].lstrip('\n') %}
97
  {%- endif %}
98
+ {%- endif %}
99
+ {%- set reasoning_content = reasoning_content|trim %}
100
+ {%- if loop.index0 > ns.last_query_index %}
101
+ {{- '<|im_start|>' + message.role + '\n<think>\n' + reasoning_content + '\n</think>\n\n' + content }}
102
+ {%- else %}
103
+ {{- '<|im_start|>' + message.role + '\n' + content }}
104
+ {%- endif %}
105
+ {%- if message.tool_calls and message.tool_calls is iterable and message.tool_calls is not mapping %}
106
+ {%- for tool_call in message.tool_calls %}
107
+ {%- if tool_call.function is defined %}
108
+ {%- set tool_call = tool_call.function %}
109
+ {%- endif %}
110
+ {%- if loop.first %}
111
+ {%- if content|trim %}
112
+ {{- '\n\n<tool_call>\n<function=' + tool_call.name + '>\n' }}
113
+ {%- else %}
114
+ {{- '<tool_call>\n<function=' + tool_call.name + '>\n' }}
115
+ {%- endif %}
116
+ {%- else %}
117
+ {{- '\n<tool_call>\n<function=' + tool_call.name + '>\n' }}
118
+ {%- endif %}
119
+ {%- if tool_call.arguments is defined %}
120
+ {%- for args_name, args_value in tool_call.arguments|items %}
121
+ {{- '<parameter=' + args_name + '>\n' }}
122
+ {%- 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 %}
123
+ {{- args_value }}
124
+ {{- '\n</parameter>\n' }}
125
+ {%- endfor %}
126
+ {%- endif %}
127
+ {{- '</function>\n</tool_call>' }}
128
+ {%- endfor %}
129
+ {%- endif %}
130
+ {{- '<|im_end|>\n' }}
131
+ {%- elif message.role == "tool" %}
132
+ {%- if loop.previtem and loop.previtem.role != "tool" %}
133
+ {{- '<|im_start|>user' }}
134
+ {%- endif %}
135
+ {{- '\n<tool_response>\n' }}
136
+ {{- content }}
137
+ {{- '\n</tool_response>' }}
138
+ {%- if not loop.last and loop.nextitem.role != "tool" %}
139
+ {{- '<|im_end|>\n' }}
140
+ {%- elif loop.last %}
141
+ {{- '<|im_end|>\n' }}
142
+ {%- endif %}
143
+ {%- else %}
144
+ {{- raise_exception('Unexpected message role.') }}
145
+ {%- endif %}
146
+ {%- endfor %}
147
+ {%- if add_generation_prompt %}
148
+ {{- '<|im_start|>assistant\n' }}
149
+ {%- if enable_thinking is defined and enable_thinking is true %}
150
+ {{- '<think>\n' }}
151
+ {%- else %}
152
+ {{- '<think>\n\n</think>\n\n' }}
153
+ {%- endif %}
154
+ {%- endif %}