Overview
Xing4.0-29B-A4B is an open-weight agent model from China Telecom Artificial Intelligence Technology Co., Ltd., the latest generation of the lab's TeleChat family. It is a mixture of experts: 29B total parameters with only 4B activated per token, a native 256K-token context extensible to 512K, and an architecture the project describes as mHC + MLA + MTP — Multi-head Latent Attention over 64 routed experts, 4 active per token plus one shared expert, across 40 layers. The weights landed on Hugging Face on 16 September 2026; the project's own news log dates the open-source release 17 September, alongside FP8 and GGUF packings.
The headline of the release is where it was trained rather than what it scores. China Telecom says Xing4.0-29B-A4B was trained entirely on the Ascend NPU platform — Ascend 910C clusters running MindSpore and MindFormers — and calls it the first model of this scale trained end to end there. The write-up credits fine-grained MoE communication optimisation, selective recomputation, DVM automatic graph-operator fusion and Ascend C fused operators for mHC with lifting overall training throughput roughly 96% over out-of-the-box performance.
The model is aimed squarely at agent work: multi-step planning, tool calling and long reasoning chains, with format alignment done specifically for agent harnesses including OpenCode, Claude Code, OpenClaw and Hermes. On China Telecom's own evaluation table it reaches 75.00 on SWE-bench Verified, 66.00 on SWE-bench Multilingual and 57.50 on Terminal-Bench 2.1, and 76.55 on Claw-Eval, 64.63 on Tau3-Bench and 60.80 on DeepresearchBII. Against the two peers the lab chose to publish, it leads Gemma4-26B-A4B on almost every row and trades with Qwen3.6-35B-A3B — ahead on Terminal-Bench 2.1, Claw-Eval and DeepresearchBII, behind on SWE-bench and AIME2026.
Deployment is open-source-ecosystem first. Transformers works for local inference, and vLLM, SGLang, KTransformers and TensorRT-LLM support was submitted upstream as pull requests that the README notes were still pending at release — so until those merge, serving needs an install from the relevant PR branch. Fine-tuning is supported through LLaMA-Factory and MindFormers, and multi-chip deployment through BAAI's FlagOS. Everything is Apache 2.0.
| Released | 2026-09-16 |
|---|---|
| License | Apache-2.0 |
| Weights | Open weights |
| Parameters | 29B total, 4B activated per token |
| Context | 256K |
| Architecture | Mixture-of-experts built on mHC + MLA + MTP: 40 layers, hidden size 3,584, Multi-head Latent Attention, 64 routed experts with 4 active per token plus 1 shared expert, dense FFN intermediate 9,216 and expert intermediate 1,024 |
| Modalities | Text |
| Status | Open weights on Hugging Face, ModelScope and Modelers, in BF16, FP8 and GGUF packings |
Benchmarks
China Telecom's published evaluation: Xing4.0-29B-A4B against Gemma4-26B-A4B and Qwen3.6-35B-A3B
| Benchmark | Xing4.0-29B-A4B | Gemma4-26B-A4B | Qwen3.6-35B-A3B |
|---|---|---|---|
| IFBench | 69.67 | 72.67 | 65.5 |
| AIME2026 | 90 | 88.3 | 92.7 |
| AA.LCR | 61 | 66 | 62 |
| Tau3-Bench | 64.63 | 58.9 | 67.2 |
| Claw-Eval | 76.55 | 71.49 | 74.54 |
| SWE-bench Verified | 75 | 53 | 76 |
| Terminal-Bench 2.1 | 57.5 | 30 | 51.5 |
| SWE-bench Multilingual | 66 | 51 | 67.2 |
| DeepresearchBII | 60.8 | 39.3 | 59.7 |
This model's scores
- SWE-bench Verified75%
- SWE-bench Multilingual66%
- Terminal-Bench 2.157.5%
- Claw-Eval76.55%
- Tau3-Bench64.63%
- DeepresearchBII60.8%
- AIME202690%
- IFBench69.67%
- AA.LCR61%
Scores on a 0–100 scale (25-point gridlines); higher is better. Each benchmark links to its published source.
Strengths
- Strong coding-agent scores for its activated size — 75.00 SWE-bench Verified and 57.50 Terminal-Bench 2.1 with only 4B parameters active per token
- Native 256K context, extensible to 512K, aimed at long multi-step agent runs
- Apache 2.0 weights published in BF16, FP8 and GGUF on Hugging Face, ModelScope and Modelers
- Trained entirely on Ascend 910C clusters with MindSpore — an existence proof for the non-NVIDIA training stack at this scale
- Format alignment done for agent harnesses such as OpenCode, Claude Code, OpenClaw and Hermes
Best for
- Running a coding or research agent locally where an open-weight MoE with a small active footprint fits the hardware budget
- Long-context agent workloads that need 256K or more tokens of task state
- Fine-tuning for vertical domains — intent classification, table understanding, contract auditing, knowledge-based QA — on proprietary data
- Evaluating what a fully Ascend-trained model delivers against NVIDIA-trained open-weight peers of similar size
FAQ
How big is Xing4.0-29B-A4B really?
29B total parameters, but only 4B are activated per token. It is a mixture of experts with 64 routed experts (4 active per token) plus one shared expert, over 40 layers with a hidden size of 3,584 and Multi-head Latent Attention.
What context length does it support?
256K tokens natively, which China Telecom says is extensible to 512K.
What is notable about how it was trained?
It was trained entirely on Huawei Ascend 910C clusters using MindSpore and MindFormers, with no NVIDIA hardware in the loop. China Telecom calls it the first model at this scale trained end to end on Ascend, and reports roughly 96% higher training throughput than the out-of-the-box baseline after its optimisation work.
How does it compare with other open MoE models?
On China Telecom's own table it beats Gemma4-26B-A4B on almost every benchmark listed, and trades with Qwen3.6-35B-A3B: ahead on Terminal-Bench 2.1 (57.50 vs 51.50), Claw-Eval (76.55 vs 74.54) and DeepresearchBII (60.80 vs 59.70), behind on SWE-bench Verified (75.00 vs 76.00) and AIME2026 (90.00 vs 92.70).
Can I serve it with vLLM or SGLang today?
Check the upstream pull requests first. The README lists vLLM, SGLang, KTransformers, TensorRT-LLM and llama.cpp support as submitted but pending at release, and asks you to install from the PR branch until they merge. Transformers works for local inference straight away.
What licence are the weights under?
Apache 2.0, with BF16, FP8 and GGUF packings published on Hugging Face, ModelScope and Modelers.