Kimi K3 Review: The 2.8-Trillion-Parameter Open-Source Model That Challenges Claude and GPT
World's Largest Open-Source AI Model (2026)

On July 16, 2026, Moonshot AI quietly added "Kimi K3 is live" to the top of its API docs — no keynote, no fanfare — and shipped the world's largest open-source AI model at 2.8 trillion parameters. For AI developers and product leads choosing between frontier APIs, this article delivers: K3 specs and launch context, KDA / AttnRes / Stable LatentMoE architecture breakdown, full benchmarks vs Claude Fable 5 and GPT-5.6 Sol, pricing and four access paths, scenario selection matrix, July 27 full-weight open-source plan, plus a six-step getting-started checklist and FAQ.

01

What Is Kimi K3? Why Does This Quiet Launch Matter?

Kimi K3 is Moonshot AI's 2.8 trillion (2.8T) parameter sparse Mixture-of-Experts (MoE) model — roughly 75% larger than the previous record holder DeepSeek V4 Pro (1.6T), 2.7x Xiaomi's open model (1.02T), and more than 7x Alibaba's (397B). At inference it activates 16 of 896 experts (1.8% sparsity), pairs that with a 1 million token context window and native vision, and targets complex coding, long-document reasoning, and knowledge work.

In one sentence: Kimi K3 is an open-source, vision-native, long-memory coding AI that costs 40% less than Claude Opus 4.8 — with full weights landing on Hugging Face July 27.

Launch Context: What the Low-Key Rollout Signals

  1. 01

    Size record streak: Kimi held the open-source parameter ceiling for 9 of the past 12 months

  2. 02

    WAIC timing: Launch landed the night before WAIC 2026 (July 17–20) — a deliberate strategic signal

  3. 03

    Commercial momentum: ARR passed $300M by June 2026; a sixth funding round closed at a $31.5B pre-money valuation

  4. 04

    API-first revenue: API accounts for over 70% of revenue; overseas paid users grew 400%

  5. 05

    Post-DeepSeek rebound: After losing significant market share over 18 months, K3 reasserts technical sovereignty — not just scale, but architecture

  6. 06

    Full open-source pledge: Official WeChat announcement confirms complete weights on Hugging Face July 27

02

Three Architecture Innovations: KDA, AttnRes, and Stable LatentMoE

Kimi K3 is not raw parameter stacking. Engineering changes deliver roughly 2.5x better scaling efficiency versus Kimi K2.

2.1 Kimi Delta Attention (KDA) — Hybrid Linear Attention

Full attention makes KV cache memory grow quadratically on long contexts. KDA alternates linear and full attention layers in a 3:1 ratio: three cheap linear layers handle local structure; one full-attention layer preserves global information flow. Result: up to 75% less KV cache memory, up to 6.3x faster decoding at 1M tokens, and better performance than pure full-attention baselines across short, long, and RL-scaling regimes.

2.2 Attention Residuals (AttnRes) — Cross-Depth Selective Retrieval

Standard residual connections spread information uniformly across depth, diluting early-layer representations in deeper layers. AttnRes adds selective retrieval — the model can pull high-value features from earlier layers directly across depth. That yields roughly 25% training efficiency gain with under 2% extra compute.

2.3 Stable LatentMoE — 896 Experts, 16 Active

TechniqueRole
Quantile BalancingDerives expert allocation from router-score quantiles — no heuristic hyperparameters
Per-Head MuonPer-attention-head optimization for more adaptive large-scale training
SiTU (Sigmoid Tanh Unit)Improved activation control
Gated MLASharper attention selectivity
warning

Note: Benchmark figures below are self-reported by Moonshot AI. Each model used its own inference harness (K3 via Kimi Code, GPT via Codex, Claude via Claude Code). Independent third-party reproduction is still in progress.

03

Benchmarks: Kimi K3 vs Claude Fable 5 vs GPT-5.6 Sol

BenchmarkKimi K3Claude Fable 5GPT-5.6 SolClaude Opus 4.8GLM-5.2
DeepSWE67.570.073.059.046.2
Program Bench77.876.877.671.963.7
Terminal Bench 2.188.384.688.884.682.7
FrontierSWE81.286.671.366.767.3
SWE Marathon42.035.039.040.013.0
BrowseComp91.288.090.484.3
Automation Bench30.829.129.727.212.9
GPQA-Diamond93.592.694.191.091.2
MMMU-Pro (vision)81.681.283.078.9
OmniDocBench (docs)91.189.885.887.9

Key takeaways: K3 leads SWE Marathon (sustained long coding) at 42.0 by a wide margin; edges Program Bench at 77.8; on FrontierSWE Fable 5 leads (86.6) while K3 still crushes GPT-5.6 Sol (71.3); OmniDocBench document understanding tops the field at 91.1. On Artificial Analysis Intelligence Index v4.1, K3 scores 57.14th overall, trailing Claude Fable 5 (59.9) and GPT-5.6 Sol (58.9) by just 2.8 points from the top.

