KAT-Coder V2.5 is an open-weight agentic coding model from Kwaipilot, the developer-tools group inside Kuaishou/Kwai. The Dev release landed on Hugging Face on July 23, 2026, pairing a Qwen3.6-35B-A3B MoE base (35B total, 3B active per token) with Apache 2.0 weights. Under a unified Claude Code evaluation harness it posts the best agentic tool-use score on PinchBench and ranks second on SWE-Bench Pro and KAT Code Bench, behind only the frontier Opus 4.8 and ahead of the GLM-5 series and Kimi-K2.6. The checkpoint has drawn roughly 582 likes and 23K downloads.
Model Specifications
| Specification | KAT-Coder V2.5 (Dev) |
|---|---|
| Architecture | MoE, 35B total / 3B activated per token |
| Base model | Qwen3.6-35B-A3B (Qwen 3.5/3.6 MoE line) |
| Context | 262,144 tokens natively |
| License | Apache 2.0 |
| Released | July 23, 2026, on Hugging Face |
| Modalities | Text only; vision excluded from Dev weights |
| Post-training | SFT (127K examples) + RL: asymmetric actor-critic PPO with hindsight-augmented value estimation |
Key Features
- Agentic tool use: Trained to act autonomously inside real executable repositories, verified by fail-to-pass and pass-to-pass tests.
- Repo-level engineering: AutoBuilder reconstructs real repositories into training tasks, teaching project-scale edits rather than single-file snippets.
- Verifiable RL training: KwaiClawEnv synthesizes tool-use trajectories, and hindsight-augmented value estimation stabilizes the PPO loop.
- OpenAI-compatible serving: Serve through SGLang, vLLM, or the Hugging Face Transformers server and point existing agent clients at the endpoint.
- Long context: 262K native tokens cover large monorepos and long agent sessions.
Use Cases
- Autonomous coding agents: Multi-step fixes where the model runs tests, reads failures, and iterates.
- Self-hosted assistants: Near-frontier agentic coding for teams that cannot send source to closed APIs.
- Research baseline: Apache 2.0 weights plus the arXiv report (2607.05471) suit agentic RL research.
- Cost-sensitive production: 3B active parameters keep inference far cheaper than dense frontier models.
Pricing
The Dev weights are free under Apache 2.0; you pay only for compute, and community GGUF quants from bartowski and mudler lower the bar further. A hosted commercial API runs on Kwaipilot's StreamLake platform at streamlake.com/product/kat-coder with usage-based pricing.
Advantages vs Competitors
- vs GLM-5 and Kimi-K2.6: Beats both on SWE-Bench Pro and KAT Code Bench under the same harness, and leads PinchBench tool use outright.
- vs closed Claude Code models: Only Opus 4.8 scores higher; KAT-Coder's open weights and self-hosting freedom are categorically different.
- Efficiency: 3B active per token is a fraction of GLM-5 class activation, compounding at scale.
Getting Started
Serve with vLLM 0.19.0+. The language-model-only flag is required because Dev ships text weights only:
vllm serve Kwaipilot/KAT-Coder-V2.5-Dev --language-model-only
Or with SGLang 0.5.10+:
python -m sglang.launch_server \
--model-path Kwaipilot/KAT-Coder-V2.5-Dev \
--tp-size 8 --reasoning-parser qwen3
Both expose an OpenAI-compatible API; keep the qwen3 reasoning parser enabled.
FAQ
Does KAT-Coder V2.5 support vision inputs?
No. The base supports image-text-to-text, but Dev ships language-model weights only.
Can I use it commercially?
Yes. Apache 2.0 permits commercial use, modification, and redistribution.
How does it compare to Claude Code's models?
Second only to Opus 4.8 on SWE-Bench Pro and KAT Code Bench, and the open-weight leader on PinchBench.
Alternatives
- Qwen3 8-27B: the broader Qwen3 ecosystem KAT-Coder builds on.
- GLM-5.3: Zhipu's flagship coding model with a strong agentic story.
- Claude Code: the closed product defining the frontier this model chases.
Tips
- Keep the reasoning parser on: Without
--reasoning-parser qwen3in SGLang, reasoning traces leak into answers. - Verify in your own harness: Replay real fail-to-pass suites before migrating.
- Evaluate on a GGUF quant first: Smoke-test on smaller GPUs before an 8-way tensor-parallel server.
Conclusion
KAT-Coder V2.5 is the strongest open-weight agentic coding release of the season: a 35B MoE activating just 3B per token, trained with verifiable RL in real repositories, and benchmarked second only to Opus 4.8 under a Claude Code harness. For near-frontier agentic coding with Apache 2.0 freedom, this is the checkpoint to download.
Comments
No comments yet. Be the first to comment!
Related Tools
Laguna S 2.1
poolside.ai
Poolside's open-weight 118B MoE coding model with 8B active parameters, a 1M-token context window, native interleaved reasoning, and an OpenMDW-1.1 license.
DeepSeek V4 Pro 0813
www.deepseek.com
DeepSeek's flagship 1.6T MoE model with 49B active parameters, 1M-token context, MIT open weights, and world-leading coding scores at a fraction of closed-model prices.
NVIDIA Nemotron 3.5 Lightning 30B A3B
build.nvidia.com/nvidia/nemotron-3.5-lightning-30b-a3b
NVIDIA's efficient open-weight 30B MoE hybrid model with 3B active parameters, 1M-token context, and single-GPU deployment for local reasoning and coding.
Related Insights
Cursor vs GitHub Copilot: Complete Comparison 2026
In-depth comparison of Cursor and GitHub Copilot. Discover which AI coding assistant is best for your workflow with detailed feature analysis, pricing, and real-world testing.
Six AI Coding CLIs, Six Months: No Matter How Strong the Model, Work Needs Supervision
Claude Code, Codex, opencode, pi, omp and DeepSeek Harness all have personalities. After six months of deep use I run a division of labor: pi for the fastest cheapest reviews, omp for complex PRs, DeepSeek Harness on V4 Flash for high-frequency low-cost review, and Claude Code, Qoder and Cursor for writing. No matter how strong the model, work needs supervision — ideally from an independent third party.
Skills + Hooks + Plugins: How Anthropic Redefined AI Coding Tool Extensibility
An in-depth analysis of Claude Code's trinity architecture of Skills, Hooks, and Plugins. Explore why this design is more advanced than GitHub Copilot and Cursor, and how it redefines AI coding tool extensibility through open standards.