AI SeedbankHelp preserve open and free AI for humanity's future

← All models

zai-org_GLM-4.7-Flash

zai-org · View on Hugging Face ↗

Get this model

Download TorrentMagnet Link

Seeders: · Leechers:

Model card

The complete upstream card, rendered from this payload's README.md — the same hash-verified bytes the torrent distributes. Images and off-site links are removed; the original card on Hugging Face carries them.


language:

  • en
  • zh library_name: transformers license: mit pipeline_tag: text-generation

GLM-4.7-Flash

👋 Join our Discord community.
📖 Check out the GLM-4.7 technical blog, technical report(GLM-4.5).
📍 Use GLM-4.7-Flash API services on Z.ai API Platform.
👉 One click to GLM-4.7.

Introduction

GLM-4.7-Flash is a 30B-A3B MoE model. As the strongest model in the 30B class, GLM-4.7-Flash offers a new option for lightweight deployment that balances performance and efficiency.

Performances on Benchmarks

Benchmark GLM-4.7-Flash Qwen3-30B-A3B-Thinking-2507 GPT-OSS-20B
AIME 25 91.6 85.0 91.7
GPQA 75.2 73.4 71.5
LCB v6 64.0 66.0 61.0
HLE 14.4 9.8 10.9
SWE-bench Verified 59.2 22.0 34.0
τ²-Bench 79.5 49.0 47.7
BrowseComp 42.8 2.29 28.3

Evaluation Parameters

Default Settings (Most Tasks)

  • temperature: 1.0
  • top-p: 0.95
  • max new tokens: 131072

For multi-turn agentic tasks (τ²-Bench and Terminal Bench 2), please turn on Preserved Thinking mode.

Terminal Bench, SWE Bench Verified

  • temperature: 0.7
  • top-p: 1.0
  • max new tokens: 16384

τ^2-Bench

  • Temperature: 0
  • Max new tokens: 16384

For τ^2-Bench evaluation, we added an additional prompt to the Retail and Telecom user interaction to avoid failure modes caused by users ending the interaction incorrectly. For the Airline domain, we applied the domain fixes as proposed in the Claude Opus 4.5 release report.

Serve GLM-4.7-Flash Locally

For local deployment, GLM-4.7-Flash supports inference frameworks including vLLM and SGLang. Comprehensive deployment instructions are available in the official Github repository.

vLLM and SGLang only support GLM-4.7-Flash on their main branches.

vLLM

  • using pip (must use pypi.org as the index url):
pip install -U vllm --pre --index-url https://pypi.org/simple --extra-index-url https://wheels.vllm.ai/nightly
pip install git+https://github.com/huggingface/transformers.git

SGLang

  • Install the supported versions of SGLang and Transformers (using uv is recommended):
uv pip install sglang==0.3.2.dev9039+pr-17247.g90c446848 --extra-index-url https://sgl-project.github.io/whl/pr/
uv pip install git+https://github.com/huggingface/transformers.git@76732b4e7120808ff989edbd16401f61fa6a0afa

transformers

using with transformers as

pip install git+https://github.com/huggingface/transformers.git

and then run:

import torch
from transformers import AutoModelForCausalLM, AutoTokenizer

MODEL_PATH = "zai-org/GLM-4.7-Flash"
messages = [{"role": "user", "content": "hello"}]
tokenizer = AutoTokenizer.from_pretrained(MODEL_PATH)
inputs = tokenizer.apply_chat_template(
    messages,
    tokenize=True,
    add_generation_prompt=True,
    return_dict=True,
    return_tensors="pt",
)
model = AutoModelForCausalLM.from_pretrained(
    pretrained_model_name_or_path=MODEL_PATH,
    torch_dtype=torch.bfloat16,
    device_map="auto",
)
inputs = inputs.to(model.device)
generated_ids = model.generate(**inputs, max_new_tokens=128, do_sample=False)
output_text = tokenizer.decode(generated_ids[0][inputs.input_ids.shape[1]:])
print(output_text)

vLLM