04

Pricing Comparison and Four Ways to Start Using Kimi K3 Today

ModelInput ($/M)Output ($/M)Cache Hit InputContext
Kimi K3$3.00$15.00$0.301M
Claude Sonnet 5$3.00 (promo $2)$15.00 (promo $10)200K
Claude Opus 4.8$5.00$25.00200K
GPT-5.5$5.00$30.00400K
DeepSeek V4 Pro$1.74$3.48$0.145128K
Kimi K2.6$0.95$4.00$0.16256K

K3 matches Claude Sonnet 5 standard pricing ($3/$15) but delivers 5x the context. Cache hits drop to $0.30/M (one-tenth of list input price); coding workflows report 90%+ cache hit rates. China API: ¥20/M input, ¥100/M output, ¥2/M cache hit. Consumer kimi.com accounts are free with K3 at max reasoning effort; prepaid plans from ¥199 (promo through August 11).

Six Steps to Get Started with Kimi K3

  1. 01

    Web / app (easiest): Visit kimi.com, sign up (Google supported). K3 runs at max reasoning effort by default

  2. 02

    Get an API key: Create one at platform.kimi.ai

  3. 03

    Configure an OpenAI-compatible client: Set base_url to https://api.moonshot.ai/v1, model to kimi-k3

  4. 04

    OpenRouter route: Model ID moonshotai/kimi-k3 — official pricing, no markup, full 1M context

  5. 05

    Enable cache optimization: Reuse system prompts and tool definitions in coding workflows; Mooncake disaggregated inference boosts cache hit rate

  6. 06

    Mark July 27: Full weights on Hugging Face — evaluate private deployment (requires a 64+ accelerator supernode)

python
from openai import OpenAI

client = OpenAI(
    api_key="your_moonshot_api_key",
    base_url="https://api.moonshot.ai/v1"
)

response = client.chat.completions.create(
    model="kimi-k3",
    messages=[{"role": "user", "content": "Analyze this code for me..."}]
)
05

Which Model Should You Pick? Open-Source Timeline and Citable Specs

ScenarioRecommended ModelWhy
Sustained long coding sessionsKimi K3SWE Marathon leader; longest context
Complex repo-level bug fixingClaude Fable 5FrontierSWE / SWE-bench Pro lead
Terminal / toolchain agentsGPT-5.6 SolTerminal Bench and Coding Agent Index lead
Ultra-long docs / multimodalKimi K3OmniDocBench #1; native vision + 1M context
Cost-sensitive workloadsDeepSeek V4 ProOutput at $3.48/M — far below K3
Self-hosted open weights (post 7/27)Kimi K3Strongest downloadable open weights to date

July 27 Open-Weight Release

  • Parameter scale: Largest downloadable open model ever — first open weights above 2T parameters
  • Quantization design: Trained with MXFP4 weights and MXFP8 activations from the start — quantization-aware throughout
  • Framework support: Day-0 expected on vLLM, SGLang, and transformers; Hugging Face MXFP4/NVFP4 quant variants planned
  • Key dates: WAIC announcements July 17–20 → July 27 full weight release
info

What it signals: China's open AI ecosystem is shifting from "cheap market share" to genuinely challenging the intelligence frontier — not vanity parameter counts, but architectural engineering.

If you plan to wire Kimi K3 into local agent pipelines or Kimi Code-style long coding sessions, running CLI agents on a laptop or unstable VPS often hits memory limits, dropped sessions, and missing Xcode/Metal toolchains; pure Linux VPS cannot cover iOS build and signing flows. For production environments that need stable SSH long sessions, DerivedData caching, and iOS CI/CD automation, NodeMini's Mac Mini cloud rental is usually the better fit — dedicated nodes, second-scale provisioning, and agents plus builds on one real Mac.

FAQ

Frequently Asked Questions

Yes. Register at kimi.com for free access to K3 at max reasoning effort. API usage is paid ($3/$15 per 1M tokens). For a stable agent runtime, see Mac Mini rental rates.

Full weights release on Hugging Face on July 27, 2026. Production deployment needs a supernode with 64+ accelerators; a laptop cannot host 2.8T parameters. Inference providers and well-resourced labs are the realistic self-host audience.

K3 has nearly 2x parameters (2.8T vs 1.6T), 1M vs 128K context, and stronger scores on several benchmarks. DeepSeek output costs only $3.48/M — much cheaper. Pick DeepSeek for cost; pick K3 for long code and document understanding.

Very useful for whole-repo analysis, long legal/research documents, and multi-turn agent memory. K3 bills at a flat rate with no length surcharge; KDA delivers up to 6.3x faster decoding at 1M tokens. More ops questions: help center.

Moonshot AI says low and high modes will ship in a future update. Only max mode is available today. Watch WAIC (July 17–20) and the July 27 weight release for updates.