cs2764 commited on
Commit
6560a1d
·
verified ·
1 Parent(s): 6b56d30

Add files using upload-large-folder tool

Browse files
Files changed (50) hide show
  1. README.md +22 -0
  2. chat_template.jinja +86 -0
  3. config.json +0 -0
  4. generation_config.json +12 -0
  5. model-00001-of-00076.safetensors +3 -0
  6. model-00002-of-00076.safetensors +3 -0
  7. model-00003-of-00076.safetensors +3 -0
  8. model-00004-of-00076.safetensors +3 -0
  9. model-00005-of-00076.safetensors +3 -0
  10. model-00006-of-00076.safetensors +3 -0
  11. model-00007-of-00076.safetensors +3 -0
  12. model-00008-of-00076.safetensors +3 -0
  13. model-00009-of-00076.safetensors +3 -0
  14. model-00010-of-00076.safetensors +3 -0
  15. model-00011-of-00076.safetensors +3 -0
  16. model-00012-of-00076.safetensors +3 -0
  17. model-00013-of-00076.safetensors +3 -0
  18. model-00014-of-00076.safetensors +3 -0
  19. model-00015-of-00076.safetensors +3 -0
  20. model-00016-of-00076.safetensors +3 -0
  21. model-00017-of-00076.safetensors +3 -0
  22. model-00018-of-00076.safetensors +3 -0
  23. model-00019-of-00076.safetensors +3 -0
  24. model-00020-of-00076.safetensors +3 -0
  25. model-00021-of-00076.safetensors +3 -0
  26. model-00022-of-00076.safetensors +3 -0
  27. model-00023-of-00076.safetensors +3 -0
  28. model-00024-of-00076.safetensors +3 -0
  29. model-00025-of-00076.safetensors +3 -0
  30. model-00026-of-00076.safetensors +3 -0
  31. model-00027-of-00076.safetensors +3 -0
  32. model-00028-of-00076.safetensors +3 -0
  33. model-00029-of-00076.safetensors +3 -0
  34. model-00030-of-00076.safetensors +3 -0
  35. model-00031-of-00076.safetensors +3 -0
  36. model-00032-of-00076.safetensors +3 -0
  37. model-00033-of-00076.safetensors +3 -0
  38. model-00034-of-00076.safetensors +3 -0
  39. model-00035-of-00076.safetensors +3 -0
  40. model-00036-of-00076.safetensors +3 -0
  41. model-00037-of-00076.safetensors +3 -0
  42. model-00038-of-00076.safetensors +3 -0
  43. model-00039-of-00076.safetensors +3 -0
  44. model-00040-of-00076.safetensors +3 -0
  45. model-00041-of-00076.safetensors +3 -0
  46. model-00073-of-00076.safetensors +3 -0
  47. model-00074-of-00076.safetensors +3 -0
  48. model-00075-of-00076.safetensors +3 -0
  49. model.safetensors.index.json +0 -0
  50. tokenizer_config.json +34 -0
