Kimi K3 Review: The 2.8-Trillion-Parameter
Open-Source Model That Challenges Claude and GPT

If you are a developer, AI researcher, or indie hacker evaluating frontier models in July 2026, the question is not whether Kimi K3 has the biggest parameter count. The question is whether it beats Claude Fable 5 and GPT-5.6 Sol on your workload — and whether you can afford to run it. This review covers what Kimi K3 is, three architectural innovations, full benchmark tables, API pricing, a six-step access guide, a use-case decision matrix, the July 27 open-weight release, five FAQ answers, and primary sources. Node tiers are on the NOVAKVM pricing page.

TL;DR: Moonshot AI just released Kimi K3 — the world's largest open-source AI model at 2.8 trillion parameters. It has a 1M token context window, native vision, beats Claude Fable 5 and GPT-5.6 Sol on several coding benchmarks, and costs $3/$15 per million tokens. Full weights drop July 27. Here is everything you need to know.

On the night of July 16, 2026, Moonshot AI quietly flipped a switch. A banner appeared at the top of the Kimi API docs: Kimi K3 is live. No press conference. No countdown timer. Just a quickstart guide, a pricing page, and a model ID you could call immediately. The quiet launch was somewhat at odds with what was being launched: the biggest open-source AI model ever built.

Kimi K3 is a 2.8-trillion-parameter mixture-of-experts (MoE) model from Beijing-based Moonshot AI. It is the world's first open model in the 3T-class, surpassing the previous record holder DeepSeek V4 Pro (1.6T) by nearly 75% — roughly 2.7x the size of Xiaomi's open model (1.02T) and more than 7x Alibaba's 397B release.

It uses sparse MoE routing — activating 16 of 896 experts per forward pass — paired with a 1,048,576-token context window and native vision for text, image, and video input. The model is designed for complex coding, long-document reasoning, and knowledge work. Full weights are scheduled for public release on July 27, 2026.

Kimi K3 core specifications (July 2026)
Spec Detail
Total parameters 2.8 trillion
Architecture Kimi Delta Attention (KDA) + Attention Residuals + Stable LatentMoE
Active experts 16 out of 896 (1.8% sparsity)
Context window 1,048,576 tokens (1M)
Input modalities Text, image, video
Output Text
Reasoning Always-on, max effort at launch
API model ID kimi-k3
Pricing $3 / $15 per 1M tokens (input / output)
Open weights July 27, 2026

The model is already live on kimi.com, the Kimi mobile app, Kimi Code, and the Moonshot API. You can try it right now for free with a Google account — no credit card needed.

Why this release matters beyond the parameter count:

  • For 9 of the past 12 months, Kimi models have held the record for the largest open-source model by parameter count.
  • Moonshot AI's ARR crossed $300M as of June 2026 (up from $100M in March, $200M in May).
  • The company closed its 6th funding round this year at a $31.5B pre-money valuation.
  • API revenue now makes up over 70% of total revenue, with overseas paid users growing 400%.
  • The release was timed for the eve of the 2026 World AI Conference (WAIC) in Shanghai.

Pain points that still block adoption:

  • Self-reported benchmarks: Moonshot published its own numbers using Kimi Code, Codex, and Claude Code harnesses — independent third-party reproductions are still ongoing.
  • Local deployment gap: Weights are not public until July 27; production self-hosting requires 64+ accelerators, not a laptop.
  • Single reasoning mode: Only max effort is available at launch; low and high modes are promised for later updates.
  • Cost vs DeepSeek: K3 output at $15/M is more than 4x DeepSeek V4 Pro's $3.48/M — the intelligence premium is real but not free.
  • Not a clean sweep: Claude Fable 5 still leads FrontierSWE and HLE-Full; GPT-5.6 Sol leads Terminal Bench 2.1 and GPQA-Diamond.
  • Agent host instability: Long Kimi Code sessions over a sleeping Mac or flaky SSH tunnel waste the 1M context advantage — you need an always-on execution surface.

Most "biggest model" announcements are just more of the same with more compute thrown at them. Kimi K3 introduces three architectural innovations that address real engineering problems at scale.

1. Kimi Delta Attention (KDA): rethinking how Transformers remember

Standard full attention scales quadratically with context length. At 1 million tokens, the KV cache memory consumption alone becomes catastrophic. KDA is a hybrid linear attention mechanism that alternates between cheap linear-attention layers and full-attention layers in a 3:1 ratio:

  • Three linear layers handle local sequence structure efficiently.
  • One full-attention layer preserves global information flow.
  • Result: up to 75% less KV cache memory, up to 6.3x faster decoding at 1M-token contexts.
  • KDA matches or beats full-attention baselines on short-context, long-context, and reinforcement learning tasks — no capability tradeoff.

This is the reason Kimi K3 can offer a genuine 1M-token context window at a flat price, not just a theoretical maximum nobody actually uses.

