lmmy commited on
Commit
4fe06f1
·
verified ·
1 Parent(s): 052f17a

Add files using upload-large-folder tool

Browse files
README.md ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ library_name: transformers
4
+ pipeline_tag: text-generation
5
+ language:
6
+ - en
7
+ - de
8
+ - es
9
+ - fr
10
+ - ja
11
+ - pt
12
+ - ar
13
+ - cs
14
+ - it
15
+ - ko
16
+ - nl
17
+ - zh
18
+ tags:
19
+ - granite
20
+ - granite-4.2
21
+ - reasoning
22
+ - thinking
23
+ - tool-calling
24
+ - ibm
25
+ - mlx
26
+ base_model: ibm-granite/granite-4.2-3b
27
+ ---
28
+ ## 💫 Community Model> granite-4.2-3b by ibm-granite
29
+
30
+ _👾 [LM Studio](https://lmstudio.ai) Community models highlights program. Highlighting new & noteworthy models by the community. Join the conversation on [Discord](https://discord.gg/aPQfnNkxGC)_.
31
+
32
+ **Model creator**: [ibm-granite](https://huggingface.co/ibm-granite)<br>
33
+ **Original model**: [granite-4.2-3b](https://huggingface.co/ibm-granite/granite-4.2-3b)<br>
34
+ **MLX quantization**: provided by [LM Studio team](https://x.com/lmstudio) using [mlx_lm](https://github.com/ml-explore/mlx-lm)<br>
35
+
36
+ ## Technical Details
37
+
38
+ 4-bit quantized version of granite-4.2-3b using MLX, optimized for Apple Silicon.
39
+
40
+ ## Special thanks
41
+
42
+ 🙏 Special thanks to the [Apple Machine Learning Research](https://github.com/ml-explore) team for creating [MLX](https://github.com/ml-explore/mlx).
43
+
44
+ ## Disclaimers
45
+
46
+ LM Studio is not the creator, originator, or owner of any Model featured in the Community Model Program. Each Community Model is created and provided by third parties. LM Studio does not endorse, support, represent or guarantee the completeness, truthfulness, accuracy, or reliability of any Community Model. You understand that Community Models can produce content that might be offensive, harmful, inaccurate or otherwise inappropriate, or deceptive. Each Community Model is the sole responsibility of the person or entity who originated such Model. LM Studio may not monitor or control the Community Models and cannot, and does not, take responsibility for any such Model. LM Studio disclaims all warranties or guarantees about the accuracy, reliability or benefits of the Community Models. LM Studio further disclaims any warranty that the Community Model will meet your requirements, be secure, uninterrupted or available at any time or location, or error-free, viruses-free, or that any errors will be corrected, or otherwise. You will be solely responsible for any damage resulting from your use of or access to the Community Models, your downloading of any Community Model, or use of any other Community Model provided by or through LM Studio.
chat_template.jinja ADDED
@@ -0,0 +1,184 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {%- macro tool_to_json(tool) -%}
2
+ {%- set ns_tool = namespace(first=true) -%}
3
+ {{- '{' -}}
4
+ {%- for k, v in tool.items() -%}
5
+ {%- if k != 'defer_loading' and k != 'strict' -%}
6
+ {%- if not ns_tool.first -%}{{- ', ' -}}{%- endif -%}
7
+ {%- set ns_tool.first = false -%}
8
+ {{- '"' ~ k ~ '": ' ~ (v | tojson(ensure_ascii=False)) -}}
9
+ {%- endif -%}
10
+ {%- endfor -%}
11
+ {{- '}' -}}
12
+ {%- endmacro -%}
13
+ {%- set enable_thinking = enable_thinking if enable_thinking is defined else True %}
14
+ {%- set low_effort = low_effort if low_effort is defined else False %}
15
+ {%- if reasoning_effort is defined and reasoning_effort is not none %}
16
+ {%- set low_effort = reasoning_effort == "low" %}
17
+ {%- endif %}
18
+ {%- set truncate_history_thinking = truncate_history_thinking if truncate_history_thinking is defined else True %}
19
+
20
+ {%- set ns = namespace(last_user_idx = -1) %}
21
+ {%- set loop_messages = messages %}
22
+ {%- for m in loop_messages %}
23
+ {%- if m["role"] == "user" %}
24
+ {%- set ns.last_user_idx = loop.index0 %}
25
+ {%- endif %}
26
+ {%- endfor %}
27
+
28
+ {%- if messages[0]["role"] == "system" %}
29
+ {%- set system_message = messages[0]["content"] %}
30
+ {%- set loop_messages = messages[1:] %}
31
+ {%- else %}
32
+ {%- set system_message = "" %}
33
+ {%- set loop_messages = messages %}
34
+ {%- endif %}
35
+ {%- if not tools is defined %}
36
+ {%- set tools = [] %}
37
+ {%- endif %}
38
+ {# Recompute last_user_idx relative to loop_messages after handling system #}
39
+ {%- set ns = namespace(last_user_idx = -1) %}
40
+ {%- for m in loop_messages %}
41
+ {%- if m["role"] == "user" %}
42
+ {%- set ns.last_user_idx = loop.index0 %}
43
+ {%- endif %}
44
+ {%- endfor %}
45
+ {%- if system_message is defined %}
46
+ {{- "<|im_start|>system\n" + system_message }}
47
+ {%- else %}
48
+ {%- if tools is iterable and tools | length > 0 %}
49
+ {{- "<|im_start|>system\n" }}
50
+ {%- endif %}
51
+ {%- endif %}
52
+ {%- if tools is iterable and tools | length > 0 %}
53
+ {%- if system_message is defined and system_message | length > 0 %}
54
+ {{- "\n\n" }}
55
+ {%- endif %}
56
+ {{- "# Tools\n\nYou have access to the following functions:\n\n" }}
57
+ {{- "<tools>" }}
58
+ {%- for tool in tools %}
59
+ {%- if tool.function is defined %}
60
+ {%- set tool = tool.function %}
61
+ {%- endif %}
62
+ {%- if tool.defer_loading is not defined or not tool.defer_loading %}
63
+ {{- '\n' ~ tool_to_json(tool) }}
64
+ {%- endif %}
65
+ {%- endfor %}
66
+ {{- "\n</tools>" }}
67
+
68
+ {{- '\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>' }}
69
+ {%- endif %}
70
+
71
+
72
+ {%- if system_message is defined %}
73
+ {{- '<|im_end|>\n' }}
74
+ {%- else %}
75
+ {%- if tools is iterable and tools | length > 0 %}
76
+ {{- '<|im_end|>\n' }}
77
+ {%- endif %}
78
+ {%- endif %}
79
+
80
+ {%- for message in loop_messages %}
81
+ {%- if message.role == "assistant" %}
82
+ {# Add reasoning content in to content field for unified processing below. #}
83
+ {%- if message.reasoning_content is defined and message.reasoning_content is string and message.reasoning_content | trim | length > 0 %}
84
+ {%- set content = "<think>\n" ~ message.reasoning_content ~ "\n</think>\n" ~ (message.content | default('', true)) %}
85
+ {%- else %}
86
+ {%- set content = message.content | default('', true) %}
87
+ {%- if content is string -%}
88
+ {# Allow downstream logic to to take care of broken thought, only handle coherent reasoning here. #}
89
+ {%- if '<think>' not in content and '</think>' not in content -%}
90
+ {%- set content = "<think></think>" ~ content -%}
91
+ {%- endif -%}
92
+ {%- else -%}
93
+ {%- set content = content -%}
94
+ {%- endif -%}
95
+ {%- endif %}
96
+ {%- if message.tool_calls is defined and message.tool_calls is iterable and message.tool_calls | length > 0 %}
97
+ {# Assistant message has tool calls. #}
98
+ {{- '<|im_start|>assistant\n' }}
99
+ {%- set include_content = not (truncate_history_thinking and loop.index0 < ns.last_user_idx) %}
100
+ {%- if content is string and content | trim | length > 0 %}
101
+ {%- if include_content %}
102
+ {{- (content | trim) ~ '\n' -}}
103
+ {%- else %}
104
+ {%- set c = (content | string) %}
105
+ {%- if '</think>' in c %}
106
+ {# Keep only content after the last closing think. Also generation prompt causes this. #}
107
+ {%- set c = c.split('</think>')[-1] %}
108
+ {%- elif '<think>' in c %}
109
+ {# If <think> was opened but never closed, drop the trailing think segment #}
110
+ {%- set c = c.split('<think>')[0] %}
111
+ {%- endif %}
112
+ {%- set c = "<think></think>" ~ c | trim %}
113
+ {%- if c | length > 0 %}
114
+ {{- c ~ '\n' -}}
115
+ {%- endif %}
116
+ {%- endif %}
117
+ {%- else %}
118
+ {{- "<think></think>" -}}
119
+ {%- endif %}
120
+ {%- for tool_call in message.tool_calls %}
121
+ {%- if tool_call.function is defined %}
122
+ {%- set tool_call = tool_call.function %}
123
+ {%- endif %}
124
+ {{- '<tool_call>\n<function=' ~ tool_call.name ~ '>\n' -}}
125
+ {%- if tool_call.arguments is defined %}
126
+ {%- for args_name, args_value in tool_call.arguments|items %}
127
+ {{- '<parameter=' ~ args_name ~ '>\n' -}}
128
+ {%- 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 %}
129
+ {{- args_value ~ '\n</parameter>\n' -}}
130
+ {%- endfor %}
131
+ {%- endif %}
132
+ {{- '</function>\n</tool_call>\n' -}}
133
+ {%- endfor %}
134
+ {{- '<|im_end|>\n' }}
135
+ {%- else %}
136
+ {# Assistant message doesn't have tool calls. #}
137
+ {%- if not (truncate_history_thinking and loop.index0 < ns.last_user_idx) %}
138
+ {{- '<|im_start|>assistant\n' ~ (content | default('', true) | string | trim) ~ '<|im_end|>\n' }}
139
+ {%- else %}
140
+ {%- set c = (content | default('', true) | string) %}
141
+ {%- if '<think>' in c and '</think>' in c %}
142
+ {%- set c = "<think></think>" ~ c.split('</think>')[-1] %}
143
+ {%- endif %}
144
+ {%- set c = c | trim %}
145
+ {%- if c | length > 0 %}
146
+ {{- '<|im_start|>assistant\n' ~ c ~ '<|im_end|>\n' }}
147
+ {%- else %}
148
+ {{- '<|im_start|>assistant\n<|im_end|>\n' }}
149
+ {%- endif %}
150
+ {%- endif %}
151
+ {%- endif %}
152
+ {%- elif message.role == "user" or message.role == "system" %}
153
+ {{- '<|im_start|>' + message.role + '\n' }}
154
+ {%- set content = message.content | string %}
155
+ {%- if message.role == "user" and loop.index0 == ns.last_user_idx and low_effort %}
156
+ {{- content + '\n\n{reasoning effort: low}' }}
157
+ {%- else %}
158
+ {{- content }}
159
+ {%- endif %}
160
+ {{- '<|im_end|>\n' }}
161
+ {%- elif message.role == "tool" %}
162
+ {%- if loop.previtem and loop.previtem.role != "tool" %}
163
+ {{- '<|im_start|>user\n' }}
164
+ {%- endif %}
165
+ {{- '<tool_response>\n' }}
166
+ {{- message.content }}
167
+ {{- '\n</tool_response>\n' }}
168
+ {%- if not loop.last and loop.nextitem.role != "tool" %}
169
+ {{- '<|im_end|>\n' }}
170
+ {%- elif loop.last %}
171
+ {{- '<|im_end|>\n' }}
172
+ {%- endif %}
173
+ {%- else %}
174
+ {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>\n' }}
175
+ {%- endif %}
176
+ {%- endfor %}
177
+
178
+ {%- if add_generation_prompt %}
179
+ {%- if enable_thinking %}
180
+ {{- '<|im_start|>assistant\n<think>\n' }}
181
+ {%- else %}
182
+ {{- '<|im_start|>assistant\n<think></think>' }}
183
+ {%- endif %}
184
+ {%- endif %}
config.json ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "GraniteForCausalLM"
4
+ ],
5
+ "attention_bias": false,
6
+ "attention_dropout": 0.0,
7
+ "attention_multiplier": 0.015625,
8
+ "bos_token_id": 100283,
9
+ "dtype": "bfloat16",
10
+ "embedding_multiplier": 1.0,
11
+ "eos_token_id": 100257,
12
+ "hidden_act": "silu",
13
+ "hidden_size": 2560,
14
+ "initializer_range": 0.1,
15
+ "intermediate_size": 8192,
16
+ "logits_scaling": 1.0,
17
+ "max_position_embeddings": 131072,
18
+ "mlp_bias": false,
19
+ "model_type": "granite",
20
+ "num_attention_heads": 40,
21
+ "num_hidden_layers": 40,
22
+ "num_key_value_heads": 8,
23
+ "pad_token_id": 100257,
24
+ "quantization": {
25
+ "group_size": 64,
26
+ "bits": 4,
27
+ "mode": "affine"
28
+ },
29
+ "quantization_config": {
30
+ "group_size": 64,
31
+ "bits": 4,
32
+ "mode": "affine"
33
+ },
34
+ "residual_multiplier": 1.0,
35
+ "rms_norm_eps": 1e-05,
36
+ "rope_parameters": {
37
+ "rope_theta": 10000000,
38
+ "rope_type": "default"
39
+ },
40
+ "rope_scaling": null,
41
+ "rope_theta": 10000000,
42
+ "tie_word_embeddings": false,
43
+ "torch_dtype": "bfloat16",
44
+ "transformers_version": "4.57.1",
45
+ "use_cache": true,
46
+ "vocab_size": 100352
47
+ }
generation_config.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_from_model_config": true,
3
+ "do_sample": true,
4
+ "bos_token_id": 100283,
5
+ "eos_token_id": 100257,
6
+ "pad_token_id": 100257,
7
+ "temperature": 1.0,
8
+ "top_p": 0.95,
9
+ "transformers_version": "4.57.1"
10
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a71cf9297827b3c3d6ad426081b67c423044f6576632dabe40e7590552fd267d
3
+ size 2059005430
model.safetensors.index.json ADDED
@@ -0,0 +1,935 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "metadata": {
3
+ "total_size": 2058900480,
4
+ "total_parameters": 3659737600
5
+ },
6
+ "weight_map": {
7
+ "lm_head.biases": "model.safetensors",
8
+ "lm_head.scales": "model.safetensors",
9
+ "lm_head.weight": "model.safetensors",
10
+ "model.embed_tokens.biases": "model.safetensors",
11
+ "model.embed_tokens.scales": "model.safetensors",
12
+ "model.embed_tokens.weight": "model.safetensors",
13
+ "model.layers.0.input_layernorm.weight": "model.safetensors",
14
+ "model.layers.0.mlp.down_proj.biases": "model.safetensors",
15
+ "model.layers.0.mlp.down_proj.scales": "model.safetensors",
16
+ "model.layers.0.mlp.down_proj.weight": "model.safetensors",
17
+ "model.layers.0.mlp.gate_proj.biases": "model.safetensors",
18
+ "model.layers.0.mlp.gate_proj.scales": "model.safetensors",
19
+ "model.layers.0.mlp.gate_proj.weight": "model.safetensors",
20
+ "model.layers.0.mlp.up_proj.biases": "model.safetensors",
21
+ "model.layers.0.mlp.up_proj.scales": "model.safetensors",
22
+ "model.layers.0.mlp.up_proj.weight": "model.safetensors",
23
+ "model.layers.0.post_attention_layernorm.weight": "model.safetensors",
24
+ "model.layers.0.self_attn.k_proj.biases": "model.safetensors",
25
+ "model.layers.0.self_attn.k_proj.scales": "model.safetensors",
26
+ "model.layers.0.self_attn.k_proj.weight": "model.safetensors",
27
+ "model.layers.0.self_attn.o_proj.biases": "model.safetensors",
28
+ "model.layers.0.self_attn.o_proj.scales": "model.safetensors",
29
+ "model.layers.0.self_attn.o_proj.weight": "model.safetensors",
30
+ "model.layers.0.self_attn.q_proj.biases": "model.safetensors",
31
+ "model.layers.0.self_attn.q_proj.scales": "model.safetensors",
32
+ "model.layers.0.self_attn.q_proj.weight": "model.safetensors",
33
+ "model.layers.0.self_attn.v_proj.biases": "model.safetensors",
34
+ "model.layers.0.self_attn.v_proj.scales": "model.safetensors",
35
+ "model.layers.0.self_attn.v_proj.weight": "model.safetensors",
36
+ "model.layers.1.input_layernorm.weight": "model.safetensors",
37
+ "model.layers.1.mlp.down_proj.biases": "model.safetensors",
38
+ "model.layers.1.mlp.down_proj.scales": "model.safetensors",
39
+ "model.layers.1.mlp.down_proj.weight": "model.safetensors",
40
+ "model.layers.1.mlp.gate_proj.biases": "model.safetensors",
41
+ "model.layers.1.mlp.gate_proj.scales": "model.safetensors",
42
+ "model.layers.1.mlp.gate_proj.weight": "model.safetensors",
43
+ "model.layers.1.mlp.up_proj.biases": "model.safetensors",
44
+ "model.layers.1.mlp.up_proj.scales": "model.safetensors",
45
+ "model.layers.1.mlp.up_proj.weight": "model.safetensors",
46
+ "model.layers.1.post_attention_layernorm.weight": "model.safetensors",
47
+ "model.layers.1.self_attn.k_proj.biases": "model.safetensors",
48
+ "model.layers.1.self_attn.k_proj.scales": "model.safetensors",
49
+ "model.layers.1.self_attn.k_proj.weight": "model.safetensors",
50
+ "model.layers.1.self_attn.o_proj.biases": "model.safetensors",
51
+ "model.layers.1.self_attn.o_proj.scales": "model.safetensors",
52
+ "model.layers.1.self_attn.o_proj.weight": "model.safetensors",
53
+ "model.layers.1.self_attn.q_proj.biases": "model.safetensors",
54
+ "model.layers.1.self_attn.q_proj.scales": "model.safetensors",
55
+ "model.layers.1.self_attn.q_proj.weight": "model.safetensors",
56
+ "model.layers.1.self_attn.v_proj.biases": "model.safetensors",
57
+ "model.layers.1.self_attn.v_proj.scales": "model.safetensors",
58
+ "model.layers.1.self_attn.v_proj.weight": "model.safetensors",
59
+ "model.layers.10.input_layernorm.weight": "model.safetensors",
60
+ "model.layers.10.mlp.down_proj.biases": "model.safetensors",
61
+ "model.layers.10.mlp.down_proj.scales": "model.safetensors",
62
+ "model.layers.10.mlp.down_proj.weight": "model.safetensors",
63
+ "model.layers.10.mlp.gate_proj.biases": "model.safetensors",
64
+ "model.layers.10.mlp.gate_proj.scales": "model.safetensors",
65
+ "model.layers.10.mlp.gate_proj.weight": "model.safetensors",
66
+ "model.layers.10.mlp.up_proj.biases": "model.safetensors",
67
+ "model.layers.10.mlp.up_proj.scales": "model.safetensors",
68
+ "model.layers.10.mlp.up_proj.weight": "model.safetensors",
69
+ "model.layers.10.post_attention_layernorm.weight": "model.safetensors",
70
+ "model.layers.10.self_attn.k_proj.biases": "model.safetensors",
71
+ "model.layers.10.self_attn.k_proj.scales": "model.safetensors",
72
+ "model.layers.10.self_attn.k_proj.weight": "model.safetensors",
73
+ "model.layers.10.self_attn.o_proj.biases": "model.safetensors",
74
+ "model.layers.10.self_attn.o_proj.scales": "model.safetensors",
75
+ "model.layers.10.self_attn.o_proj.weight": "model.safetensors",
76
+ "model.layers.10.self_attn.q_proj.biases": "model.safetensors",
77
+ "model.layers.10.self_attn.q_proj.scales": "model.safetensors",
78
+ "model.layers.10.self_attn.q_proj.weight": "model.safetensors",
79
+ "model.layers.10.self_attn.v_proj.biases": "model.safetensors",
80
+ "model.layers.10.self_attn.v_proj.scales": "model.safetensors",
81
+ "model.layers.10.self_attn.v_proj.weight": "model.safetensors",
82
+ "model.layers.11.input_layernorm.weight": "model.safetensors",
83
+ "model.layers.11.mlp.down_proj.biases": "model.safetensors",
84
+ "model.layers.11.mlp.down_proj.scales": "model.safetensors",
85
+ "model.layers.11.mlp.down_proj.weight": "model.safetensors",
86
+ "model.layers.11.mlp.gate_proj.biases": "model.safetensors",
87
+ "model.layers.11.mlp.gate_proj.scales": "model.safetensors",
88
+ "model.layers.11.mlp.gate_proj.weight": "model.safetensors",
89
+ "model.layers.11.mlp.up_proj.biases": "model.safetensors",
90
+ "model.layers.11.mlp.up_proj.scales": "model.safetensors",
91
+ "model.layers.11.mlp.up_proj.weight": "model.safetensors",
92
+ "model.layers.11.post_attention_layernorm.weight": "model.safetensors",
93
+ "model.layers.11.self_attn.k_proj.biases": "model.safetensors",
94
+ "model.layers.11.self_attn.k_proj.scales": "model.safetensors",
95
+ "model.layers.11.self_attn.k_proj.weight": "model.safetensors",
96
+ "model.layers.11.self_attn.o_proj.biases": "model.safetensors",
97
+ "model.layers.11.self_attn.o_proj.scales": "model.safetensors",
98
+ "model.layers.11.self_attn.o_proj.weight": "model.safetensors",
99
+ "model.layers.11.self_attn.q_proj.biases": "model.safetensors",
100
+ "model.layers.11.self_attn.q_proj.scales": "model.safetensors",
101
+ "model.layers.11.self_attn.q_proj.weight": "model.safetensors",
102
+ "model.layers.11.self_attn.v_proj.biases": "model.safetensors",
103
+ "model.layers.11.self_attn.v_proj.scales": "model.safetensors",
104
+ "model.layers.11.self_attn.v_proj.weight": "model.safetensors",
105
+ "model.layers.12.input_layernorm.weight": "model.safetensors",
106
+ "model.layers.12.mlp.down_proj.biases": "model.safetensors",
107
+ "model.layers.12.mlp.down_proj.scales": "model.safetensors",
108
+ "model.layers.12.mlp.down_proj.weight": "model.safetensors",
109
+ "model.layers.12.mlp.gate_proj.biases": "model.safetensors",
110
+ "model.layers.12.mlp.gate_proj.scales": "model.safetensors",
111
+ "model.layers.12.mlp.gate_proj.weight": "model.safetensors",
112
+ "model.layers.12.mlp.up_proj.biases": "model.safetensors",
113
+ "model.layers.12.mlp.up_proj.scales": "model.safetensors",
114
+ "model.layers.12.mlp.up_proj.weight": "model.safetensors",
115
+ "model.layers.12.post_attention_layernorm.weight": "model.safetensors",
116
+ "model.layers.12.self_attn.k_proj.biases": "model.safetensors",
117
+ "model.layers.12.self_attn.k_proj.scales": "model.safetensors",
118
+ "model.layers.12.self_attn.k_proj.weight": "model.safetensors",
119
+ "model.layers.12.self_attn.o_proj.biases": "model.safetensors",
120
+ "model.layers.12.self_attn.o_proj.scales": "model.safetensors",
121
+ "model.layers.12.self_attn.o_proj.weight": "model.safetensors",
122
+ "model.layers.12.self_attn.q_proj.biases": "model.safetensors",
123
+ "model.layers.12.self_attn.q_proj.scales": "model.safetensors",
124
+ "model.layers.12.self_attn.q_proj.weight": "model.safetensors",
125
+ "model.layers.12.self_attn.v_proj.biases": "model.safetensors",
126
+ "model.layers.12.self_attn.v_proj.scales": "model.safetensors",
127
+ "model.layers.12.self_attn.v_proj.weight": "model.safetensors",
128
+ "model.layers.13.input_layernorm.weight": "model.safetensors",
129
+ "model.layers.13.mlp.down_proj.biases": "model.safetensors",
130
+ "model.layers.13.mlp.down_proj.scales": "model.safetensors",
131
+ "model.layers.13.mlp.down_proj.weight": "model.safetensors",
132
+ "model.layers.13.mlp.gate_proj.biases": "model.safetensors",
133
+ "model.layers.13.mlp.gate_proj.scales": "model.safetensors",
134
+ "model.layers.13.mlp.gate_proj.weight": "model.safetensors",
135
+ "model.layers.13.mlp.up_proj.biases": "model.safetensors",
136
+ "model.layers.13.mlp.up_proj.scales": "model.safetensors",
137
+ "model.layers.13.mlp.up_proj.weight": "model.safetensors",
138
+ "model.layers.13.post_attention_layernorm.weight": "model.safetensors",
139
+ "model.layers.13.self_attn.k_proj.biases": "model.safetensors",
140
+ "model.layers.13.self_attn.k_proj.scales": "model.safetensors",
141
+ "model.layers.13.self_attn.k_proj.weight": "model.safetensors",
142
+ "model.layers.13.self_attn.o_proj.biases": "model.safetensors",
143
+ "model.layers.13.self_attn.o_proj.scales": "model.safetensors",
144
+ "model.layers.13.self_attn.o_proj.weight": "model.safetensors",
145
+ "model.layers.13.self_attn.q_proj.biases": "model.safetensors",
146
+ "model.layers.13.self_attn.q_proj.scales": "model.safetensors",
147
+ "model.layers.13.self_attn.q_proj.weight": "model.safetensors",
148
+ "model.layers.13.self_attn.v_proj.biases": "model.safetensors",
149
+ "model.layers.13.self_attn.v_proj.scales": "model.safetensors",
150
+ "model.layers.13.self_attn.v_proj.weight": "model.safetensors",
151
+ "model.layers.14.input_layernorm.weight": "model.safetensors",
152
+ "model.layers.14.mlp.down_proj.biases": "model.safetensors",
153
+ "model.layers.14.mlp.down_proj.scales": "model.safetensors",
154
+ "model.layers.14.mlp.down_proj.weight": "model.safetensors",
155
+ "model.layers.14.mlp.gate_proj.biases": "model.safetensors",
156
+ "model.layers.14.mlp.gate_proj.scales": "model.safetensors",
157
+ "model.layers.14.mlp.gate_proj.weight": "model.safetensors",
158
+ "model.layers.14.mlp.up_proj.biases": "model.safetensors",
159
+ "model.layers.14.mlp.up_proj.scales": "model.safetensors",
160
+ "model.layers.14.mlp.up_proj.weight": "model.safetensors",
161
+ "model.layers.14.post_attention_layernorm.weight": "model.safetensors",
162
+ "model.layers.14.self_attn.k_proj.biases": "model.safetensors",
163
+ "model.layers.14.self_attn.k_proj.scales": "model.safetensors",
164
+ "model.layers.14.self_attn.k_proj.weight": "model.safetensors",
165
+ "model.layers.14.self_attn.o_proj.biases": "model.safetensors",
166
+ "model.layers.14.self_attn.o_proj.scales": "model.safetensors",
167
+ "model.layers.14.self_attn.o_proj.weight": "model.safetensors",
168
+ "model.layers.14.self_attn.q_proj.biases": "model.safetensors",
169
+ "model.layers.14.self_attn.q_proj.scales": "model.safetensors",
170
+ "model.layers.14.self_attn.q_proj.weight": "model.safetensors",
171
+ "model.layers.14.self_attn.v_proj.biases": "model.safetensors",
172
+ "model.layers.14.self_attn.v_proj.scales": "model.safetensors",
173
+ "model.layers.14.self_attn.v_proj.weight": "model.safetensors",
174
+ "model.layers.15.input_layernorm.weight": "model.safetensors",
175
+ "model.layers.15.mlp.down_proj.biases": "model.safetensors",
176
+ "model.layers.15.mlp.down_proj.scales": "model.safetensors",
177
+ "model.layers.15.mlp.down_proj.weight": "model.safetensors",
178
+ "model.layers.15.mlp.gate_proj.biases": "model.safetensors",
179
+ "model.layers.15.mlp.gate_proj.scales": "model.safetensors",
180
+ "model.layers.15.mlp.gate_proj.weight": "model.safetensors",
181
+ "model.layers.15.mlp.up_proj.biases": "model.safetensors",
182
+ "model.layers.15.mlp.up_proj.scales": "model.safetensors",
183
+ "model.layers.15.mlp.up_proj.weight": "model.safetensors",
184
+ "model.layers.15.post_attention_layernorm.weight": "model.safetensors",
185
+ "model.layers.15.self_attn.k_proj.biases": "model.safetensors",
186
+ "model.layers.15.self_attn.k_proj.scales": "model.safetensors",
187
+ "model.layers.15.self_attn.k_proj.weight": "model.safetensors",
188
+ "model.layers.15.self_attn.o_proj.biases": "model.safetensors",
189
+ "model.layers.15.self_attn.o_proj.scales": "model.safetensors",
190
+ "model.layers.15.self_attn.o_proj.weight": "model.safetensors",
191
+ "model.layers.15.self_attn.q_proj.biases": "model.safetensors",
192
+ "model.layers.15.self_attn.q_proj.scales": "model.safetensors",
193
+ "model.layers.15.self_attn.q_proj.weight": "model.safetensors",
194
+ "model.layers.15.self_attn.v_proj.biases": "model.safetensors",
195
+ "model.layers.15.self_attn.v_proj.scales": "model.safetensors",
196
+ "model.layers.15.self_attn.v_proj.weight": "model.safetensors",
197
+ "model.layers.16.input_layernorm.weight": "model.safetensors",
198
+ "model.layers.16.mlp.down_proj.biases": "model.safetensors",
199
+ "model.layers.16.mlp.down_proj.scales": "model.safetensors",
200
+ "model.layers.16.mlp.down_proj.weight": "model.safetensors",
201
+ "model.layers.16.mlp.gate_proj.biases": "model.safetensors",
202
+ "model.layers.16.mlp.gate_proj.scales": "model.safetensors",
203
+ "model.layers.16.mlp.gate_proj.weight": "model.safetensors",
204
+ "model.layers.16.mlp.up_proj.biases": "model.safetensors",
205
+ "model.layers.16.mlp.up_proj.scales": "model.safetensors",
206
+ "model.layers.16.mlp.up_proj.weight": "model.safetensors",
207
+ "model.layers.16.post_attention_layernorm.weight": "model.safetensors",
208
+ "model.layers.16.self_attn.k_proj.biases": "model.safetensors",
209
+ "model.layers.16.self_attn.k_proj.scales": "model.safetensors",
210
+ "model.layers.16.self_attn.k_proj.weight": "model.safetensors",
211
+ "model.layers.16.self_attn.o_proj.biases": "model.safetensors",
212
+ "model.layers.16.self_attn.o_proj.scales": "model.safetensors",
213
+ "model.layers.16.self_attn.o_proj.weight": "model.safetensors",
214
+ "model.layers.16.self_attn.q_proj.biases": "model.safetensors",
215
+ "model.layers.16.self_attn.q_proj.scales": "model.safetensors",
216
+ "model.layers.16.self_attn.q_proj.weight": "model.safetensors",
217
+ "model.layers.16.self_attn.v_proj.biases": "model.safetensors",
218
+ "model.layers.16.self_attn.v_proj.scales": "model.safetensors",
219
+ "model.layers.16.self_attn.v_proj.weight": "model.safetensors",
220
+ "model.layers.17.input_layernorm.weight": "model.safetensors",
221
+ "model.layers.17.mlp.down_proj.biases": "model.safetensors",
222
+ "model.layers.17.mlp.down_proj.scales": "model.safetensors",
223
+ "model.layers.17.mlp.down_proj.weight": "model.safetensors",
224
+ "model.layers.17.mlp.gate_proj.biases": "model.safetensors",
225
+ "model.layers.17.mlp.gate_proj.scales": "model.safetensors",
226
+ "model.layers.17.mlp.gate_proj.weight": "model.safetensors",
227
+ "model.layers.17.mlp.up_proj.biases": "model.safetensors",
228
+ "model.layers.17.mlp.up_proj.scales": "model.safetensors",
229
+ "model.layers.17.mlp.up_proj.weight": "model.safetensors",
230
+ "model.layers.17.post_attention_layernorm.weight": "model.safetensors",
231
+ "model.layers.17.self_attn.k_proj.biases": "model.safetensors",
232
+ "model.layers.17.self_attn.k_proj.scales": "model.safetensors",
233
+ "model.layers.17.self_attn.k_proj.weight": "model.safetensors",
234
+ "model.layers.17.self_attn.o_proj.biases": "model.safetensors",
235
+ "model.layers.17.self_attn.o_proj.scales": "model.safetensors",
236
+ "model.layers.17.self_attn.o_proj.weight": "model.safetensors",
237
+ "model.layers.17.self_attn.q_proj.biases": "model.safetensors",
238
+ "model.layers.17.self_attn.q_proj.scales": "model.safetensors",
239
+ "model.layers.17.self_attn.q_proj.weight": "model.safetensors",
240
+ "model.layers.17.self_attn.v_proj.biases": "model.safetensors",
241
+ "model.layers.17.self_attn.v_proj.scales": "model.safetensors",
242
+ "model.layers.17.self_attn.v_proj.weight": "model.safetensors",
243
+ "model.layers.18.input_layernorm.weight": "model.safetensors",
244
+ "model.layers.18.mlp.down_proj.biases": "model.safetensors",
245
+ "model.layers.18.mlp.down_proj.scales": "model.safetensors",
246
+ "model.layers.18.mlp.down_proj.weight": "model.safetensors",
247
+ "model.layers.18.mlp.gate_proj.biases": "model.safetensors",
248
+ "model.layers.18.mlp.gate_proj.scales": "model.safetensors",
249
+ "model.layers.18.mlp.gate_proj.weight": "model.safetensors",
250
+ "model.layers.18.mlp.up_proj.biases": "model.safetensors",
251
+ "model.layers.18.mlp.up_proj.scales": "model.safetensors",
252
+ "model.layers.18.mlp.up_proj.weight": "model.safetensors",
253
+ "model.layers.18.post_attention_layernorm.weight": "model.safetensors",
254
+ "model.layers.18.self_attn.k_proj.biases": "model.safetensors",
255
+ "model.layers.18.self_attn.k_proj.scales": "model.safetensors",
256
+ "model.layers.18.self_attn.k_proj.weight": "model.safetensors",
257
+ "model.layers.18.self_attn.o_proj.biases": "model.safetensors",
258
+ "model.layers.18.self_attn.o_proj.scales": "model.safetensors",
259
+ "model.layers.18.self_attn.o_proj.weight": "model.safetensors",
260
+ "model.layers.18.self_attn.q_proj.biases": "model.safetensors",
261
+ "model.layers.18.self_attn.q_proj.scales": "model.safetensors",
262
+ "model.layers.18.self_attn.q_proj.weight": "model.safetensors",
263
+ "model.layers.18.self_attn.v_proj.biases": "model.safetensors",
264
+ "model.layers.18.self_attn.v_proj.scales": "model.safetensors",
265
+ "model.layers.18.self_attn.v_proj.weight": "model.safetensors",
266
+ "model.layers.19.input_layernorm.weight": "model.safetensors",
267
+ "model.layers.19.mlp.down_proj.biases": "model.safetensors",
268
+ "model.layers.19.mlp.down_proj.scales": "model.safetensors",
269
+ "model.layers.19.mlp.down_proj.weight": "model.safetensors",
270
+ "model.layers.19.mlp.gate_proj.biases": "model.safetensors",
271
+ "model.layers.19.mlp.gate_proj.scales": "model.safetensors",
272
+ "model.layers.19.mlp.gate_proj.weight": "model.safetensors",
273
+ "model.layers.19.mlp.up_proj.biases": "model.safetensors",
274
+ "model.layers.19.mlp.up_proj.scales": "model.safetensors",
275
+ "model.layers.19.mlp.up_proj.weight": "model.safetensors",
276
+ "model.layers.19.post_attention_layernorm.weight": "model.safetensors",
277
+ "model.layers.19.self_attn.k_proj.biases": "model.safetensors",
278
+ "model.layers.19.self_attn.k_proj.scales": "model.safetensors",
279
+ "model.layers.19.self_attn.k_proj.weight": "model.safetensors",
280
+ "model.layers.19.self_attn.o_proj.biases": "model.safetensors",
281
+ "model.layers.19.self_attn.o_proj.scales": "model.safetensors",
282
+ "model.layers.19.self_attn.o_proj.weight": "model.safetensors",
283
+ "model.layers.19.self_attn.q_proj.biases": "model.safetensors",
284
+ "model.layers.19.self_attn.q_proj.scales": "model.safetensors",
285
+ "model.layers.19.self_attn.q_proj.weight": "model.safetensors",
286
+ "model.layers.19.self_attn.v_proj.biases": "model.safetensors",
287
+ "model.layers.19.self_attn.v_proj.scales": "model.safetensors",
288
+ "model.layers.19.self_attn.v_proj.weight": "model.safetensors",
289
+ "model.layers.2.input_layernorm.weight": "model.safetensors",
290
+ "model.layers.2.mlp.down_proj.biases": "model.safetensors",
291
+ "model.layers.2.mlp.down_proj.scales": "model.safetensors",
292
+ "model.layers.2.mlp.down_proj.weight": "model.safetensors",
293
+ "model.layers.2.mlp.gate_proj.biases": "model.safetensors",
294
+ "model.layers.2.mlp.gate_proj.scales": "model.safetensors",
295
+ "model.layers.2.mlp.gate_proj.weight": "model.safetensors",
296
+ "model.layers.2.mlp.up_proj.biases": "model.safetensors",
297
+ "model.layers.2.mlp.up_proj.scales": "model.safetensors",
298
+ "model.layers.2.mlp.up_proj.weight": "model.safetensors",
299
+ "model.layers.2.post_attention_layernorm.weight": "model.safetensors",
300
+ "model.layers.2.self_attn.k_proj.biases": "model.safetensors",
301
+ "model.layers.2.self_attn.k_proj.scales": "model.safetensors",
302
+ "model.layers.2.self_attn.k_proj.weight": "model.safetensors",
303
+ "model.layers.2.self_attn.o_proj.biases": "model.safetensors",
304
+ "model.layers.2.self_attn.o_proj.scales": "model.safetensors",
305
+ "model.layers.2.self_attn.o_proj.weight": "model.safetensors",
306
+ "model.layers.2.self_attn.q_proj.biases": "model.safetensors",
307
+ "model.layers.2.self_attn.q_proj.scales": "model.safetensors",
308
+ "model.layers.2.self_attn.q_proj.weight": "model.safetensors",
309
+ "model.layers.2.self_attn.v_proj.biases": "model.safetensors",
310
+ "model.layers.2.self_attn.v_proj.scales": "model.safetensors",
311
+ "model.layers.2.self_attn.v_proj.weight": "model.safetensors",
312
+ "model.layers.20.input_layernorm.weight": "model.safetensors",
313
+ "model.layers.20.mlp.down_proj.biases": "model.safetensors",
314
+ "model.layers.20.mlp.down_proj.scales": "model.safetensors",
315
+ "model.layers.20.mlp.down_proj.weight": "model.safetensors",
316
+ "model.layers.20.mlp.gate_proj.biases": "model.safetensors",
317
+ "model.layers.20.mlp.gate_proj.scales": "model.safetensors",
318
+ "model.layers.20.mlp.gate_proj.weight": "model.safetensors",
319
+ "model.layers.20.mlp.up_proj.biases": "model.safetensors",
320
+ "model.layers.20.mlp.up_proj.scales": "model.safetensors",
321
+ "model.layers.20.mlp.up_proj.weight": "model.safetensors",
322
+ "model.layers.20.post_attention_layernorm.weight": "model.safetensors",
323
+ "model.layers.20.self_attn.k_proj.biases": "model.safetensors",
324
+ "model.layers.20.self_attn.k_proj.scales": "model.safetensors",
325
+ "model.layers.20.self_attn.k_proj.weight": "model.safetensors",
326
+ "model.layers.20.self_attn.o_proj.biases": "model.safetensors",
327
+ "model.layers.20.self_attn.o_proj.scales": "model.safetensors",
328
+ "model.layers.20.self_attn.o_proj.weight": "model.safetensors",
329
+ "model.layers.20.self_attn.q_proj.biases": "model.safetensors",
330
+ "model.layers.20.self_attn.q_proj.scales": "model.safetensors",
331
+ "model.layers.20.self_attn.q_proj.weight": "model.safetensors",
332
+ "model.layers.20.self_attn.v_proj.biases": "model.safetensors",
333
+ "model.layers.20.self_attn.v_proj.scales": "model.safetensors",
334
+ "model.layers.20.self_attn.v_proj.weight": "model.safetensors",
335
+ "model.layers.21.input_layernorm.weight": "model.safetensors",
336
+ "model.layers.21.mlp.down_proj.biases": "model.safetensors",
337
+ "model.layers.21.mlp.down_proj.scales": "model.safetensors",
338
+ "model.layers.21.mlp.down_proj.weight": "model.safetensors",
339
+ "model.layers.21.mlp.gate_proj.biases": "model.safetensors",
340
+ "model.layers.21.mlp.gate_proj.scales": "model.safetensors",
341
+ "model.layers.21.mlp.gate_proj.weight": "model.safetensors",
342
+ "model.layers.21.mlp.up_proj.biases": "model.safetensors",
343
+ "model.layers.21.mlp.up_proj.scales": "model.safetensors",
344
+ "model.layers.21.mlp.up_proj.weight": "model.safetensors",
345
+ "model.layers.21.post_attention_layernorm.weight": "model.safetensors",
346
+ "model.layers.21.self_attn.k_proj.biases": "model.safetensors",
347
+ "model.layers.21.self_attn.k_proj.scales": "model.safetensors",
348
+ "model.layers.21.self_attn.k_proj.weight": "model.safetensors",
349
+ "model.layers.21.self_attn.o_proj.biases": "model.safetensors",
350
+ "model.layers.21.self_attn.o_proj.scales": "model.safetensors",
351
+ "model.layers.21.self_attn.o_proj.weight": "model.safetensors",
352
+ "model.layers.21.self_attn.q_proj.biases": "model.safetensors",
353
+ "model.layers.21.self_attn.q_proj.scales": "model.safetensors",
354
+ "model.layers.21.self_attn.q_proj.weight": "model.safetensors",
355
+ "model.layers.21.self_attn.v_proj.biases": "model.safetensors",
356
+ "model.layers.21.self_attn.v_proj.scales": "model.safetensors",
357
+ "model.layers.21.self_attn.v_proj.weight": "model.safetensors",
358
+ "model.layers.22.input_layernorm.weight": "model.safetensors",
359
+ "model.layers.22.mlp.down_proj.biases": "model.safetensors",
360
+ "model.layers.22.mlp.down_proj.scales": "model.safetensors",
361
+ "model.layers.22.mlp.down_proj.weight": "model.safetensors",
362
+ "model.layers.22.mlp.gate_proj.biases": "model.safetensors",
363
+ "model.layers.22.mlp.gate_proj.scales": "model.safetensors",
364
+ "model.layers.22.mlp.gate_proj.weight": "model.safetensors",
365
+ "model.layers.22.mlp.up_proj.biases": "model.safetensors",
366
+ "model.layers.22.mlp.up_proj.scales": "model.safetensors",
367
+ "model.layers.22.mlp.up_proj.weight": "model.safetensors",
368
+ "model.layers.22.post_attention_layernorm.weight": "model.safetensors",
369
+ "model.layers.22.self_attn.k_proj.biases": "model.safetensors",
370
+ "model.layers.22.self_attn.k_proj.scales": "model.safetensors",
371
+ "model.layers.22.self_attn.k_proj.weight": "model.safetensors",
372
+ "model.layers.22.self_attn.o_proj.biases": "model.safetensors",
373
+ "model.layers.22.self_attn.o_proj.scales": "model.safetensors",
374
+ "model.layers.22.self_attn.o_proj.weight": "model.safetensors",
375
+ "model.layers.22.self_attn.q_proj.biases": "model.safetensors",
376
+ "model.layers.22.self_attn.q_proj.scales": "model.safetensors",
377
+ "model.layers.22.self_attn.q_proj.weight": "model.safetensors",
378
+ "model.layers.22.self_attn.v_proj.biases": "model.safetensors",
379
+ "model.layers.22.self_attn.v_proj.scales": "model.safetensors",
380
+ "model.layers.22.self_attn.v_proj.weight": "model.safetensors",
381
+ "model.layers.23.input_layernorm.weight": "model.safetensors",
382
+ "model.layers.23.mlp.down_proj.biases": "model.safetensors",
383
+ "model.layers.23.mlp.down_proj.scales": "model.safetensors",
384
+ "model.layers.23.mlp.down_proj.weight": "model.safetensors",
385
+ "model.layers.23.mlp.gate_proj.biases": "model.safetensors",
386
+ "model.layers.23.mlp.gate_proj.scales": "model.safetensors",
387
+ "model.layers.23.mlp.gate_proj.weight": "model.safetensors",
388
+ "model.layers.23.mlp.up_proj.biases": "model.safetensors",
389
+ "model.layers.23.mlp.up_proj.scales": "model.safetensors",
390
+ "model.layers.23.mlp.up_proj.weight": "model.safetensors",
391
+ "model.layers.23.post_attention_layernorm.weight": "model.safetensors",
392
+ "model.layers.23.self_attn.k_proj.biases": "model.safetensors",
393
+ "model.layers.23.self_attn.k_proj.scales": "model.safetensors",
394
+ "model.layers.23.self_attn.k_proj.weight": "model.safetensors",
395
+ "model.layers.23.self_attn.o_proj.biases": "model.safetensors",
396
+ "model.layers.23.self_attn.o_proj.scales": "model.safetensors",
397
+ "model.layers.23.self_attn.o_proj.weight": "model.safetensors",
398
+ "model.layers.23.self_attn.q_proj.biases": "model.safetensors",
399
+ "model.layers.23.self_attn.q_proj.scales": "model.safetensors",
400
+ "model.layers.23.self_attn.q_proj.weight": "model.safetensors",
401
+ "model.layers.23.self_attn.v_proj.biases": "model.safetensors",
402
+ "model.layers.23.self_attn.v_proj.scales": "model.safetensors",
403
+ "model.layers.23.self_attn.v_proj.weight": "model.safetensors",
404
+ "model.layers.24.input_layernorm.weight": "model.safetensors",
405
+ "model.layers.24.mlp.down_proj.biases": "model.safetensors",
406
+ "model.layers.24.mlp.down_proj.scales": "model.safetensors",
407
+ "model.layers.24.mlp.down_proj.weight": "model.safetensors",
408
+ "model.layers.24.mlp.gate_proj.biases": "model.safetensors",
409
+ "model.layers.24.mlp.gate_proj.scales": "model.safetensors",
410
+ "model.layers.24.mlp.gate_proj.weight": "model.safetensors",
411
+ "model.layers.24.mlp.up_proj.biases": "model.safetensors",
412
+ "model.layers.24.mlp.up_proj.scales": "model.safetensors",
413
+ "model.layers.24.mlp.up_proj.weight": "model.safetensors",
414
+ "model.layers.24.post_attention_layernorm.weight": "model.safetensors",
415
+ "model.layers.24.self_attn.k_proj.biases": "model.safetensors",
416
+ "model.layers.24.self_attn.k_proj.scales": "model.safetensors",
417
+ "model.layers.24.self_attn.k_proj.weight": "model.safetensors",
418
+ "model.layers.24.self_attn.o_proj.biases": "model.safetensors",
419
+ "model.layers.24.self_attn.o_proj.scales": "model.safetensors",
420
+ "model.layers.24.self_attn.o_proj.weight": "model.safetensors",
421
+ "model.layers.24.self_attn.q_proj.biases": "model.safetensors",
422
+ "model.layers.24.self_attn.q_proj.scales": "model.safetensors",
423
+ "model.layers.24.self_attn.q_proj.weight": "model.safetensors",
424
+ "model.layers.24.self_attn.v_proj.biases": "model.safetensors",
425
+ "model.layers.24.self_attn.v_proj.scales": "model.safetensors",
426
+ "model.layers.24.self_attn.v_proj.weight": "model.safetensors",
427
+ "model.layers.25.input_layernorm.weight": "model.safetensors",
428
+ "model.layers.25.mlp.down_proj.biases": "model.safetensors",
429
+ "model.layers.25.mlp.down_proj.scales": "model.safetensors",
430
+ "model.layers.25.mlp.down_proj.weight": "model.safetensors",
431
+ "model.layers.25.mlp.gate_proj.biases": "model.safetensors",
432
+ "model.layers.25.mlp.gate_proj.scales": "model.safetensors",
433
+ "model.layers.25.mlp.gate_proj.weight": "model.safetensors",
434
+ "model.layers.25.mlp.up_proj.biases": "model.safetensors",
435
+ "model.layers.25.mlp.up_proj.scales": "model.safetensors",
436
+ "model.layers.25.mlp.up_proj.weight": "model.safetensors",
437
+ "model.layers.25.post_attention_layernorm.weight": "model.safetensors",
438
+ "model.layers.25.self_attn.k_proj.biases": "model.safetensors",
439
+ "model.layers.25.self_attn.k_proj.scales": "model.safetensors",
440
+ "model.layers.25.self_attn.k_proj.weight": "model.safetensors",
441
+ "model.layers.25.self_attn.o_proj.biases": "model.safetensors",
442
+ "model.layers.25.self_attn.o_proj.scales": "model.safetensors",
443
+ "model.layers.25.self_attn.o_proj.weight": "model.safetensors",
444
+ "model.layers.25.self_attn.q_proj.biases": "model.safetensors",
445
+ "model.layers.25.self_attn.q_proj.scales": "model.safetensors",
446
+ "model.layers.25.self_attn.q_proj.weight": "model.safetensors",
447
+ "model.layers.25.self_attn.v_proj.biases": "model.safetensors",
448
+ "model.layers.25.self_attn.v_proj.scales": "model.safetensors",
449
+ "model.layers.25.self_attn.v_proj.weight": "model.safetensors",
450
+ "model.layers.26.input_layernorm.weight": "model.safetensors",
451
+ "model.layers.26.mlp.down_proj.biases": "model.safetensors",
452
+ "model.layers.26.mlp.down_proj.scales": "model.safetensors",
453
+ "model.layers.26.mlp.down_proj.weight": "model.safetensors",
454
+ "model.layers.26.mlp.gate_proj.biases": "model.safetensors",
455
+ "model.layers.26.mlp.gate_proj.scales": "model.safetensors",
456
+ "model.layers.26.mlp.gate_proj.weight": "model.safetensors",
457
+ "model.layers.26.mlp.up_proj.biases": "model.safetensors",
458
+ "model.layers.26.mlp.up_proj.scales": "model.safetensors",
459
+ "model.layers.26.mlp.up_proj.weight": "model.safetensors",
460
+ "model.layers.26.post_attention_layernorm.weight": "model.safetensors",
461
+ "model.layers.26.self_attn.k_proj.biases": "model.safetensors",
462
+ "model.layers.26.self_attn.k_proj.scales": "model.safetensors",
463
+ "model.layers.26.self_attn.k_proj.weight": "model.safetensors",
464
+ "model.layers.26.self_attn.o_proj.biases": "model.safetensors",
465
+ "model.layers.26.self_attn.o_proj.scales": "model.safetensors",
466
+ "model.layers.26.self_attn.o_proj.weight": "model.safetensors",
467
+ "model.layers.26.self_attn.q_proj.biases": "model.safetensors",
468
+ "model.layers.26.self_attn.q_proj.scales": "model.safetensors",
469
+ "model.layers.26.self_attn.q_proj.weight": "model.safetensors",
470
+ "model.layers.26.self_attn.v_proj.biases": "model.safetensors",
471
+ "model.layers.26.self_attn.v_proj.scales": "model.safetensors",
472
+ "model.layers.26.self_attn.v_proj.weight": "model.safetensors",
473
+ "model.layers.27.input_layernorm.weight": "model.safetensors",
474
+ "model.layers.27.mlp.down_proj.biases": "model.safetensors",
475
+ "model.layers.27.mlp.down_proj.scales": "model.safetensors",
476
+ "model.layers.27.mlp.down_proj.weight": "model.safetensors",
477
+ "model.layers.27.mlp.gate_proj.biases": "model.safetensors",
478
+ "model.layers.27.mlp.gate_proj.scales": "model.safetensors",
479
+ "model.layers.27.mlp.gate_proj.weight": "model.safetensors",
480
+ "model.layers.27.mlp.up_proj.biases": "model.safetensors",
481
+ "model.layers.27.mlp.up_proj.scales": "model.safetensors",
482
+ "model.layers.27.mlp.up_proj.weight": "model.safetensors",
483
+ "model.layers.27.post_attention_layernorm.weight": "model.safetensors",
484
+ "model.layers.27.self_attn.k_proj.biases": "model.safetensors",
485
+ "model.layers.27.self_attn.k_proj.scales": "model.safetensors",
486
+ "model.layers.27.self_attn.k_proj.weight": "model.safetensors",
487
+ "model.layers.27.self_attn.o_proj.biases": "model.safetensors",
488
+ "model.layers.27.self_attn.o_proj.scales": "model.safetensors",
489
+ "model.layers.27.self_attn.o_proj.weight": "model.safetensors",
490
+ "model.layers.27.self_attn.q_proj.biases": "model.safetensors",
491
+ "model.layers.27.self_attn.q_proj.scales": "model.safetensors",
492
+ "model.layers.27.self_attn.q_proj.weight": "model.safetensors",
493
+ "model.layers.27.self_attn.v_proj.biases": "model.safetensors",
494
+ "model.layers.27.self_attn.v_proj.scales": "model.safetensors",
495
+ "model.layers.27.self_attn.v_proj.weight": "model.safetensors",
496
+ "model.layers.28.input_layernorm.weight": "model.safetensors",
497
+ "model.layers.28.mlp.down_proj.biases": "model.safetensors",
498
+ "model.layers.28.mlp.down_proj.scales": "model.safetensors",
499
+ "model.layers.28.mlp.down_proj.weight": "model.safetensors",
500
+ "model.layers.28.mlp.gate_proj.biases": "model.safetensors",
501
+ "model.layers.28.mlp.gate_proj.scales": "model.safetensors",
502
+ "model.layers.28.mlp.gate_proj.weight": "model.safetensors",
503
+ "model.layers.28.mlp.up_proj.biases": "model.safetensors",
504
+ "model.layers.28.mlp.up_proj.scales": "model.safetensors",
505
+ "model.layers.28.mlp.up_proj.weight": "model.safetensors",
506
+ "model.layers.28.post_attention_layernorm.weight": "model.safetensors",
507
+ "model.layers.28.self_attn.k_proj.biases": "model.safetensors",
508
+ "model.layers.28.self_attn.k_proj.scales": "model.safetensors",
509
+ "model.layers.28.self_attn.k_proj.weight": "model.safetensors",
510
+ "model.layers.28.self_attn.o_proj.biases": "model.safetensors",
511
+ "model.layers.28.self_attn.o_proj.scales": "model.safetensors",
512
+ "model.layers.28.self_attn.o_proj.weight": "model.safetensors",
513
+ "model.layers.28.self_attn.q_proj.biases": "model.safetensors",
514
+ "model.layers.28.self_attn.q_proj.scales": "model.safetensors",
515
+ "model.layers.28.self_attn.q_proj.weight": "model.safetensors",
516
+ "model.layers.28.self_attn.v_proj.biases": "model.safetensors",
517
+ "model.layers.28.self_attn.v_proj.scales": "model.safetensors",
518
+ "model.layers.28.self_attn.v_proj.weight": "model.safetensors",
519
+ "model.layers.29.input_layernorm.weight": "model.safetensors",
520
+ "model.layers.29.mlp.down_proj.biases": "model.safetensors",
521
+ "model.layers.29.mlp.down_proj.scales": "model.safetensors",
522
+ "model.layers.29.mlp.down_proj.weight": "model.safetensors",
523
+ "model.layers.29.mlp.gate_proj.biases": "model.safetensors",
524
+ "model.layers.29.mlp.gate_proj.scales": "model.safetensors",
525
+ "model.layers.29.mlp.gate_proj.weight": "model.safetensors",
526
+ "model.layers.29.mlp.up_proj.biases": "model.safetensors",
527
+ "model.layers.29.mlp.up_proj.scales": "model.safetensors",
528
+ "model.layers.29.mlp.up_proj.weight": "model.safetensors",
529
+ "model.layers.29.post_attention_layernorm.weight": "model.safetensors",
530
+ "model.layers.29.self_attn.k_proj.biases": "model.safetensors",
531
+ "model.layers.29.self_attn.k_proj.scales": "model.safetensors",
532
+ "model.layers.29.self_attn.k_proj.weight": "model.safetensors",
533
+ "model.layers.29.self_attn.o_proj.biases": "model.safetensors",
534
+ "model.layers.29.self_attn.o_proj.scales": "model.safetensors",
535
+ "model.layers.29.self_attn.o_proj.weight": "model.safetensors",
536
+ "model.layers.29.self_attn.q_proj.biases": "model.safetensors",
537
+ "model.layers.29.self_attn.q_proj.scales": "model.safetensors",
538
+ "model.layers.29.self_attn.q_proj.weight": "model.safetensors",
539
+ "model.layers.29.self_attn.v_proj.biases": "model.safetensors",
540
+ "model.layers.29.self_attn.v_proj.scales": "model.safetensors",
541
+ "model.layers.29.self_attn.v_proj.weight": "model.safetensors",
542
+ "model.layers.3.input_layernorm.weight": "model.safetensors",
543
+ "model.layers.3.mlp.down_proj.biases": "model.safetensors",
544
+ "model.layers.3.mlp.down_proj.scales": "model.safetensors",
545
+ "model.layers.3.mlp.down_proj.weight": "model.safetensors",
546
+ "model.layers.3.mlp.gate_proj.biases": "model.safetensors",
547
+ "model.layers.3.mlp.gate_proj.scales": "model.safetensors",
548
+ "model.layers.3.mlp.gate_proj.weight": "model.safetensors",
549
+ "model.layers.3.mlp.up_proj.biases": "model.safetensors",
550
+ "model.layers.3.mlp.up_proj.scales": "model.safetensors",
551
+ "model.layers.3.mlp.up_proj.weight": "model.safetensors",
552
+ "model.layers.3.post_attention_layernorm.weight": "model.safetensors",
553
+ "model.layers.3.self_attn.k_proj.biases": "model.safetensors",
554
+ "model.layers.3.self_attn.k_proj.scales": "model.safetensors",
555
+ "model.layers.3.self_attn.k_proj.weight": "model.safetensors",
556
+ "model.layers.3.self_attn.o_proj.biases": "model.safetensors",
557
+ "model.layers.3.self_attn.o_proj.scales": "model.safetensors",
558
+ "model.layers.3.self_attn.o_proj.weight": "model.safetensors",
559
+ "model.layers.3.self_attn.q_proj.biases": "model.safetensors",
560
+ "model.layers.3.self_attn.q_proj.scales": "model.safetensors",
561
+ "model.layers.3.self_attn.q_proj.weight": "model.safetensors",
562
+ "model.layers.3.self_attn.v_proj.biases": "model.safetensors",
563
+ "model.layers.3.self_attn.v_proj.scales": "model.safetensors",
564
+ "model.layers.3.self_attn.v_proj.weight": "model.safetensors",
565
+ "model.layers.30.input_layernorm.weight": "model.safetensors",
566
+ "model.layers.30.mlp.down_proj.biases": "model.safetensors",
567
+ "model.layers.30.mlp.down_proj.scales": "model.safetensors",
568
+ "model.layers.30.mlp.down_proj.weight": "model.safetensors",
569
+ "model.layers.30.mlp.gate_proj.biases": "model.safetensors",
570
+ "model.layers.30.mlp.gate_proj.scales": "model.safetensors",
571
+ "model.layers.30.mlp.gate_proj.weight": "model.safetensors",
572
+ "model.layers.30.mlp.up_proj.biases": "model.safetensors",
573
+ "model.layers.30.mlp.up_proj.scales": "model.safetensors",
574
+ "model.layers.30.mlp.up_proj.weight": "model.safetensors",
575
+ "model.layers.30.post_attention_layernorm.weight": "model.safetensors",
576
+ "model.layers.30.self_attn.k_proj.biases": "model.safetensors",
577
+ "model.layers.30.self_attn.k_proj.scales": "model.safetensors",
578
+ "model.layers.30.self_attn.k_proj.weight": "model.safetensors",
579
+ "model.layers.30.self_attn.o_proj.biases": "model.safetensors",
580
+ "model.layers.30.self_attn.o_proj.scales": "model.safetensors",
581
+ "model.layers.30.self_attn.o_proj.weight": "model.safetensors",
582
+ "model.layers.30.self_attn.q_proj.biases": "model.safetensors",
583
+ "model.layers.30.self_attn.q_proj.scales": "model.safetensors",
584
+ "model.layers.30.self_attn.q_proj.weight": "model.safetensors",
585
+ "model.layers.30.self_attn.v_proj.biases": "model.safetensors",
586
+ "model.layers.30.self_attn.v_proj.scales": "model.safetensors",
587
+ "model.layers.30.self_attn.v_proj.weight": "model.safetensors",
588
+ "model.layers.31.input_layernorm.weight": "model.safetensors",
589
+ "model.layers.31.mlp.down_proj.biases": "model.safetensors",
590
+ "model.layers.31.mlp.down_proj.scales": "model.safetensors",
591
+ "model.layers.31.mlp.down_proj.weight": "model.safetensors",
592
+ "model.layers.31.mlp.gate_proj.biases": "model.safetensors",
593
+ "model.layers.31.mlp.gate_proj.scales": "model.safetensors",
594
+ "model.layers.31.mlp.gate_proj.weight": "model.safetensors",
595
+ "model.layers.31.mlp.up_proj.biases": "model.safetensors",
596
+ "model.layers.31.mlp.up_proj.scales": "model.safetensors",
597
+ "model.layers.31.mlp.up_proj.weight": "model.safetensors",
598
+ "model.layers.31.post_attention_layernorm.weight": "model.safetensors",
599
+ "model.layers.31.self_attn.k_proj.biases": "model.safetensors",
600
+ "model.layers.31.self_attn.k_proj.scales": "model.safetensors",
601
+ "model.layers.31.self_attn.k_proj.weight": "model.safetensors",
602
+ "model.layers.31.self_attn.o_proj.biases": "model.safetensors",
603
+ "model.layers.31.self_attn.o_proj.scales": "model.safetensors",
604
+ "model.layers.31.self_attn.o_proj.weight": "model.safetensors",
605
+ "model.layers.31.self_attn.q_proj.biases": "model.safetensors",
606
+ "model.layers.31.self_attn.q_proj.scales": "model.safetensors",
607
+ "model.layers.31.self_attn.q_proj.weight": "model.safetensors",
608
+ "model.layers.31.self_attn.v_proj.biases": "model.safetensors",
609
+ "model.layers.31.self_attn.v_proj.scales": "model.safetensors",
610
+ "model.layers.31.self_attn.v_proj.weight": "model.safetensors",
611
+ "model.layers.32.input_layernorm.weight": "model.safetensors",
612
+ "model.layers.32.mlp.down_proj.biases": "model.safetensors",
613
+ "model.layers.32.mlp.down_proj.scales": "model.safetensors",
614
+ "model.layers.32.mlp.down_proj.weight": "model.safetensors",
615
+ "model.layers.32.mlp.gate_proj.biases": "model.safetensors",
616
+ "model.layers.32.mlp.gate_proj.scales": "model.safetensors",
617
+ "model.layers.32.mlp.gate_proj.weight": "model.safetensors",
618
+ "model.layers.32.mlp.up_proj.biases": "model.safetensors",
619
+ "model.layers.32.mlp.up_proj.scales": "model.safetensors",
620
+ "model.layers.32.mlp.up_proj.weight": "model.safetensors",
621
+ "model.layers.32.post_attention_layernorm.weight": "model.safetensors",
622
+ "model.layers.32.self_attn.k_proj.biases": "model.safetensors",
623
+ "model.layers.32.self_attn.k_proj.scales": "model.safetensors",
624
+ "model.layers.32.self_attn.k_proj.weight": "model.safetensors",
625
+ "model.layers.32.self_attn.o_proj.biases": "model.safetensors",
626
+ "model.layers.32.self_attn.o_proj.scales": "model.safetensors",
627
+ "model.layers.32.self_attn.o_proj.weight": "model.safetensors",
628
+ "model.layers.32.self_attn.q_proj.biases": "model.safetensors",
629
+ "model.layers.32.self_attn.q_proj.scales": "model.safetensors",
630
+ "model.layers.32.self_attn.q_proj.weight": "model.safetensors",
631
+ "model.layers.32.self_attn.v_proj.biases": "model.safetensors",
632
+ "model.layers.32.self_attn.v_proj.scales": "model.safetensors",
633
+ "model.layers.32.self_attn.v_proj.weight": "model.safetensors",
634
+ "model.layers.33.input_layernorm.weight": "model.safetensors",
635
+ "model.layers.33.mlp.down_proj.biases": "model.safetensors",
636
+ "model.layers.33.mlp.down_proj.scales": "model.safetensors",
637
+ "model.layers.33.mlp.down_proj.weight": "model.safetensors",
638
+ "model.layers.33.mlp.gate_proj.biases": "model.safetensors",
639
+ "model.layers.33.mlp.gate_proj.scales": "model.safetensors",
640
+ "model.layers.33.mlp.gate_proj.weight": "model.safetensors",
641
+ "model.layers.33.mlp.up_proj.biases": "model.safetensors",
642
+ "model.layers.33.mlp.up_proj.scales": "model.safetensors",
643
+ "model.layers.33.mlp.up_proj.weight": "model.safetensors",
644
+ "model.layers.33.post_attention_layernorm.weight": "model.safetensors",
645
+ "model.layers.33.self_attn.k_proj.biases": "model.safetensors",
646
+ "model.layers.33.self_attn.k_proj.scales": "model.safetensors",
647
+ "model.layers.33.self_attn.k_proj.weight": "model.safetensors",
648
+ "model.layers.33.self_attn.o_proj.biases": "model.safetensors",
649
+ "model.layers.33.self_attn.o_proj.scales": "model.safetensors",
650
+ "model.layers.33.self_attn.o_proj.weight": "model.safetensors",
651
+ "model.layers.33.self_attn.q_proj.biases": "model.safetensors",
652
+ "model.layers.33.self_attn.q_proj.scales": "model.safetensors",
653
+ "model.layers.33.self_attn.q_proj.weight": "model.safetensors",
654
+ "model.layers.33.self_attn.v_proj.biases": "model.safetensors",
655
+ "model.layers.33.self_attn.v_proj.scales": "model.safetensors",
656
+ "model.layers.33.self_attn.v_proj.weight": "model.safetensors",
657
+ "model.layers.34.input_layernorm.weight": "model.safetensors",
658
+ "model.layers.34.mlp.down_proj.biases": "model.safetensors",
659
+ "model.layers.34.mlp.down_proj.scales": "model.safetensors",
660
+ "model.layers.34.mlp.down_proj.weight": "model.safetensors",
661
+ "model.layers.34.mlp.gate_proj.biases": "model.safetensors",
662
+ "model.layers.34.mlp.gate_proj.scales": "model.safetensors",
663
+ "model.layers.34.mlp.gate_proj.weight": "model.safetensors",
664
+ "model.layers.34.mlp.up_proj.biases": "model.safetensors",
665
+ "model.layers.34.mlp.up_proj.scales": "model.safetensors",
666
+ "model.layers.34.mlp.up_proj.weight": "model.safetensors",
667
+ "model.layers.34.post_attention_layernorm.weight": "model.safetensors",
668
+ "model.layers.34.self_attn.k_proj.biases": "model.safetensors",
669
+ "model.layers.34.self_attn.k_proj.scales": "model.safetensors",
670
+ "model.layers.34.self_attn.k_proj.weight": "model.safetensors",
671
+ "model.layers.34.self_attn.o_proj.biases": "model.safetensors",
672
+ "model.layers.34.self_attn.o_proj.scales": "model.safetensors",
673
+ "model.layers.34.self_attn.o_proj.weight": "model.safetensors",
674
+ "model.layers.34.self_attn.q_proj.biases": "model.safetensors",
675
+ "model.layers.34.self_attn.q_proj.scales": "model.safetensors",
676
+ "model.layers.34.self_attn.q_proj.weight": "model.safetensors",
677
+ "model.layers.34.self_attn.v_proj.biases": "model.safetensors",
678
+ "model.layers.34.self_attn.v_proj.scales": "model.safetensors",
679
+ "model.layers.34.self_attn.v_proj.weight": "model.safetensors",
680
+ "model.layers.35.input_layernorm.weight": "model.safetensors",
681
+ "model.layers.35.mlp.down_proj.biases": "model.safetensors",
682
+ "model.layers.35.mlp.down_proj.scales": "model.safetensors",
683
+ "model.layers.35.mlp.down_proj.weight": "model.safetensors",
684
+ "model.layers.35.mlp.gate_proj.biases": "model.safetensors",
685
+ "model.layers.35.mlp.gate_proj.scales": "model.safetensors",
686
+ "model.layers.35.mlp.gate_proj.weight": "model.safetensors",
687
+ "model.layers.35.mlp.up_proj.biases": "model.safetensors",
688
+ "model.layers.35.mlp.up_proj.scales": "model.safetensors",
689
+ "model.layers.35.mlp.up_proj.weight": "model.safetensors",
690
+ "model.layers.35.post_attention_layernorm.weight": "model.safetensors",
691
+ "model.layers.35.self_attn.k_proj.biases": "model.safetensors",
692
+ "model.layers.35.self_attn.k_proj.scales": "model.safetensors",
693
+ "model.layers.35.self_attn.k_proj.weight": "model.safetensors",
694
+ "model.layers.35.self_attn.o_proj.biases": "model.safetensors",
695
+ "model.layers.35.self_attn.o_proj.scales": "model.safetensors",
696
+ "model.layers.35.self_attn.o_proj.weight": "model.safetensors",
697
+ "model.layers.35.self_attn.q_proj.biases": "model.safetensors",
698
+ "model.layers.35.self_attn.q_proj.scales": "model.safetensors",
699
+ "model.layers.35.self_attn.q_proj.weight": "model.safetensors",
700
+ "model.layers.35.self_attn.v_proj.biases": "model.safetensors",
701
+ "model.layers.35.self_attn.v_proj.scales": "model.safetensors",
702
+ "model.layers.35.self_attn.v_proj.weight": "model.safetensors",
703
+ "model.layers.36.input_layernorm.weight": "model.safetensors",
704
+ "model.layers.36.mlp.down_proj.biases": "model.safetensors",
705
+ "model.layers.36.mlp.down_proj.scales": "model.safetensors",
706
+ "model.layers.36.mlp.down_proj.weight": "model.safetensors",
707
+ "model.layers.36.mlp.gate_proj.biases": "model.safetensors",
708
+ "model.layers.36.mlp.gate_proj.scales": "model.safetensors",
709
+ "model.layers.36.mlp.gate_proj.weight": "model.safetensors",
710
+ "model.layers.36.mlp.up_proj.biases": "model.safetensors",
711
+ "model.layers.36.mlp.up_proj.scales": "model.safetensors",
712
+ "model.layers.36.mlp.up_proj.weight": "model.safetensors",
713
+ "model.layers.36.post_attention_layernorm.weight": "model.safetensors",
714
+ "model.layers.36.self_attn.k_proj.biases": "model.safetensors",
715
+ "model.layers.36.self_attn.k_proj.scales": "model.safetensors",
716
+ "model.layers.36.self_attn.k_proj.weight": "model.safetensors",
717
+ "model.layers.36.self_attn.o_proj.biases": "model.safetensors",
718
+ "model.layers.36.self_attn.o_proj.scales": "model.safetensors",
719
+ "model.layers.36.self_attn.o_proj.weight": "model.safetensors",
720
+ "model.layers.36.self_attn.q_proj.biases": "model.safetensors",
721
+ "model.layers.36.self_attn.q_proj.scales": "model.safetensors",
722
+ "model.layers.36.self_attn.q_proj.weight": "model.safetensors",
723
+ "model.layers.36.self_attn.v_proj.biases": "model.safetensors",
724
+ "model.layers.36.self_attn.v_proj.scales": "model.safetensors",
725
+ "model.layers.36.self_attn.v_proj.weight": "model.safetensors",
726
+ "model.layers.37.input_layernorm.weight": "model.safetensors",
727
+ "model.layers.37.mlp.down_proj.biases": "model.safetensors",
728
+ "model.layers.37.mlp.down_proj.scales": "model.safetensors",
729
+ "model.layers.37.mlp.down_proj.weight": "model.safetensors",
730
+ "model.layers.37.mlp.gate_proj.biases": "model.safetensors",
731
+ "model.layers.37.mlp.gate_proj.scales": "model.safetensors",
732
+ "model.layers.37.mlp.gate_proj.weight": "model.safetensors",
733
+ "model.layers.37.mlp.up_proj.biases": "model.safetensors",
734
+ "model.layers.37.mlp.up_proj.scales": "model.safetensors",
735
+ "model.layers.37.mlp.up_proj.weight": "model.safetensors",
736
+ "model.layers.37.post_attention_layernorm.weight": "model.safetensors",
737
+ "model.layers.37.self_attn.k_proj.biases": "model.safetensors",
738
+ "model.layers.37.self_attn.k_proj.scales": "model.safetensors",
739
+ "model.layers.37.self_attn.k_proj.weight": "model.safetensors",
740
+ "model.layers.37.self_attn.o_proj.biases": "model.safetensors",
741
+ "model.layers.37.self_attn.o_proj.scales": "model.safetensors",
742
+ "model.layers.37.self_attn.o_proj.weight": "model.safetensors",
743
+ "model.layers.37.self_attn.q_proj.biases": "model.safetensors",
744
+ "model.layers.37.self_attn.q_proj.scales": "model.safetensors",
745
+ "model.layers.37.self_attn.q_proj.weight": "model.safetensors",
746
+ "model.layers.37.self_attn.v_proj.biases": "model.safetensors",
747
+ "model.layers.37.self_attn.v_proj.scales": "model.safetensors",
748
+ "model.layers.37.self_attn.v_proj.weight": "model.safetensors",
749
+ "model.layers.38.input_layernorm.weight": "model.safetensors",
750
+ "model.layers.38.mlp.down_proj.biases": "model.safetensors",
751
+ "model.layers.38.mlp.down_proj.scales": "model.safetensors",
752
+ "model.layers.38.mlp.down_proj.weight": "model.safetensors",
753
+ "model.layers.38.mlp.gate_proj.biases": "model.safetensors",
754
+ "model.layers.38.mlp.gate_proj.scales": "model.safetensors",
755
+ "model.layers.38.mlp.gate_proj.weight": "model.safetensors",
756
+ "model.layers.38.mlp.up_proj.biases": "model.safetensors",
757
+ "model.layers.38.mlp.up_proj.scales": "model.safetensors",
758
+ "model.layers.38.mlp.up_proj.weight": "model.safetensors",
759
+ "model.layers.38.post_attention_layernorm.weight": "model.safetensors",
760
+ "model.layers.38.self_attn.k_proj.biases": "model.safetensors",
761
+ "model.layers.38.self_attn.k_proj.scales": "model.safetensors",
762
+ "model.layers.38.self_attn.k_proj.weight": "model.safetensors",
763
+ "model.layers.38.self_attn.o_proj.biases": "model.safetensors",
764
+ "model.layers.38.self_attn.o_proj.scales": "model.safetensors",
765
+ "model.layers.38.self_attn.o_proj.weight": "model.safetensors",
766
+ "model.layers.38.self_attn.q_proj.biases": "model.safetensors",
767
+ "model.layers.38.self_attn.q_proj.scales": "model.safetensors",
768
+ "model.layers.38.self_attn.q_proj.weight": "model.safetensors",
769
+ "model.layers.38.self_attn.v_proj.biases": "model.safetensors",
770
+ "model.layers.38.self_attn.v_proj.scales": "model.safetensors",
771
+ "model.layers.38.self_attn.v_proj.weight": "model.safetensors",
772
+ "model.layers.39.input_layernorm.weight": "model.safetensors",
773
+ "model.layers.39.mlp.down_proj.biases": "model.safetensors",
774
+ "model.layers.39.mlp.down_proj.scales": "model.safetensors",
775
+ "model.layers.39.mlp.down_proj.weight": "model.safetensors",
776
+ "model.layers.39.mlp.gate_proj.biases": "model.safetensors",
777
+ "model.layers.39.mlp.gate_proj.scales": "model.safetensors",
778
+ "model.layers.39.mlp.gate_proj.weight": "model.safetensors",
779
+ "model.layers.39.mlp.up_proj.biases": "model.safetensors",
780
+ "model.layers.39.mlp.up_proj.scales": "model.safetensors",
781
+ "model.layers.39.mlp.up_proj.weight": "model.safetensors",
782
+ "model.layers.39.post_attention_layernorm.weight": "model.safetensors",
783
+ "model.layers.39.self_attn.k_proj.biases": "model.safetensors",
784
+ "model.layers.39.self_attn.k_proj.scales": "model.safetensors",
785
+ "model.layers.39.self_attn.k_proj.weight": "model.safetensors",
786
+ "model.layers.39.self_attn.o_proj.biases": "model.safetensors",
787
+ "model.layers.39.self_attn.o_proj.scales": "model.safetensors",
788
+ "model.layers.39.self_attn.o_proj.weight": "model.safetensors",
789
+ "model.layers.39.self_attn.q_proj.biases": "model.safetensors",
790
+ "model.layers.39.self_attn.q_proj.scales": "model.safetensors",
791
+ "model.layers.39.self_attn.q_proj.weight": "model.safetensors",
792
+ "model.layers.39.self_attn.v_proj.biases": "model.safetensors",
793
+ "model.layers.39.self_attn.v_proj.scales": "model.safetensors",
794
+ "model.layers.39.self_attn.v_proj.weight": "model.safetensors",
795
+ "model.layers.4.input_layernorm.weight": "model.safetensors",
796
+ "model.layers.4.mlp.down_proj.biases": "model.safetensors",
797
+ "model.layers.4.mlp.down_proj.scales": "model.safetensors",
798
+ "model.layers.4.mlp.down_proj.weight": "model.safetensors",
799
+ "model.layers.4.mlp.gate_proj.biases": "model.safetensors",
800
+ "model.layers.4.mlp.gate_proj.scales": "model.safetensors",
801
+ "model.layers.4.mlp.gate_proj.weight": "model.safetensors",
802
+ "model.layers.4.mlp.up_proj.biases": "model.safetensors",
803
+ "model.layers.4.mlp.up_proj.scales": "model.safetensors",
804
+ "model.layers.4.mlp.up_proj.weight": "model.safetensors",
805
+ "model.layers.4.post_attention_layernorm.weight": "model.safetensors",
806
+ "model.layers.4.self_attn.k_proj.biases": "model.safetensors",
807
+ "model.layers.4.self_attn.k_proj.scales": "model.safetensors",
808
+ "model.layers.4.self_attn.k_proj.weight": "model.safetensors",
809
+ "model.layers.4.self_attn.o_proj.biases": "model.safetensors",
810
+ "model.layers.4.self_attn.o_proj.scales": "model.safetensors",
811
+ "model.layers.4.self_attn.o_proj.weight": "model.safetensors",
812
+ "model.layers.4.self_attn.q_proj.biases": "model.safetensors",
813
+ "model.layers.4.self_attn.q_proj.scales": "model.safetensors",
814
+ "model.layers.4.self_attn.q_proj.weight": "model.safetensors",
815
+ "model.layers.4.self_attn.v_proj.biases": "model.safetensors",
816
+ "model.layers.4.self_attn.v_proj.scales": "model.safetensors",
817
+ "model.layers.4.self_attn.v_proj.weight": "model.safetensors",
818
+ "model.layers.5.input_layernorm.weight": "model.safetensors",
819
+ "model.layers.5.mlp.down_proj.biases": "model.safetensors",
820
+ "model.layers.5.mlp.down_proj.scales": "model.safetensors",
821
+ "model.layers.5.mlp.down_proj.weight": "model.safetensors",
822
+ "model.layers.5.mlp.gate_proj.biases": "model.safetensors",
823
+ "model.layers.5.mlp.gate_proj.scales": "model.safetensors",
824
+ "model.layers.5.mlp.gate_proj.weight": "model.safetensors",
825
+ "model.layers.5.mlp.up_proj.biases": "model.safetensors",
826
+ "model.layers.5.mlp.up_proj.scales": "model.safetensors",
827
+ "model.layers.5.mlp.up_proj.weight": "model.safetensors",
828
+ "model.layers.5.post_attention_layernorm.weight": "model.safetensors",
829
+ "model.layers.5.self_attn.k_proj.biases": "model.safetensors",
830
+ "model.layers.5.self_attn.k_proj.scales": "model.safetensors",
831
+ "model.layers.5.self_attn.k_proj.weight": "model.safetensors",
832
+ "model.layers.5.self_attn.o_proj.biases": "model.safetensors",
833
+ "model.layers.5.self_attn.o_proj.scales": "model.safetensors",
834
+ "model.layers.5.self_attn.o_proj.weight": "model.safetensors",
835
+ "model.layers.5.self_attn.q_proj.biases": "model.safetensors",
836
+ "model.layers.5.self_attn.q_proj.scales": "model.safetensors",
837
+ "model.layers.5.self_attn.q_proj.weight": "model.safetensors",
838
+ "model.layers.5.self_attn.v_proj.biases": "model.safetensors",
839
+ "model.layers.5.self_attn.v_proj.scales": "model.safetensors",
840
+ "model.layers.5.self_attn.v_proj.weight": "model.safetensors",
841
+ "model.layers.6.input_layernorm.weight": "model.safetensors",
842
+ "model.layers.6.mlp.down_proj.biases": "model.safetensors",
843
+ "model.layers.6.mlp.down_proj.scales": "model.safetensors",
844
+ "model.layers.6.mlp.down_proj.weight": "model.safetensors",
845
+ "model.layers.6.mlp.gate_proj.biases": "model.safetensors",
846
+ "model.layers.6.mlp.gate_proj.scales": "model.safetensors",
847
+ "model.layers.6.mlp.gate_proj.weight": "model.safetensors",
848
+ "model.layers.6.mlp.up_proj.biases": "model.safetensors",
849
+ "model.layers.6.mlp.up_proj.scales": "model.safetensors",
850
+ "model.layers.6.mlp.up_proj.weight": "model.safetensors",
851
+ "model.layers.6.post_attention_layernorm.weight": "model.safetensors",
852
+ "model.layers.6.self_attn.k_proj.biases": "model.safetensors",
853
+ "model.layers.6.self_attn.k_proj.scales": "model.safetensors",
854
+ "model.layers.6.self_attn.k_proj.weight": "model.safetensors",
855
+ "model.layers.6.self_attn.o_proj.biases": "model.safetensors",
856
+ "model.layers.6.self_attn.o_proj.scales": "model.safetensors",
857
+ "model.layers.6.self_attn.o_proj.weight": "model.safetensors",
858
+ "model.layers.6.self_attn.q_proj.biases": "model.safetensors",
859
+ "model.layers.6.self_attn.q_proj.scales": "model.safetensors",
860
+ "model.layers.6.self_attn.q_proj.weight": "model.safetensors",
861
+ "model.layers.6.self_attn.v_proj.biases": "model.safetensors",
862
+ "model.layers.6.self_attn.v_proj.scales": "model.safetensors",
863
+ "model.layers.6.self_attn.v_proj.weight": "model.safetensors",
864
+ "model.layers.7.input_layernorm.weight": "model.safetensors",
865
+ "model.layers.7.mlp.down_proj.biases": "model.safetensors",
866
+ "model.layers.7.mlp.down_proj.scales": "model.safetensors",
867
+ "model.layers.7.mlp.down_proj.weight": "model.safetensors",
868
+ "model.layers.7.mlp.gate_proj.biases": "model.safetensors",
869
+ "model.layers.7.mlp.gate_proj.scales": "model.safetensors",
870
+ "model.layers.7.mlp.gate_proj.weight": "model.safetensors",
871
+ "model.layers.7.mlp.up_proj.biases": "model.safetensors",
872
+ "model.layers.7.mlp.up_proj.scales": "model.safetensors",
873
+ "model.layers.7.mlp.up_proj.weight": "model.safetensors",
874
+ "model.layers.7.post_attention_layernorm.weight": "model.safetensors",
875
+ "model.layers.7.self_attn.k_proj.biases": "model.safetensors",
876
+ "model.layers.7.self_attn.k_proj.scales": "model.safetensors",
877
+ "model.layers.7.self_attn.k_proj.weight": "model.safetensors",
878
+ "model.layers.7.self_attn.o_proj.biases": "model.safetensors",
879
+ "model.layers.7.self_attn.o_proj.scales": "model.safetensors",
880
+ "model.layers.7.self_attn.o_proj.weight": "model.safetensors",
881
+ "model.layers.7.self_attn.q_proj.biases": "model.safetensors",
882
+ "model.layers.7.self_attn.q_proj.scales": "model.safetensors",
883
+ "model.layers.7.self_attn.q_proj.weight": "model.safetensors",
884
+ "model.layers.7.self_attn.v_proj.biases": "model.safetensors",
885
+ "model.layers.7.self_attn.v_proj.scales": "model.safetensors",
886
+ "model.layers.7.self_attn.v_proj.weight": "model.safetensors",
887
+ "model.layers.8.input_layernorm.weight": "model.safetensors",
888
+ "model.layers.8.mlp.down_proj.biases": "model.safetensors",
889
+ "model.layers.8.mlp.down_proj.scales": "model.safetensors",
890
+ "model.layers.8.mlp.down_proj.weight": "model.safetensors",
891
+ "model.layers.8.mlp.gate_proj.biases": "model.safetensors",
892
+ "model.layers.8.mlp.gate_proj.scales": "model.safetensors",
893
+ "model.layers.8.mlp.gate_proj.weight": "model.safetensors",
894
+ "model.layers.8.mlp.up_proj.biases": "model.safetensors",
895
+ "model.layers.8.mlp.up_proj.scales": "model.safetensors",
896
+ "model.layers.8.mlp.up_proj.weight": "model.safetensors",
897
+ "model.layers.8.post_attention_layernorm.weight": "model.safetensors",
898
+ "model.layers.8.self_attn.k_proj.biases": "model.safetensors",
899
+ "model.layers.8.self_attn.k_proj.scales": "model.safetensors",
900
+ "model.layers.8.self_attn.k_proj.weight": "model.safetensors",
901
+ "model.layers.8.self_attn.o_proj.biases": "model.safetensors",
902
+ "model.layers.8.self_attn.o_proj.scales": "model.safetensors",
903
+ "model.layers.8.self_attn.o_proj.weight": "model.safetensors",
904
+ "model.layers.8.self_attn.q_proj.biases": "model.safetensors",
905
+ "model.layers.8.self_attn.q_proj.scales": "model.safetensors",
906
+ "model.layers.8.self_attn.q_proj.weight": "model.safetensors",
907
+ "model.layers.8.self_attn.v_proj.biases": "model.safetensors",
908
+ "model.layers.8.self_attn.v_proj.scales": "model.safetensors",
909
+ "model.layers.8.self_attn.v_proj.weight": "model.safetensors",
910
+ "model.layers.9.input_layernorm.weight": "model.safetensors",
911
+ "model.layers.9.mlp.down_proj.biases": "model.safetensors",
912
+ "model.layers.9.mlp.down_proj.scales": "model.safetensors",
913
+ "model.layers.9.mlp.down_proj.weight": "model.safetensors",
914
+ "model.layers.9.mlp.gate_proj.biases": "model.safetensors",
915
+ "model.layers.9.mlp.gate_proj.scales": "model.safetensors",
916
+ "model.layers.9.mlp.gate_proj.weight": "model.safetensors",
917
+ "model.layers.9.mlp.up_proj.biases": "model.safetensors",
918
+ "model.layers.9.mlp.up_proj.scales": "model.safetensors",
919
+ "model.layers.9.mlp.up_proj.weight": "model.safetensors",
920
+ "model.layers.9.post_attention_layernorm.weight": "model.safetensors",
921
+ "model.layers.9.self_attn.k_proj.biases": "model.safetensors",
922
+ "model.layers.9.self_attn.k_proj.scales": "model.safetensors",
923
+ "model.layers.9.self_attn.k_proj.weight": "model.safetensors",
924
+ "model.layers.9.self_attn.o_proj.biases": "model.safetensors",
925
+ "model.layers.9.self_attn.o_proj.scales": "model.safetensors",
926
+ "model.layers.9.self_attn.o_proj.weight": "model.safetensors",
927
+ "model.layers.9.self_attn.q_proj.biases": "model.safetensors",
928
+ "model.layers.9.self_attn.q_proj.scales": "model.safetensors",
929
+ "model.layers.9.self_attn.q_proj.weight": "model.safetensors",
930
+ "model.layers.9.self_attn.v_proj.biases": "model.safetensors",
931
+ "model.layers.9.self_attn.v_proj.scales": "model.safetensors",
932
+ "model.layers.9.self_attn.v_proj.weight": "model.safetensors",
933
+ "model.norm.weight": "model.safetensors"
934
+ }
935
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_prefix_space": false,
3
+ "backend": "tokenizers",
4
+ "bos_token": "<s>",
5
+ "clean_up_tokenization_spaces": false,
6
+ "eos_token": "<|im_end|>",
7
+ "errors": "replace",
8
+ "is_local": true,
9
+ "local_files_only": false,
10
+ "model_max_length": 1000000000000000019884624838656,
11
+ "pad_token": "<|im_end|>",
12
+ "padding_side": "left",
13
+ "tokenizer_class": "TokenizersBackend",
14
+ "tool_parser_type": "qwen3_coder",
15
+ "unk_token": "<unk>",
16
+ "chat_template": "{%- macro tool_to_json(tool) -%}\n {%- set ns_tool = namespace(first=true) -%}\n {{- '{' -}}\n {%- for k, v in tool.items() -%}\n {%- if k != 'defer_loading' and k != 'strict' -%}\n {%- if not ns_tool.first -%}{{- ', ' -}}{%- endif -%}\n {%- set ns_tool.first = false -%}\n {{- '\"' ~ k ~ '\": ' ~ (v | tojson(ensure_ascii=False)) -}}\n {%- endif -%}\n {%- endfor -%}\n {{- '}' -}}\n{%- endmacro -%}\n{%- set enable_thinking = enable_thinking if enable_thinking is defined else True %}\n{%- set low_effort = low_effort if low_effort is defined else False %}\n{%- if reasoning_effort is defined and reasoning_effort is not none %}\n {%- set low_effort = reasoning_effort == \"low\" %}\n{%- endif %}\n{%- set truncate_history_thinking = truncate_history_thinking if truncate_history_thinking is defined else True %}\n\n{%- set ns = namespace(last_user_idx = -1) %}\n{%- set loop_messages = messages %}\n{%- for m in loop_messages %}\n {%- if m[\"role\"] == \"user\" %}\n {%- set ns.last_user_idx = loop.index0 %}\n {%- endif %}\n{%- endfor %}\n\n{%- if messages[0][\"role\"] == \"system\" %}\n {%- set system_message = messages[0][\"content\"] %}\n {%- set loop_messages = messages[1:] %}\n{%- else %}\n {%- set system_message = \"\" %}\n {%- set loop_messages = messages %}\n{%- endif %}\n{%- if not tools is defined %}\n {%- set tools = [] %}\n{%- endif %}\n{# Recompute last_user_idx relative to loop_messages after handling system #}\n{%- set ns = namespace(last_user_idx = -1) %}\n{%- for m in loop_messages %}\n {%- if m[\"role\"] == \"user\" %}\n {%- set ns.last_user_idx = loop.index0 %}\n {%- endif %}\n{%- endfor %}\n{%- if system_message is defined %}\n {{- \"<|im_start|>system\\n\" + system_message }}\n{%- else %}\n {%- if tools is iterable and tools | length > 0 %}\n {{- \"<|im_start|>system\\n\" }}\n {%- endif %}\n{%- endif %}\n{%- if tools is iterable and tools | length > 0 %}\n {%- if system_message is defined and system_message | length > 0 %}\n {{- \"\\n\\n\" }}\n {%- endif %}\n {{- \"# Tools\\n\\nYou have access to the following functions:\\n\\n\" }}\n {{- \"<tools>\" }}\n {%- for tool in tools %}\n {%- if tool.function is defined %}\n {%- set tool = tool.function %}\n {%- endif %}\n {%- if tool.defer_loading is not defined or not tool.defer_loading %}\n {{- '\\n' ~ tool_to_json(tool) }}\n {%- endif %}\n {%- endfor %}\n {{- \"\\n</tools>\" }}\n\n {{- '\\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>' }}\n{%- endif %}\n\n\n{%- if system_message is defined %}\n {{- '<|im_end|>\\n' }}\n{%- else %}\n {%- if tools is iterable and tools | length > 0 %}\n {{- '<|im_end|>\\n' }}\n {%- endif %}\n{%- endif %}\n\n{%- for message in loop_messages %}\n {%- if message.role == \"assistant\" %}\n {# Add reasoning content in to content field for unified processing below. #}\n {%- if message.reasoning_content is defined and message.reasoning_content is string and message.reasoning_content | trim | length > 0 %}\n {%- set content = \"<think>\\n\" ~ message.reasoning_content ~ \"\\n</think>\\n\" ~ (message.content | default('', true)) %}\n {%- else %}\n {%- set content = message.content | default('', true) %}\n {%- if content is string -%}\n {# Allow downstream logic to to take care of broken thought, only handle coherent reasoning here. #}\n {%- if '<think>' not in content and '</think>' not in content -%}\n {%- set content = \"<think></think>\" ~ content -%}\n {%- endif -%}\n {%- else -%}\n {%- set content = content -%}\n {%- endif -%}\n {%- endif %}\n {%- if message.tool_calls is defined and message.tool_calls is iterable and message.tool_calls | length > 0 %}\n {# Assistant message has tool calls. #}\n {{- '<|im_start|>assistant\\n' }}\n {%- set include_content = not (truncate_history_thinking and loop.index0 < ns.last_user_idx) %}\n {%- if content is string and content | trim | length > 0 %}\n {%- if include_content %}\n {{- (content | trim) ~ '\\n' -}}\n {%- else %}\n {%- set c = (content | string) %}\n {%- if '</think>' in c %}\n {# Keep only content after the last closing think. Also generation prompt causes this. #}\n {%- set c = c.split('</think>')[-1] %}\n {%- elif '<think>' in c %}\n {# If <think> was opened but never closed, drop the trailing think segment #}\n {%- set c = c.split('<think>')[0] %}\n {%- endif %}\n {%- set c = \"<think></think>\" ~ c | trim %}\n {%- if c | length > 0 %}\n {{- c ~ '\\n' -}}\n {%- endif %}\n {%- endif %}\n {%- else %}\n {{- \"<think></think>\" -}}\n {%- endif %}\n {%- for tool_call in message.tool_calls %}\n {%- if tool_call.function is defined %}\n {%- set tool_call = tool_call.function %}\n {%- endif %}\n {{- '<tool_call>\\n<function=' ~ tool_call.name ~ '>\\n' -}}\n {%- if tool_call.arguments is defined %}\n {%- for args_name, args_value in tool_call.arguments|items %}\n {{- '<parameter=' ~ args_name ~ '>\\n' -}}\n {%- 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 %}\n {{- args_value ~ '\\n</parameter>\\n' -}}\n {%- endfor %}\n {%- endif %}\n {{- '</function>\\n</tool_call>\\n' -}}\n {%- endfor %}\n {{- '<|im_end|>\\n' }}\n {%- else %}\n {# Assistant message doesn't have tool calls. #}\n {%- if not (truncate_history_thinking and loop.index0 < ns.last_user_idx) %}\n {{- '<|im_start|>assistant\\n' ~ (content | default('', true) | string | trim) ~ '<|im_end|>\\n' }}\n {%- else %}\n {%- set c = (content | default('', true) | string) %}\n {%- if '<think>' in c and '</think>' in c %}\n {%- set c = \"<think></think>\" ~ c.split('</think>')[-1] %}\n {%- endif %}\n {%- set c = c | trim %}\n {%- if c | length > 0 %}\n {{- '<|im_start|>assistant\\n' ~ c ~ '<|im_end|>\\n' }}\n {%- else %}\n {{- '<|im_start|>assistant\\n<|im_end|>\\n' }}\n {%- endif %}\n {%- endif %}\n {%- endif %}\n {%- elif message.role == \"user\" or message.role == \"system\" %}\n {{- '<|im_start|>' + message.role + '\\n' }}\n {%- set content = message.content | string %}\n {%- if message.role == \"user\" and loop.index0 == ns.last_user_idx and low_effort %}\n {{- content + '\\n\\n{reasoning effort: low}' }}\n {%- else %}\n {{- content }}\n {%- endif %}\n {{- '<|im_end|>\\n' }}\n {%- elif message.role == \"tool\" %}\n {%- if loop.previtem and loop.previtem.role != \"tool\" %}\n {{- '<|im_start|>user\\n' }}\n {%- endif %}\n {{- '<tool_response>\\n' }}\n {{- message.content }}\n {{- '\\n</tool_response>\\n' }}\n {%- if not loop.last and loop.nextitem.role != \"tool\" %}\n {{- '<|im_end|>\\n' }}\n {%- elif loop.last %}\n {{- '<|im_end|>\\n' }}\n {%- endif %}\n {%- else %}\n {{- '<|im_start|>' + message.role + '\\n' + message.content + '<|im_end|>\\n' }}\n {%- endif %}\n{%- endfor %}\n\n{%- if add_generation_prompt %}\n {%- if enable_thinking %}\n {{- '<|im_start|>assistant\\n<think>\\n' }}\n {%- else %}\n {{- '<|im_start|>assistant\\n<think></think>' }}\n {%- endif %}\n{%- endif %}\n"
17
+ }