mhjiang0408 commited on
Commit
8e1f7be
·
verified ·
1 Parent(s): 752cdfc

Add files using upload-large-folder tool

Browse files
Files changed (50) hide show
  1. chat_template.jinja +103 -0
  2. model-00001-of-00132.safetensors +3 -0
  3. model-00002-of-00132.safetensors +3 -0
  4. model-00007-of-00132.safetensors +3 -0
  5. model-00008-of-00132.safetensors +3 -0
  6. model-00015-of-00132.safetensors +3 -0
  7. model-00018-of-00132.safetensors +3 -0
  8. model-00019-of-00132.safetensors +3 -0
  9. model-00020-of-00132.safetensors +3 -0
  10. model-00022-of-00132.safetensors +3 -0
  11. model-00024-of-00132.safetensors +3 -0
  12. model-00026-of-00132.safetensors +3 -0
  13. model-00030-of-00132.safetensors +3 -0
  14. model-00031-of-00132.safetensors +3 -0
  15. model-00037-of-00132.safetensors +3 -0
  16. model-00041-of-00132.safetensors +3 -0
  17. model-00042-of-00132.safetensors +3 -0
  18. model-00043-of-00132.safetensors +3 -0
  19. model-00046-of-00132.safetensors +3 -0
  20. model-00047-of-00132.safetensors +3 -0
  21. model-00049-of-00132.safetensors +3 -0
  22. model-00050-of-00132.safetensors +3 -0
  23. model-00053-of-00132.safetensors +3 -0
  24. model-00057-of-00132.safetensors +3 -0
  25. model-00062-of-00132.safetensors +3 -0
  26. model-00066-of-00132.safetensors +3 -0
  27. model-00067-of-00132.safetensors +3 -0
  28. model-00068-of-00132.safetensors +3 -0
  29. model-00071-of-00132.safetensors +3 -0
  30. model-00076-of-00132.safetensors +3 -0
  31. model-00077-of-00132.safetensors +3 -0
  32. model-00080-of-00132.safetensors +3 -0
  33. model-00085-of-00132.safetensors +3 -0
  34. model-00091-of-00132.safetensors +3 -0
  35. model-00092-of-00132.safetensors +3 -0
  36. model-00094-of-00132.safetensors +3 -0
  37. model-00097-of-00132.safetensors +3 -0
  38. model-00099-of-00132.safetensors +3 -0
  39. model-00103-of-00132.safetensors +3 -0
  40. model-00105-of-00132.safetensors +3 -0
  41. model-00106-of-00132.safetensors +3 -0
  42. model-00109-of-00132.safetensors +3 -0
  43. model-00114-of-00132.safetensors +3 -0
  44. model-00119-of-00132.safetensors +3 -0
  45. model-00120-of-00132.safetensors +3 -0
  46. model-00123-of-00132.safetensors +3 -0
  47. model-00125-of-00132.safetensors +3 -0
  48. model-00126-of-00132.safetensors +3 -0
  49. model-00129-of-00132.safetensors +3 -0
  50. model.safetensors.index.json +0 -0