2. Attention Residuals (AttnRes): fixing information loss across depth

Standard residual connections accumulate representations uniformly across depth — early-layer signals get diluted as you go deeper. AttnRes replaces this with selective retrieval across depth: the model can reach back and pull high-value representations from earlier layers rather than just inheriting whatever was accumulated. The result: approximately 25% higher training efficiency at under 2% additional compute cost.

3. Stable LatentMoE: making extreme sparsity actually work

Kimi K3 activates just 16 out of 896 experts per forward pass — a sparsity of 1.8%. At this level, standard routing strategies break down. Moonshot's fixes:

Stable LatentMoE supporting techniques
Technique Role
Quantile Balancing Derives expert allocation directly from router-score quantiles, eliminating fragile heuristic hyperparameters
Per-Head Muon Optimizes each attention head independently for more adaptive learning at scale
SiTU (Sigmoid Tanh Unit) Improves activation function control
Gated MLA Improves attention selectivity

Together, these advances enable approximately 2.5x better scaling efficiency compared to Kimi K2 — meaning the same compute budget produces a significantly smarter model.

Moonshot published its own benchmarks. The picture is more nuanced than a simple third-place finish — Kimi K3 beats one or both frontier closed-source models on a majority of individual tests.

Coding benchmarks (Moonshot self-reported, July 16, 2026)
Benchmark Kimi K3 Claude Fable 5 GPT-5.6 Sol Claude Opus 4.8
DeepSWE 67.5 70.0 73.0 59.0
Program Bench 77.8 76.8 77.6 71.9
Terminal Bench 2.1 88.3 84.6 88.8 84.6
FrontierSWE 81.2 86.6 71.3 66.7
SWE Marathon 42.0 35.0 39.0 40.0

The most important number here is SWE Marathon — a benchmark designed to measure sustained, long-horizon coding work, not just short task resolution. Kimi K3 leads the field at 42.0, a 3-point gap over GPT-5.6 Sol and 7 points over Claude Fable 5. If your use case involves writing code for hours at a time, this is the benchmark to watch.

Knowledge, reasoning, and vision benchmarks
Benchmark Kimi K3 Claude Fable 5 GPT-5.6 Sol
BrowseComp 91.2 88.0 90.4
Automation Bench 30.8 29.1 29.7
GPQA-Diamond 93.5 92.6 94.1
MMMU-Pro (vision) 81.6 81.2 83.0
OmniDocBench 91.1 89.8 85.8
HLE-Full 43.5 53.3 44.5

On OmniDocBench (document understanding with mixed text, tables, charts, and images), Kimi K3 leads all models — consistent with native vision capabilities and 1M-token context working together.

Overall intelligence index: On Artificial Analysis Intelligence Index v4.1, Kimi K3 scores 57.1, placing it 4th overall:

  1. Claude Fable 5 w/ fallback: 59.9
  2. GPT-5.6 Sol (max): 58.9
  3. GPT-5.6 Sol (xhigh): 57.6
  4. Kimi K3: 57.1

The gap between #1 and #4 is just 2.8 points. For an open-source model competing directly with the best closed-source systems from Anthropic and OpenAI, this is remarkable.

Caveat: These are Moonshot's self-reported benchmarks. Different harnesses were used (Kimi Code for K3, Codex for GPT, Claude Code for Claude). Treat these as directionally useful, not definitive.

Frontier model pricing comparison (July 2026)
Model Input $/1M Output $/1M Cache-hit input Context
Kimi K3 $3.00 $15.00 $0.30 1M tokens
Claude Sonnet 5 (promo) $2.00 $10.00 200K
Claude Sonnet 5 (standard) $3.00 $15.00 200K
Claude Opus 4.8 $5.00 $25.00 200K
GPT-5.5 $5.00 $30.00 400K
DeepSeek V4 Pro $1.74 $3.48 $0.145 128K
Kimi K2.6 $0.95 $4.00 $0.16 256K

Kimi K3 matches Claude Sonnet 5's standard pricing ($3/$15) but delivers 5x the context window. The real kicker is cache-hit economics: Moonshot reports that Kimi Code workflows hit cache at a 90%+ rate thanks to their Mooncake split-inference architecture, which means your effective average input cost can drop to roughly $0.55/M tokens in real usage. OpenRouter's 7-day weighted average confirms this empirically. Compared to Claude Opus 4.8, you get a model that beats it on several benchmarks at 60% of the input cost and 40% of the output cost.

