Kimi K3 Is Here to Topple GPT and Claude. Is It That Good?
Kimi K3 Just Dropped 2.8 Trillion Parameters on the Industry, and Developers Are Already Divided. We Broke Down Every Number That Matters
July 17, 2026
.png)
Moonshot AI just released Kimi K3, which is the biggest open-weight model ever from China, a 2.8 trillion parameter Mixture of Experts model with a 1 million token context window, built-in vision and reasoning optimized for maximal utilization right out of the box. API goes live today; the weights will be available July 27. What’s new, what’s the community saying after 1 day of using it, and one demo using its prompting guide.
What Kimi K3 Is
Kimi K3 is Moonshot AI's third-generation flagship, following the K2 family that shipped from K2 in July 2025 through K2.6 and K2.7 Code earlier this year. It was first spotted leaking through Moonshot's own API platform and an LMArena stealth listing under the codename "Kivine" before the official launch on July 16, 2026. The Financial Times had reported Moonshot was building K3 to close the gap with closed frontier models like Anthropic's Opus 4.8, and the launch numbers back that framing up.
Architecture: What Changed Under the Hood
K3 is a MoE model with 2.8 trillion total parameters, activating 16 of 896 experts per token. That's a meaningfully different routing shape than K2.6, which used 384 experts with 8 routed plus 1 shared per token. The headline spec, though, is context: 1,048,576 tokens, four times larger than K2.6's 256K window. Native visual input is built in rather than bolted on, and reasoning runs at max effort as the default mode instead of a toggle.
Spec | Kimi K2.6 | Kimi K3 |
|---|---|---|
Total parameters | 1 trillion | 2.8 trillion |
Active experts per token | 8 routed + 1 shared (of 384) | 16 of 896 |
Context window | 256K tokens | 1,048,576 tokens |
Weight release | Same-day open weights | API live now, full weights by July 27 |
Vision | MoonViT encoder, 400M params | Native multimodal input |
Moonshot is calling K3 "open," but the weight drop is staggered. The API and pricing are live; the downloadable checkpoint is still a date on a roadmap until it lands on Hugging Face.
Benchmarks, With the Caveats That Matter
Kimi K3 is already showing up near the top of early benchmark coverage, with strong results across coding, agentic tasks, and long-context evaluation.

Here's the part worth sitting with: K3 still sits unranked on the standardized intelligence indexes from Artificial Analysis and Vals, since its coding benchmarks mix proprietary harnesses (DeepSWE, Program Bench, SWE Marathon) that map loosely onto SWE-Bench Pro and LiveCodeBench.
Its #1 spot on Arena's Frontend Code leaderboard tells a different story, head-to-head human preference rather than standardized scoring, so treat the full picture as still forming until the technical report and full weights land.
Pricing
K3 runs at $3.00 per million input tokens, $0.30 per million cached input tokens, and $15.00 per million output tokens, with pricing on this hosted deployment reflecting a 262,144-token context window, while Moonshot's full spec supports up to 1,048,576 tokens. That's a notably different pricing shape than K2.6's roughly $0.95 input and $4.00 output rate, reflecting the jump in model size.
What the Community Is Saying
Launch day was active even by Kimi standards, with leaks and countdown posts filling r/LocalLLaMA and r/kimi for days beforehand. One influential Reddit post from late March had predicted K2.6 would ship as an incremental update while "K3 is being worked on and the goal will be to match" frontier closed models, a call that largely held up.
Early hands-on reaction has been mixed, as it tends to be with any major launch. One of the first detailed posts on r/kimi noted: "The Kimi K3 is good... but it's not that much better than the Kimi K2.7," and flagged something worth tracking at scale, quota use, noting it "consumes about 6% of the weekly quota per hour" under sustained load, useful context for teams running agentic workloads rather than one-off chats.
Testers who followed K3 through its LMArena stealth phase under the "Kivine" codename also noticed a familiar K2 trait: in head-to-head tasks against Claude Fable 5, the suspected K3 build "chased complexity and visual ambition," taking a bolder approach even as a competing model landed a faster result, a pattern worth understanding as teams shape how they use K3 in production.
A Developer's Take
The spec sheet is impressive, but the number that should change how anyone builds is the context window, not the parameter count. A larger expert count sounds dramatic; a 4x jump from 256K to 1M tokens is the number that lets someone stop chunking a codebase, stop summarizing a document before handing it to the model, and stop writing retrieval logic just to fit inside a context budget. That's a workflow shift.
The staggered weight release deserves a flag too. Moonshot has trained developers to treat "open" as "same-day open," and K3 breaks that pattern with an API-now, weights-by-July-27 split. If a self-hosting plan depends on K3, the sensible move is to build against the hosted API now and treat the July 27 weight drop as a separate milestone to confirm.
The most useful early signal goes beyond a benchmark: it's the quota-consumption complaint from early testers. Any model that can burn 6% of a weekly allowance in an hour of agentic use is worth pairing with its own cost-monitoring dashboard before it goes anywhere near a production loop.
Tips for Prompting Kimi Models Well
Today's live session put these habits to the test on something visual: a flight-tracking globe rebuilt piece by piece against K3, following the same file-by-file rhythm Moonshot's own docs recommend for the K2 lineage. Geometry came first, then the earth sphere with its atmosphere and stars, then a live data feed, then the render loop, then the interactive layer, then one final pass wiring all five pieces together, with each file checked on its own before the model touched the next one, since an agentic model this capable will quietly paper over a broken dependency rather than flag it, and that single habit is worth keeping long after the demo ends.
The principles underneath that build come straight from Moonshot's own documentation and from months of community testing on the K2 line, and they carry forward cleanly to K3 since both share the same instruction tuning and the same OpenAI-compatible surface:dev
Think in goals, not steps. State the objective and let the model choose its own path instead of scripting every move for it.
Assign a role before anything else. Opening with "You are a senior [X]" locks the model into a tighter expert frame and sharpens the output noticeably.
Separate sections with delimiters. XML-style tags around context, constraints, and output let the model treat each block on its own terms instead of blending instructions together.
Phrase requests positively. "Use named exports" beats "don't use default exports" nearly every time.
Name the exact deliverable. One file, clean formatting, whatever the constraint happens to be, state simple.
Keep the system prompt plain. "You are Kimi, an AI assistant created by Moonshot AI" fits the model's tuning better than an elaborate custom setup.
Run code generation at temperature 0.6. That setting has been the reliable sweet spot across the K2 line and a sensible starting point for K3 until Moonshot's own technical report says otherwise.
Treat the model as an agent with its own initiative. It can chain hundreds of tool calls on its own, so hand over one complete goal per session and let it run rather than checking in after every step.
Try It on GMI Cloud
Kimi K3's OpenAI-compatible API means any team already calling an LLM endpoint through GMI Cloud's serverless inference can swap in K3 with a one-line model change, the same pattern GMI has used for the entire Kimi K2 lineage.
Start with the playground at console.gmicloud.ai to run a prompt with zero setup, move to the serverless API for pay-as-you-go testing, and benchmark the workload itself, token usage, latency, and cost, before committing to a dedicated deployment
Roan Weigert
DevRel @ GMI Cloud
Build AI Without Limits
GMI Cloud helps you architect, deploy, optimize, and scale your AI strategies