chat_template.jinja ADDED
@@ -0,0 +1,103 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [gMASK]<sop>
2
+ {%- if tools -%}
3
+ <|system|>
4
+ # Tools
5
+
6
+ You may call one or more functions to assist with the user query.
7
+
8
+ You are provided with function signatures within <tools></tools> XML tags:
9
+ <tools>
10
+ {% for tool in tools %}
11
+ {{ tool | tojson(ensure_ascii=False) }}
12
+ {% endfor %}
13
+ </tools>
14
+
15
+ For each function call, output the function name and arguments within the following XML format:
16
+ <tool_call>{function-name}
17
+ <arg_key>{arg-key-1}</arg_key>
18
+ <arg_value>{arg-value-1}</arg_value>
19
+ <arg_key>{arg-key-2}</arg_key>
20
+ <arg_value>{arg-value-2}</arg_value>
21
+ ...
22
+ </tool_call>{%- endif -%}
23
+ {%- macro visible_text(content) -%}
24
+ {%- if content is string -%}
25
+ {{- content }}
26
+ {%- elif content is iterable and content is not mapping -%}
27
+ {%- for item in content -%}
28
+ {%- if item is mapping and item.type == 'text' -%}
29
+ {{- item.text }}
30
+ {%- elif item is string -%}
31
+ {{- item }}
32
+ {%- endif -%}
33
+ {%- endfor -%}
34
+ {%- else -%}
35
+ {{- content }}
36
+ {%- endif -%}
37
+ {%- endmacro -%}
38
+ {%- set ns = namespace(last_user_index=-1) %}
39
+ {%- for m in messages %}
40
+ {%- if m.role == 'user' %}
41
+ {% set ns.last_user_index = loop.index0 -%}
42
+ {%- endif %}
43
+ {%- endfor %}
44
+ {% for m in messages %}
45
+ {%- if m.role == 'user' -%}<|user|>
46
+ {{ visible_text(m.content) }}
47
+ {{- '/nothink' if (enable_thinking is defined and not enable_thinking and not visible_text(m.content).endswith("/nothink")) else '' -}}
48
+ {%- elif m.role == 'assistant' -%}
49
+ <|assistant|>
50
+ {%- set reasoning_content = '' %}
51
+ {%- set content = visible_text(m.content) %}
52
+ {%- if m.reasoning_content is string %}
53
+ {%- set reasoning_content = m.reasoning_content %}
54
+ {%- else %}
55
+ {%- if '</think>' in content %}
56
+ {%- set reasoning_content = content.split('</think>')[0].rstrip('\n').split('<think>')[-1].lstrip('\n') %}
57
+ {%- set content = content.split('</think>')[-1].lstrip('\n') %}
58
+ {%- endif %}
59
+ {%- endif %}
60
+ {%- if loop.index0 > ns.last_user_index and reasoning_content -%}
61
+ {{ '\n<think>' + reasoning_content.strip() + '</think>'}}
62
+ {%- else -%}
63
+ {{ '\n<think></think>' }}
64
+ {%- endif -%}
65
+ {%- if content.strip() -%}
66
+ {{ '\n' + content.strip() }}
67
+ {%- endif -%}
68
+ {% if m.tool_calls %}
69
+ {% for tc in m.tool_calls %}
70
+ {%- if tc.function %}
71
+ {%- set tc = tc.function %}
72
+ {%- endif %}
73
+ {{ '\n<tool_call>' + tc.name }}
74
+ {% set _args = tc.arguments %}
75
+ {% for k, v in _args.items() %}
76
+ <arg_key>{{ k }}</arg_key>
77
+ <arg_value>{{ v | tojson(ensure_ascii=False) if v is not string else v }}</arg_value>
78
+ {% endfor %}
79
+ </tool_call>{% endfor %}
80
+ {% endif %}
81
+ {%- elif m.role == 'tool' -%}
82
+ {%- if m.content is string -%}
83
+ {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
84
+ {{- '<|observation|>' }}
85
+ {%- endif %}
86
+ {{- '\n<tool_response>\n' }}
87
+ {{- m.content }}
88
+ {{- '\n</tool_response>' }}
89
+ {%- else -%}
90
+ <|observation|>{% for tr in m.content %}
91
+
92
+ <tool_response>
93
+ {{ tr.output if tr.output is defined else tr }}
94
+ </tool_response>{% endfor -%}
95
+ {% endif -%}
96
+ {%- elif m.role == 'system' -%}
97
+ <|system|>
98
+ {{ visible_text(m.content) }}
99
+ {%- endif -%}
100
+ {%- endfor -%}
101
+ {%- if add_generation_prompt -%}
102
+ <|assistant|>{{- '\n<think></think>' if (enable_thinking is defined and not enable_thinking) else '' -}}
103
+ {%- endif -%}
model-00001-of-00132.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5bc48a72ccf9e99dd1316a4129a52619c690ec83bc00e403c26bb4fc0da63f2b
3
+ size 5354671176
model-00002-of-00132.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:78f16d09866b2554b46bb963b7bed68b4a172380dfe5df8c23bc7bb90ca052ea
3
+ size 5363508520
model-00007-of-00132.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f164a0adb406e02afa492be5bada2b465997cb272f2de379bb8851d34aca1e4f
3
+ size 5354671120
model-00008-of-00132.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dcd6b55fb86a2b1f08a3599b2d44ca8c6bb99225a5a185bec42a43d95c094bbf
3
+ size 5363508624
model-00015-of-00132.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a9d6b61893cfe23c891a148ef2b466c819c3cf1b21660776a4a67f5832b8413f
3
+ size 5363508912
model-00018-of-00132.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:55013d2053638038f47d69546ae4c4de241860683b693bf839afcb097f222f31
3
+ size 5363508976
model-00019-of-00132.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d820c68d8bca5015c7711b048536a9e1c848e0dcab983ce43377e5fac34b8741
3
+ size 5365187000
model-00020-of-00132.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4706756c1fdf3fb1bced74c77ba0f6c71ae9205e266aa67aea989b4a6a805b22
3
+ size 5363519688
model-00022-of-00132.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:28bb37bc3f850326d8f470d1033f6e9a9b0bbaf824a0c588220722be11571fe5
3
+ size 5363508840
model-00024-of-00132.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:959acbc893ff8fe117d27b668448f12c05a07e29b2969961e50bd60e19f410e2
3
+ size 5354671496
model-00026-of-00132.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:35ce81a674b5f754cc872d647115a8264c98e940cc2e75f0dc5f5882e342a0f5
3
+ size 5363548656
model-00030-of-00132.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:caeba0f0ffe3b35e79f679243e70081f15a503224428e8f4d6a6babddd0e83f8
3
+ size 5359994840
model-00031-of-00132.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e71c016cc8e6a64032aaa3f7aca3595f1f46bab22f99284ee3aa125140ef3f02
3
+ size 5365198640
model-00037-of-00132.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2d378a924ab931b79ba3266feac386057d5ad22d8c98479022bec57f882186b0
3
+ size 5365198632
model-00041-of-00132.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6f1c51a660295ac03c54011ca8efed3aa017fab144ffb8040a03722cdff0c420
3
+ size 5353072608
model-00042-of-00132.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:64c44dc7a4794d37d347457547baed2d333b8f35cbe82814d28f31e5beb5979f
3
+ size 5365198784
model-00043-of-00132.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a507ea42ac3eba6490d118a427899f022481837b173b8493d3e49562995c403b
3
+ size 5363508840
model-00046-of-00132.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3a622701d7a758131c8038b30320688d8e466f79f912350e1d11f2408d0356e4
3
+ size 5363508904
model-00047-of-00132.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:59e89ee5a562c838527d5e8ce84f50120f190d7ac3844253499949f25609a6c4
3
+ size 5353072568
model-00049-of-00132.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c62ecf0d909f96268dbec49ab37f75a6f42bd1bb425297df47c1440b9e5d9da4
3
+ size 5363508944
model-00050-of-00132.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b321431df36827f65d869ea439350766dbe4141a4bded7075e943a119b402c5d
3
+ size 5353072560
model-00053-of-00132.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c7cd09b6967bed2ea24ea639d2a8eb4c2dc88172b963f344898ed84ab89f6afc
3
+ size 5353072520
model-00057-of-00132.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:283c4b28134aacd128a22a12fb9838bf6f6cc5c1e503f7b344ec8dc8ed6515a4
3
+ size 5365198632
model-00062-of-00132.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6921886d8f5b8a9346484dd71c6a8a76ee2e0d32ca4690b621cbab0c181bb71c
3
+ size 5363508944
model-00066-of-00132.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:354c80ff99242745c66c686d465568ed9a3d74902eab70e7bd8e3afc922982ca
3
+ size 5353072656
model-00067-of-00132.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bea1434249b2544c21d4d449f19e08d5a644b589561a86965f86a8fde5302c7a
3
+ size 5363508984
model-00068-of-00132.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7b4d78e658de7ccf2e393f90c112f84d3e09a6516f4dcae44626554037a25c12
3
+ size 5365198608
model-00071-of-00132.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:eb01c41931c505830c624e4c7c102fc5027c93b72ca6c56bfc09dacdcc79eedd
3
+ size 5365198552
model-00076-of-00132.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a19bdcbaf58680e7ed0eb2a5aed4e134d68201e1773dc2c5a33c8d74104a1bda
3
+ size 5365198744
model-00077-of-00132.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dac39de203aba28bff75b8e49510981000ca967d11431286623fa0623554d20e
3
+ size 5363508936
model-00080-of-00132.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:38a386b379e875297c451370fa5802ad069a098e1ac1417fd934c11d20a2f0f8
3
+ size 5363509016
model-00085-of-00132.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:46e8667617f1056f3e47536a340bcf119d85165549e3aeec2293cdc7861ab79d
3
+ size 5365198632
model-00091-of-00132.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:77d195b2ee6e465a397c8f32faa65b79096509295762249a36dd167bec318d0f
3
+ size 5365198632
model-00092-of-00132.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:97ffceb5e5d3d63c43ee38de5e60fb67fb0f97a19f08c2ac3464e61a2faa41ad
3
+ size 5353072640
model-00094-of-00132.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7de26ac06ac272bb773ac44e364abaf5bf23b53d99068d396208bec6f26aaf58
3
+ size 5365198592
model-00097-of-00132.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:647cf1925d26cc1ff1a5985f71612c7283e807ffa450762472f460bd3e0a9346
3
+ size 5360542384
model-00099-of-00132.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:52a9dd8e513431a3bef2bcf698de6d6a47ff99e845a890a7222d040cd82e154e
3
+ size 5363509216
model-00103-of-00132.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:887531f7c25c27e14f20a49c2b27cd8c8ddb244eb74f427ef83c72d9e77ebb9a
3
+ size 5365147656
model-00105-of-00132.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fa54cf7104dab352eb8272a2af7865bbf98befecc96c9b1ca7b92de78e21397e
3
+ size 5363508960
model-00106-of-00132.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f0c85f4f983e3d5fb811ffa8903c2e4089019ec516883b8f8eed8cd282cb6c3f
3
+ size 5365147640
model-00109-of-00132.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:15180a03e8ff5857e15e7ed135b2e21d99c417aafb78f27490489d6f6d1fcef8
3
+ size 5365147576
model-00114-of-00132.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1d4071546e482206984fa8bd4c11a56a767ad74d35f6508395904f698b438cc3
3
+ size 5365147760
model-00119-of-00132.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4d84ba893f42a39db8d4f4a726564ec3b3f3d0b97cceb40b7afb5d1bddcdc07f
3
+ size 5353061936
model-00120-of-00132.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fa3b6906f239951274b434a7cc8b91a0e56aaa223644e42057904db318797c76
3
+ size 5365158032
model-00123-of-00132.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e5c61e555b177ab7d79254b140d3d2f326ebac9963822d3f81b38dc6ce4cb7ca
3
+ size 5365158000
model-00125-of-00132.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3cc8cfb4edde239d38ee72d2539fecd6f53b43b9e37c63e41617227d3f577507
3
+ size 5363508912
model-00126-of-00132.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0d5de838b5f537a76685801a2626780910dfb6715f7b09356e051ef86fde26cc
3
+ size 5365158000
model-00129-of-00132.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:969ea268c097b13478612ff39c920a1df970cf55032fc57835b50d56aaecc4d0
3
+ size 5365157992
model.safetensors.index.json ADDED
The diff for this file is too large to render. See raw diff