Six-step access guide:

  1. Try it free first: head to kimi.com, sign up with Google. K3 runs at max reasoning effort immediately — no credit card required.
  2. Get an API key: register at platform.kimi.ai and create a Moonshot API key for programmatic access.
  3. Configure OpenAI-compatible client: point your SDK at https://api.moonshot.ai/v1 with model ID kimi-k3.
  4. Or route through OpenRouter: use model ID moonshotai/kimi-k3 at Moonshot's official $3/$15 pricing with no markup and full 1M context.
  5. Optimize for cache hits: structure Kimi Code prompts with stable system prefixes and reusable context blocks to maximize the 90%+ cache-hit rate and drive effective input cost toward $0.55/M.
  6. Bookmark July 27: full model weights land on Hugging Face — mark the date if you plan to self-host or fine-tune (production deployment requires 64+ accelerators).
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 codebase and identify performance bottlenecks..."}
    ]
)
print(response.choices[0].message.content)

Which model to pick by use case
Use case Best pick Why
Long, sustained coding sessions Kimi K3 Leads SWE Marathon; 1M context means no mid-task context loss
Complex bug fixes in large repos Claude Fable 5 SWE-bench Pro advantage is significant
Terminal/tool-heavy agent workflows GPT-5.6 Sol Leads Terminal Bench and Coding Agent Index
Multimodal document analysis Kimi K3 Best OmniDocBench score; native vision + 1M context
Cost-sensitive production use DeepSeek V4 Pro Output at $3.48/M, far cheaper than K3
Open-source self-hosting (post 7/27) Kimi K3 Most capable open weights available
Research requiring deepest reasoning Claude Fable 5 Leads HLE-Full by a wide margin

The open-source promise — what happens on July 27:

When the weights drop on July 27, Kimi K3 will become the largest downloadable open-source model ever released and the first open model above 2 trillion parameters — a new foundation for open-source fine-tuning and research.

  • The model was trained with MXFP4 weights and MXFP8 activations — quantization-aware from the start, designed to run efficiently on modern hardware.
  • Day-0 support in transformers, vLLM, and SGLang is expected, following the precedent set by similar releases.
  • Quantized variants (MXFP4/NVFP4) will appear on Hugging Face shortly after the full-weight drop.
  • Production deployment requires a supernode with 64+ accelerators — this is a model for inference providers and well-resourced research labs, not a laptop LLM.

Dates to bookmark:

  • Right now — try K3 at kimi.com for free.
  • July 17–20 — WAIC Shanghai (expect more announcements).
  • July 27 — full model weights released on Hugging Face.

Is Kimi K3 available for free?

Yes — on kimi.com with a free account. API usage requires a paid API key with pay-per-token pricing ($3/$15 per 1M tokens).

Can I run Kimi K3 locally?

Not yet — the model weights will be released on July 27, 2026. When they are, you will need 64+ accelerators (e.g., NVIDIA H100s) for production inference. Consumer-grade local deployment is not practical at 2.8T parameters.

How does Kimi K3 compare to DeepSeek V4 Pro?

K3 has nearly double the parameters (2.8T vs 1.6T), significantly larger context (1M vs 128K tokens), and stronger benchmark scores across coding and reasoning — but DeepSeek V4 Pro is substantially cheaper ($3.48 vs $15 per million output tokens).

Is the 1M token context window actually useful?

Yes, particularly for analyzing entire codebases in one call, processing lengthy research papers or legal documents end-to-end, and multi-session conversational agents that maintain long memory. The flat pricing (no length surcharge) makes it practical to actually use the full window.

When are low/high reasoning effort modes coming?

Moonshot says low and high effort modes are coming in subsequent updates. Currently only max is available.

Bottom line: Kimi K3 is the most capable open-source AI model ever released. It does not win every benchmark — Claude Fable 5 and GPT-5.6 Sol still lead on specific coding and reasoning tasks — but it is competitive across the board, outperforms them on long-horizon coding and document understanding, and ships with a 1M-token context window that its closed-source competitors cannot match at this price. The full open-weight release on July 27 is the story to watch.

Primary references — re-open links after upstream updates:

Moonshot AI official blog: Kimi K3 announcement

Kimi API Platform documentation

Artificial Analysis Intelligence Index v4.1

OpenRouter: moonshotai/kimi-k3 pricing

Benchmarks are self-reported by Moonshot AI as of July 16, 2026. Additional coverage: MarkTechPost, VentureBeat, SCMP, OrcaRouter.

If you tie long-horizon Kimi Code agent loops, multi-model routing, and codebase analysis entirely to a laptop that sleeps or a flaky SSH session, a single context-window reset or host dropout wastes hours of 1M-token work. API savings from cache hits do not help when your execution surface is unstable.

For teams running 24/7 Kimi Code sessions, Cursor agents, and multi-model API routing on Apple Silicon, moving agent loops and IDE automation to dedicated bare-metal Mac Mini hosts is usually more predictable than firefighting on unstable local machines: NOVAKVM offers multi-region Mac Mini M4 / M4 Pro with flexible terms, fixed bandwidth, and default SSH — suited for AI agent automation and iOS CI/CD on the same machine. See pricing, order, and help center.