vllm serve zai-org/GLM-4.7-Flash \
     --tensor-parallel-size 4 \
     --speculative-config.method mtp \
     --speculative-config.num_speculative_tokens 1 \
     --tool-call-parser glm47 \
     --reasoning-parser glm45 \
     --enable-auto-tool-choice \
     --served-model-name glm-4.7-flash

SGLang

python3 -m sglang.launch_server \
  --model-path zai-org/GLM-4.7-Flash \
  --tp-size 4 \
  --tool-call-parser glm47  \
  --reasoning-parser glm45 \
  --speculative-algorithm EAGLE \
  --speculative-num-steps 3 \
  --speculative-eagle-topk 1 \
  --speculative-num-draft-tokens 4 \
  --mem-fraction-static 0.8 \
  --served-model-name glm-4.7-flash \
  --host 0.0.0.0 \
  --port 8000
  • For Blackwell GPUs, include --attention-backend triton --speculative-draft-attention-backend triton in your SGLang launch command.

Citation

If you find our work useful in your research, please consider citing the following paper:

@misc{5team2025glm45agenticreasoningcoding,
      title={GLM-4.5: Agentic, Reasoning, and Coding (ARC) Foundation Models}, 
      author={GLM Team and Aohan Zeng and Xin Lv and Qinkai Zheng and Zhenyu Hou and Bin Chen and Chengxing Xie and Cunxiang Wang and Da Yin and Hao Zeng and Jiajie Zhang and Kedong Wang and Lucen Zhong and Mingdao Liu and Rui Lu and Shulin Cao and Xiaohan Zhang and Xuancheng Huang and Yao Wei and Yean Cheng and Yifan An and Yilin Niu and Yuanhao Wen and Yushi Bai and Zhengxiao Du and Zihan Wang and Zilin Zhu and Bohan Zhang and Bosi Wen and Bowen Wu and Bowen Xu and Can Huang and Casey Zhao and Changpeng Cai and Chao Yu and Chen Li and Chendi Ge and Chenghua Huang and Chenhui Zhang and Chenxi Xu and Chenzheng Zhu and Chuang Li and Congfeng Yin and Daoyan Lin and Dayong Yang and Dazhi Jiang and Ding Ai and Erle Zhu and Fei Wang and Gengzheng Pan and Guo Wang and Hailong Sun and Haitao Li and Haiyang Li and Haiyi Hu and Hanyu Zhang and Hao Peng and Hao Tai and Haoke Zhang and Haoran Wang and Haoyu Yang and He Liu and He Zhao and Hongwei Liu and Hongxi Yan and Huan Liu and Huilong Chen and Ji Li and Jiajing Zhao and Jiamin Ren and Jian Jiao and Jiani Zhao and Jianyang Yan and Jiaqi Wang and Jiayi Gui and Jiayue Zhao and Jie Liu and Jijie Li and Jing Li and Jing Lu and Jingsen Wang and Jingwei Yuan and Jingxuan Li and Jingzhao Du and Jinhua Du and Jinxin Liu and Junkai Zhi and Junli Gao and Ke Wang and Lekang Yang and Liang Xu and Lin Fan and Lindong Wu and Lintao Ding and Lu Wang and Man Zhang and Minghao Li and Minghuan Xu and Mingming Zhao and Mingshu Zhai and Pengfan Du and Qian Dong and Shangde Lei and Shangqing Tu and Shangtong Yang and Shaoyou Lu and Shijie Li and Shuang Li and Shuang-Li and Shuxun Yang and Sibo Yi and Tianshu Yu and Wei Tian and Weihan Wang and Wenbo Yu and Weng Lam Tam and Wenjie Liang and Wentao Liu and Xiao Wang and Xiaohan Jia and Xiaotao Gu and Xiaoying Ling and Xin Wang and Xing Fan and Xingru Pan and Xinyuan Zhang and Xinze Zhang and Xiuqing Fu and Xunkai Zhang and Yabo Xu and Yandong Wu and Yida Lu and Yidong Wang and Yilin Zhou and Yiming Pan and Ying Zhang and Yingli Wang and Yingru Li and Yinpei Su and Yipeng Geng and Yitong Zhu and Yongkun Yang and Yuhang Li and Yuhao Wu and Yujiang Li and Yunan Liu and Yunqing Wang and Yuntao Li and Yuxuan Zhang and Zezhen Liu and Zhen Yang and Zhengda Zhou and Zhongpei Qiao and Zhuoer Feng and Zhuorui Liu and Zichen Zhang and Zihan Wang and Zijun Yao and Zikang Wang and Ziqiang Liu and Ziwei Chai and Zixuan Li and Zuodong Zhao and Wenguang Chen and Jidong Zhai and Bin Xu and Minlie Huang and Hongning Wang and Juanzi Li and Yuxiao Dong and Jie Tang},
      year={2025},
      eprint={2508.06471},
      archivePrefix={arXiv},
      primaryClass={cs.CL},
      url={https://arxiv.org/abs/2508.06471}, 
}

Magnet link

Opens the swarm directly in your torrent client — no file download needed. Copy-paste works too:

magnet:?xt=urn:btih:6d5888fbffd30a25b1caef1bba125a16d0ffa9c6&dn=zai-org_GLM-4.7-Flash

Open magnet in torrent client · infohash 6d5888fbffd30a25b1caef1bba125a16d0ffa9c6

Files & hashes

PathSizesha1sha256
README.md8.0 KB (8,174 B)08ba74499e9f19eb5c5c77cbe4538b3164fa521b7bfcbced42741ceb3fff8809f8d6c84ada9696850e257c4e53e6c2fe9ef4f9bf
chat_template.jinja3.0 KB (3,120 B)2ab98ef068d62829d17c5ade1827b9f013fa2bbfd63ad536c3c81880043e22ec7fd08db42b4d8fb7c89c7138bc562bfa25281375
config.json1.0 KB (1,070 B)6637ccbc226eb78776af6a66b6558ce6421be20edc9b97c7c9bed726a2e6939da4234d5c43abb3edec8812068c9a1af1dbc13acb
generation_config.json181 B (181 B)1dfa4cbf88115f19b4c6fcb086cc5669d2ce5e57e19f4eb8be12cdb62a3737b52a332c7c142cbf5ee24a5de7d806f6132b782425
model-00001-of-00048.safetensors1.34 GB (1,438,134,344 B)266f03e5399c34fa2a4c88d5a2855b0d2b58950b90abe0d075755853145c96906a1300f57c167fcc9aa67221239b448abf54933c
model-00002-of-00048.safetensors1.18 GB (1,270,648,128 B)d5b5f7cfeaec19a33e86aa82963e94d75958e8b98c51e2434efe609cbe652014a924e088a5ea97be35ca29cfa893a1a9a90304b1
model-00003-of-00048.safetensors1.18 GB (1,270,648,128 B)6099a238f0db6786854372b62daa4bf98bde7927ab6ebdd01af10c9bde1ec0b2a182d6f7ff8df831add6810695e5f3b50918040d
model-00004-of-00048.safetensors1.18 GB (1,270,648,128 B)3a3ec6dd4287bfbbf51b2a522ae428ad76ba13a7932e4dbb8f7583d2b6392a6e850dd7aa05636827e8b90ff7858cae709838dca7
model-00005-of-00048.safetensors1.18 GB (1,270,648,128 B)c99271f250d4c2906cf1774b635ee1816cea9d797f56a3e52bf5905c2df07ef53575ae8e62622138a15b0affc2b3f84785ca81e9
model-00006-of-00048.safetensors1.18 GB (1,270,648,128 B)2fc43cf6be72c06830107679481ca3646b6611ad83aa0eeca6e5a9394bb8a1c9cab46cc603799d729cf64ed4bbc341e0a7085feb
model-00007-of-00048.safetensors1.18 GB (1,270,648,128 B)3c8f1a19f3fc5c8bbc624b2fd25ae51a8e962882a9679076d3bd10c5f1287d12418fddb41c8b54b8c8ccc0672796ef7e8431b797
model-00008-of-00048.safetensors1.18 GB (1,270,648,128 B)53f59add6c2311aa6ae745190f94bdbd9ba592227d1231577a057ff957d480c277e497910acbba75fc9232f8fd8f44c1a647d7a2
model-00009-of-00048.safetensors1.18 GB (1,270,648,128 B)1aef0329b83bbfaba326255a9b6dfc5a155fabd3095d626626773284535ba4114c2b320003ba3c8430bd104f5e7bba3772b2a1b1
model-00010-of-00048.safetensors1.18 GB (1,270,648,128 B)0b56f9b367399f6088c09dfd5768bfbd4663e6f5c3f8d197b0d253082f547d67989b1e3928a742b508f6f8d4abf119f3ba2990ed
model-00011-of-00048.safetensors1.18 GB (1,270,648,328 B)f6729837f1672ac271a5317cc6f3bb0f79cc346ca8b7eeef625a6ed9ced479e064870f0ebf0da67056cd5e582300d0ebcf44de21
model-00012-of-00048.safetensors1.18 GB (1,270,648,328 B)0d3792fcadb6bc595a6924e95d59a01bf7210cb149adb8b9f02d1643ab22406b0e05938ce3d7a8986fd0981e0af5d4cd47ee8b12
model-00013-of-00048.safetensors1.18 GB (1,270,648,328 B)68539ba30da6d5a9b67dee4eda6fef5acaafb41af269382ae6ce42cd05937fcd5551e08da151c810a87bb0e1994ff9bb5f9eb7c9
model-00014-of-00048.safetensors1.18 GB (1,270,648,328 B)4791fe68d8e0e6832f4726df928f37bef2ade27aacd6f36aadceda658a5db6fc6a04160ae2ca1ae78d4a9c84aeabcea8e80b44c8
model-00015-of-00048.safetensors1.18 GB (1,270,648,328 B)9317efa9414a1888423df8095a802cded879e9c0606079fe1e000d658142c59fee66aa8d7c949d758612debd78d21cde2fae392c
model-00016-of-00048.safetensors1.18 GB (1,270,648,328 B)72f5833c4729a0c5ca2ddb04c332d697b1360806b53fb45f7689b505fc185180503ea9d45af67042ba38914e53bbdee97173c974
model-00017-of-00048.safetensors1.18 GB (1,270,648,328 B)ee286aa77274cc39853584a91b51d79c3cb96e8ea51e478badd50bb9b5299e3ad7979bfd40da8ab96983de0cd16a0fb5fddb4bc9
model-00018-of-00048.safetensors1.18 GB (1,270,648,328 B)17f95343e3f6457b034a81f77896d94cc12bb58e680295c83f29a90c97f2d68c1290a152330c2dbd3654abdf0f074e6d8018062c
model-00019-of-00048.safetensors1.18 GB (1,270,648,328 B)5d53c707a4a78ff5f6dd226d87d4e0f4b697a0ec355f9437e291b0846b5ecac1d644766ec17bd4863da441e4e786f33d7bac3347
model-00020-of-00048.safetensors1.18 GB (1,270,648,328 B)878ddf5187d6b621a0f90409621444f18425f4e08f8d4698fc5ce834021254b407c61e5376a693dcafeb996a8fc708639b44aed8
model-00021-of-00048.safetensors1.18 GB (1,270,648,328 B)4faeea29d0dd59e667f19b2c13531ed876c1e762111570fc7f55bcb9beb7bcb969475b27ffbcad97b95788464ff91a1e07ff897a
model-00022-of-00048.safetensors1.18 GB (1,270,648,328 B)48292fb78cadcce36522a683987b7d962a566441ced6a73df393df3bd559fc69093763fb5cc9fedee31e245a52a7786939199896
model-00023-of-00048.safetensors1.18 GB (1,270,648,328 B)0d8f0cdb8de837b1455670e51aff6d1b555dadd2b287bb0ce12a1ac975978c94548f2bbab3267e83e0c888871a3ada3ddf91405d
model-00024-of-00048.safetensors1.18 GB (1,270,648,328 B)464db82a0604bf4a40597ffc04e3adc907eb3c5ec6e77476f0f57dc0386b64741d9251632d46e646faab6780d10a5a6a5f456668
model-00025-of-00048.safetensors1.18 GB (1,270,648,328 B)501fecb4e133bfa8cfd149570118406ac88758808f9e643d9d3e9152b9156424615c8054cffe6b8bc1b776567da17bbd3b97ebcb
model-00026-of-00048.safetensors1.18 GB (1,270,648,328 B)6031e61d49abe2dd491e8541dabd904489a474d1634da561277b9b77410a319bd930e940d443055fb688a2e4b9574aae1569192d
model-00027-of-00048.safetensors1.18 GB (1,270,648,328 B)73b92fe66c99b398ee17f75aa2ef52c85e60dc4f3286537b5a5dd2b4742878476601a4f5b1f061e948386babe05076fd058fa5ec
model-00028-of-00048.safetensors1.18 GB (1,270,648,328 B)bd9773fc2f9dc122a7e3a94c2b563d4ffa16bc6956335c906d44c1c6f37530d65182cd6af4fb146fa8a68e8e510d6419b5b007e7
model-00029-of-00048.safetensors1.18 GB (1,270,648,328 B)37190fe821067b67678fedc417ddd4eebea19be23e6591dfb36a59918f91c152ba0baf184b4372c667fe46f74024e5d8ae86f378
model-00030-of-00048.safetensors1.18 GB (1,270,648,328 B)4a2d952bce372e7b24f2774f0cedae27c97548fe62373b800980841e6ca5c4c48db570729246092d03ac756bdeb55ecfdd599a2c
model-00031-of-00048.safetensors1.18 GB (1,270,648,328 B)2700601d50284bef602363c2869617f89129176f332d82cefb0b4d87c48e3e989c97d3e74b6f64326313694ed226a72bf26e3b99
model-00032-of-00048.safetensors1.18 GB (1,270,648,328 B)79494bc0edc6a018e61797448ea94c9a0c4630b90f9897915eef55f41b221ff072d8b0b401e447007d648b63ddabf9b795361c18
model-00033-of-00048.safetensors1.18 GB (1,270,648,328 B)accbe7d3d20ff187fd5465b063d96485e23fea7e29059fb79e6fefaad49b7c2833370cd78079b403cc98bc28ce95976207840f7f
model-00034-of-00048.safetensors1.18 GB (1,270,648,328 B)bd395c563d035936c204fcc9ceb9cb07077a577af989cc8af19949a310599c5ab8d65f0ae8406908e1a702588b892604179061a1
model-00035-of-00048.safetensors1.18 GB (1,270,648,328 B)540c1b4ece81d5e828b13630db2b726c51d30554aaa91e9b1a075d1753e45a01db198ed48f2739392e46e1843a4dcaaab6cd02eb
model-00036-of-00048.safetensors1.18 GB (1,270,648,328 B)de27697caeee19da6d9bc45948fcf822a40c138dcf807da31533424a54196cd07da6caa1a22199b72d822bd8c2f387172b6e1c65
model-00037-of-00048.safetensors1.18 GB (1,270,648,328 B)df60acac15691f31ec7931ed4a70ae8fc96e5436887aeb5568ef6189a7618309e50f0277ad339da86133526ca6d820b88ecbb5d4
model-00038-of-00048.safetensors1.18 GB (1,270,648,328 B)54de0f5021452ab5fd4edcff3d344cab22681f5b036a38cc10858a8cc5a2fcd09fdab1b53258d04ff87dc4d3d21f140c54b029dd
model-00039-of-00048.safetensors1.18 GB (1,270,648,328 B)26566b22848e6411cf7096b260f43e247e489eb662ae341291fe720719ab6cdcf2348752f262f4575a3f8221b353deb224bcbd1d
model-00040-of-00048.safetensors1.18 GB (1,270,648,328 B)7dcc626aa2e2a3b5abd237e36b344d35d24a2ecdcd8af33462a3f7b4dbc5393da4016acffabafc20b826f952e912adb2a2845fe3
model-00041-of-00048.safetensors1.18 GB (1,270,648,328 B)87f9af07708ad0b24ea70a8863a2a67798f2acf239098c9b6770ff5c185a70b8f0d6cfca22f95e3c47dc38de88c3d2ec2b1cf5bc
model-00042-of-00048.safetensors1.18 GB (1,270,648,328 B)b2ac22d6903b4b6bcd68db6c3ab40b3278aad625ffe0b23aab19b608ca59f46628064c3d53d846c81d6f978c2579b38e09e35747
model-00043-of-00048.safetensors1.18 GB (1,270,648,328 B)b80b488ba2ef68e54f75b41e9641261a976dece3efe1da68f8c30d7e77a68d48eb7d65d28709f536062dba8168490370cca47ba4
model-00044-of-00048.safetensors1.18 GB (1,270,648,328 B)13933b11e4b43c50142741d5b0f92c892010fc28a731baa1370864ad61cf8fe8000cb8e1e266529206824a3ce96b5229eb3c53c8
model-00045-of-00048.safetensors1.18 GB (1,270,648,328 B)ffb88ede2a370865ca75373f42d515b90946ca17a636f872a931396d2fdc57b6c715294e14b3c8040420ffce856a2a0a18194916
model-00046-of-00048.safetensors1.18 GB (1,270,648,328 B)cc7545ff6a603bae5c171e9f604b6ef32fe4944bba5365e31c27cd13e330a7135f7251f3bf16e99c8504acffa9e8190b585eb773
model-00047-of-00048.safetensors2.37 GB (2,539,429,936 B)f66ab0913f7c8b4d8b42f0dc8ef753a99c18b88b1bcc5d06065d2a564894657945ccfe9411762421c2c60acf91de31050cd4d84d
model-00048-of-00048.safetensors1.20 GB (1,287,438,264 B)1a84945094438fe71a8a457d1a3da73ed594fe4035fff90a30ca808d86dc24f9e3eda119832ab69fb1f88ae4cccfbf0e5ee409a1
model.safetensors.index.json851.4 KB (871,830 B)215064e6cfa2a56b41b5ef618d82b802a103cdfc91e6e95ca21700f50904a680c8c4212f5aa16dc7c10a013f01c906957c889791
tokenizer.json19.3 MB (20,217,442 B)a1de046626dd7a79a945416828451181d950a2af19e773648cb4e65de8660ea6365e10acca112d42a854923df93db4a6f333a82d
tokenizer_config.json7.1 KB (7,226 B)f6d3074564f6dd3a9431bd43b968cef999d58c5431a173e2797ddc8b72ac996803513e627fc28d7aad02cfcce321a431d865c86d

Cite this release

Canonical URL
https://aiseedbank.org/models/zai-org_GLM-4.7-Flash/
Slug
zai-org_GLM-4.7-Flash
Infohash
6d5888fbffd30a25b1caef1bba125a16d0ffa9c6
License
mit
Signing key fingerprint
85a3b32c3712427b

Every file carries a locally computed sha256 — verify a download against the signed sums: zai-org_GLM-4.7-Flash.SHA256SUMS (+ minisign signature).

Provenance

Upstream repositoryzai-org/GLM-4.7-Flash
Revision (pinned)7dd20894a642a0aa287e9827cb1a1f7f91386b67
Fetched at2026-09-04T06:43:58Z
License at fetchmit
Snapshot toolhuggingface · seedbank 0.1.0

Trackers

✓ verified · rehash-vs-hf-metadata at 2026-09-04T06:55:34Z

mit58.18 GB (62,465,284,547 bytes)transformerssafetensorsglm4_moe_litetext-generationconversationaleval-resultsendpoints_compatible2 languages (en, zh)paper: 2508.06471