README.md ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - mlx
4
+ - transformers
5
+ - quantization
6
+ - dq3
7
+ ---
8
+
9
+ # GLM-5_dq3
10
+
11
+ This model is a DQ3 quantized version of the original model [GLM-5](Local Model).
12
+ It was quantized locally using the `mlx_lm` library.
13
+
14
+ ## Quantization Methodology (DQ3)
15
+
16
+ This model was quantized using the dynamic **DQ3** (3-bit / 4-bit / 8-bit mixed) approach, inspired by the methodology described in the [mlx-community/Kimi-K2.5-mlx-DQ3_K_M-q8](https://huggingface.co/mlx-community/Kimi-K2.5-mlx-DQ3_K_M-q8) repository.
17
+
18
+ The weights are mixed based on MLX layers:
19
+ - Expert layers (switch_mlp / mlp) are quantized to 3-bit.
20
+ - The first 5 layers are kept at higher quality (5-bit).
21
+ - Every 5th layer is medium quality (4-bit).
22
+ - All other layers (e.g. attention, normalization) remain at 8-bit to serve as the "8-bit brain".
chat_template.jinja ADDED
@@ -0,0 +1,86 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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}<arg_key>{arg-key-1}</arg_key><arg_value>{arg-value-1}</arg_value><arg_key>{arg-key-2}</arg_key><arg_value>{arg-value-2}</arg_value>...</tool_call>{%- endif -%}
17
+ {%- macro visible_text(content) -%}
18
+ {%- if content is string -%}
19
+ {{- content }}
20
+ {%- elif content is iterable and content is not mapping -%}
21
+ {%- for item in content -%}
22
+ {%- if item is mapping and item.type == 'text' -%}
23
+ {{- item.text }}
24
+ {%- elif item is string -%}
25
+ {{- item }}
26
+ {%- endif -%}
27
+ {%- endfor -%}
28
+ {%- else -%}
29
+ {{- content }}
30
+ {%- endif -%}
31
+ {%- endmacro -%}
32
+ {%- set ns = namespace(last_user_index=-1) %}
33
+ {%- for m in messages %}
34
+ {%- if m.role == 'user' %}
35
+ {% set ns.last_user_index = loop.index0 -%}
36
+ {%- endif %}
37
+ {%- endfor %}
38
+ {% for m in messages %}
39
+ {%- if m.role == 'user' -%}<|user|>{{ visible_text(m.content) }}
40
+ {%- elif m.role == 'assistant' -%}
41
+ <|assistant|>
42
+ {%- set reasoning_content = '' %}
43
+ {%- set content = visible_text(m.content) %}
44
+ {%- if m.reasoning_content is string %}
45
+ {%- set reasoning_content = m.reasoning_content %}
46
+ {%- else %}
47
+ {%- if '</think>' in content %}
48
+ {%- set reasoning_content = content.split('</think>')[0].rstrip('\n').split('<think>')[-1].lstrip('\n') %}
49
+ {%- set content = content.split('</think>')[-1].lstrip('\n') %}
50
+ {%- endif %}
51
+ {%- endif %}
52
+ {%- if ((clear_thinking is defined and not clear_thinking) or loop.index0 > ns.last_user_index) and reasoning_content -%}
53
+ {{ '<think>' + reasoning_content.strip() + '</think>'}}
54
+ {%- else -%}
55
+ {{ '</think>' }}
56
+ {%- endif -%}
57
+ {%- if content.strip() -%}
58
+ {{ content.strip() }}
59
+ {%- endif -%}
60
+ {% if m.tool_calls %}
61
+ {% for tc in m.tool_calls %}
62
+ {%- if tc.function %}
63
+ {%- set tc = tc.function %}
64
+ {%- endif %}
65
+ {{- '<tool_call>' + tc.name -}}
66
+ {% set _args = tc.arguments %}{% for k, v in _args.items() %}<arg_key>{{ k }}</arg_key><arg_value>{{ v | tojson(ensure_ascii=False) if v is not string else v }}</arg_value>{% endfor %}</tool_call>{% endfor %}
67
+ {% endif %}
68
+ {%- elif m.role == 'tool' -%}
69
+ {%- if m.content is string -%}
70
+ {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
71
+ {{- '<|observation|>' }}
72
+ {%- endif %}
73
+ {{- '<tool_response>' }}
74
+ {{- m.content }}
75
+ {{- '</tool_response>' }}
76
+ {%- else -%}
77
+ <|observation|>{% for tr in m.content %}
78
+ <tool_response>{{ tr.output if tr.output is defined else tr }}</tool_response>{% endfor -%}
79
+ {% endif -%}
80
+ {%- elif m.role == 'system' -%}
81
+ <|system|>{{ visible_text(m.content) }}
82
+ {%- endif -%}
83
+ {%- endfor -%}
84
+ {%- if add_generation_prompt -%}
85
+ <|assistant|>{{- '</think>' if (enable_thinking is defined and not enable_thinking) else '<think>' -}}
86
+ {%- endif -%}
config.json ADDED
The diff for this file is too large to render. See raw diff
 
generation_config.json ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_from_model_config": true,
3
+ "eos_token_id": [
4
+ 154820,
5
+ 154827,
6
+ 154829
7
+ ],
8
+ "pad_token_id": 154820,
9
+ "temperature": 1.0,
10
+ "top_p": 0.95,
11
+ "transformers_version": "5.0.2.dev0"
12
+ }
model-00001-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0dec22079da525601a6ba1f8698f22c61c42774ba7ba55967979b5437836ffed
3
+ size 4915364965
model-00002-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cde7f77c03bd6c485e63bf6468d697b03a17a44d02ea1b6e4977eb1d07652028
3
+ size 5261747030
model-00003-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:46dd4e8d7000f86aaa66aa865a08984810ec9b75b16c46bfe73e667952e83ddc
3
+ size 5261747026
model-00004-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ca67c0a45dc565b1a0b88a86361f6043a89938abd9fdfbf13086976b3a926db0
3
+ size 4859093844
model-00005-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bab9be94074241c718c5412e6f6cd60a08f973b25ad8cea0a3c75809d1eaf40b
3
+ size 4456440658
model-00006-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fcef45049d11366bff4b58432edead569adf852430d7604b19a506905b97f033
3
+ size 4456440658
model-00007-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0e2f1e7c9566803524c6766559ae2ee59b2eee4dbd007136bd1ec8e6984579a6
3
+ size 4456440662
model-00008-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:760d7d4bed4a7aed7a91c9bd8decbe02da871eaf33c0debaa99ab3acfd6d0dbb
3
+ size 4456440695
model-00009-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ec165b1381ded6e776446b5ab514d05c01bce14091676ef6b6ecb508802f618b
3
+ size 4859093895
model-00010-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:011ab9d627679a27c3356f9c5a2b5caff074a5d65d4117847798d1041cb61977
3
+ size 4456440661
model-00011-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0662de76b63aedfab0a4479a9c6ca5edaac101de2ae195f119eeb8c764eeb6b9
3
+ size 4456440715
model-00012-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3d7141ba1c3dc21e080dadabe0768113c8327f22947f9983059d7888ba8dbb45
3
+ size 4456440715
model-00013-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1a8fe22dd689a43649db552d73f50bb7b6dd82ebe40f974a59a87cb0ce09ca34
3
+ size 4456440715
model-00014-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5c4aab02f2c059618a04e1a5c95341603b0459e57fa0dfdcf14ce2d83cbe8d6f
3
+ size 4859093897
model-00015-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8021ea73c5d2c9fe95cc21f6fe75fbd83aec17bdface95de5d2905a379f43f4e
3
+ size 4456440717
model-00016-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c8805678870b2dd9b0e1826c8b9c7d18a3b3fa3f4490c19cf09238d9f5decd6f
3
+ size 4456440713
model-00017-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0ccffb05fb961774e3fc4699fc1a50ebf3679d5899cf427fdd77a0828f61f437
3
+ size 4456440707
model-00018-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:90609f1255e6fe07d13056959045ec1f960e513fa6524b4c9ae189f55ac9aa34
3
+ size 4456440709
model-00019-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ec2972a1ff78b056b0c221a87a1f097a202cae8dffffe0d6805c6a414243f9ba
3
+ size 4859093901
model-00020-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:11ce2cc619c1a4cb663f92a303b289430ece3667ad1f513882e5c90853a4a653
3
+ size 4456440715
model-00021-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4dc7d30e8f185c6144e00a32c32644cd4800c13cc7db130e54836ae4e694c109
3
+ size 4456440713
model-00022-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e557f55402cf49344cc9a8dce28ec11b849b201fdb360710c42081cfe4763bec
3
+ size 4456440713
model-00023-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:934fcb7277d5cfaaab814b45148d758705b26716a79c52f9d87d0873feb939d4
3
+ size 4456440715
model-00024-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:26e883233ef28bbe79a7b5c58bed4b00ce80c1795ed1e6b1f590bc3c5446fe26
3
+ size 4859093899
model-00025-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cb4768f9181796dec27c52c866003916ddfb2eee8c044554617f5bd2606520b1
3
+ size 4456440715
model-00026-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:11f45b950671f274084485a57facd2464ca606b1871d306b34a3c7707be8eef6
3
+ size 4456440715
model-00027-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6064d6ee2c01afc9aeffc98f1224d04b0139bc8a9e3a6c711f92a4a8e0a25221
3
+ size 4456440715
model-00028-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0e1f1d7cb0ab604d3cf25943e563951be925bbc4148a80fa0274c95fe1ac7303
3
+ size 4456440713
model-00029-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c8947e846796d9f2f55ef42d71833ba990d243e3d4a1b2777ad27588a59300f2
3
+ size 4859093899
model-00030-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a09e58842998d8150f076d41517bfd852cd98a59ea4c5015db07f2089bc2412f
3
+ size 4456440717
model-00031-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d4e90fae0ac623974e3b427f0cc441d43889712ef5705d0e73fc9e7c073b1f89
3
+ size 4456440709
model-00032-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b729330001f1d75286ac6399e059b71fc4cb79feee05e2a030d2ef7f7ff72b10
3
+ size 4456440713
model-00033-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:72064e669e5138116a971422215b6f0a07ef0be873ef70ae7f9302bf24365f45
3
+ size 4456440689
model-00034-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c42c199ec40dd29c49050a775c19653577ff88fb716d5fbcf93902c7ebba7a9e
3
+ size 4859093867
model-00035-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:094d26da85b8b59d16eca233361fe7ac53b36801ca5b9d09366c30bfc764007a
3
+ size 4456440715
model-00036-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:87c28c84b8b25e184e3d1e58a7f324b7750d492269bbf9514c2b1f80f5fc2adc
3
+ size 4456440713
model-00037-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7c83545680b8a2c97d9951b184e8b26f8e6ee7bdab735421e641b30707b64467
3
+ size 4456440715
model-00038-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2c77e03a81923465997cef33788da50c97533e8483a4db50ca3e4a7b69cc778f
3
+ size 4456440715
model-00039-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8291679c941b4fd3e0e42bbca249d4640a9e775aa215a1388c3eaf84641e541d
3
+ size 4859093895
model-00040-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fb683e983eef4328d33ecbb984a70f6099444ffc77310f203fb8bbc0df3f630e
3
+ size 4456440715
model-00041-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:eb1d6ad823fd4031ef7448990e3fb30042ac93a4bbf3b3b7a60edd9709a45505
3
+ size 4456440715
model-00073-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:71489e563ba422edf9fb1c36abbe48dddc2cc8415e6422d06f4768d708af2441
3
+ size 4456440713
model-00074-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:75e70f16d871e7a7774eddda21c0a4c82e7bb04aa0ce76cd9c7061c9f175b69a
3
+ size 4859093899
model-00075-of-00076.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ca267a61f7092c459134303399c6f7abd05cde2b3a7e0bb48ab667e92b4acab3
3
+ size 4456440709
model.safetensors.index.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "backend": "tokenizers",
3
+ "clean_up_tokenization_spaces": false,
4
+ "do_lower_case": false,
5
+ "eos_token": "<|endoftext|>",
6
+ "extra_special_tokens": [
7
+ "<|endoftext|>",
8
+ "[MASK]",
9
+ "[gMASK]",
10
+ "[sMASK]",
11
+ "<sop>",
12
+ "<eop>",
13
+ "<|system|>",
14
+ "<|user|>",
15
+ "<|assistant|>",
16
+ "<|observation|>",
17
+ "<|begin_of_image|>",
18
+ "<|end_of_image|>",
19
+ "<|begin_of_video|>",
20
+ "<|end_of_video|>",
21
+ "<|begin_of_audio|>",
22
+ "<|end_of_audio|>",
23
+ "<|begin_of_transcription|>",
24
+ "<|end_of_transcription|>"
25
+ ],
26
+ "is_local": true,
27
+ "model_max_length": 202752,
28
+ "model_specific_special_tokens": {},
29
+ "pad_token": "<|endoftext|>",
30
+ "padding_side": "left",
31
+ "remove_space": false,
32
+ "tokenizer_class": "TokenizersBackend",
33
+ "tool_parser_type": "glm47"
34
+ }