• Compute
  • Customers
  • Pricing
Sign In
More Blog Posts
XDiscordLinkedInYouTube

Products

  • GPUs
  • Inference
  • Studio

Developers

  • Model library
  • Documentation
  • Glossary

Company

  • About Us
  • Blog
  • Events
  • Partnership
  • Scale
  • Career
  • Ambassador program
  • Mission & Vision

Popular models

    Stay in the loop

    By submitting, you acknowledge that we may collect and use the information you provide, which may include personal information.

    XDiscordLinkedInYouTube

    Copyright ©2026 All rights reserved.

    Privacy PolicyTerms of UseLegal Documentation
    More Blog Posts

    Kimi K3: What the New Frontier Open-Source Coding Model Means for Production Inference

    August 10, 2026

    Kimi K3 landed on July 16, 2026, and the open weights followed on July 27 as promised. At 2.8 trillion total parameters with 896 experts and 16 active per token, it is the largest open-weight model ever released and the first to reach the 3-trillion-parameter class. The headline numbers matter less than two specific properties: a 1-million-token context window backed by a new attention architecture that makes long-context serving economically viable, and MXFP4 quantization-aware training that makes the 2.8-trillion-parameter model serve at costs that would be impossible with a naive full-precision deployment.

    For teams building production AI inference, K3 changes the calculus on what open-weight models can do at the frontier. It also introduces infrastructure requirements and deployment tradeoffs that are different from any prior open-weight release.

    • 2.8 trillion total parameters, approximately 50 billion active per token. K3's Mixture-of-Experts architecture activates 16 of 896 experts per forward pass. The active parameter count per token is roughly 50 billion, which determines inference speed. The full weight matrix is 1.56 TB at MXFP4, which determines hardware requirements.
    • 76.8 percent on SWE-bench Verified, #1 on Frontend Code Arena. K3 leads open-weight models on the two most cited coding benchmarks. On DeepSWE with the mini-SWE-agent harness, K3 achieves 67.3 percent. The harness caveat is real: different evaluation harnesses can swing coding scores by 10 to 26 points.
    • Kimi Delta Attention (KDA) is the key architectural innovation for production inference. KDA is a hybrid linear attention mechanism that enables the 1-million-token context window at reasonable throughput. It also requires a modified prefix caching implementation, and Moonshot contributed a KDA-compatible prefill caching build to vLLM alongside the weights release.
    • Self-hosting requires 64 or more accelerators. Moonshot recommends supernode configurations of 64-plus GPUs for production deployment. The full 1.56 TB MXFP4 weight matrix means the minimum practical production configuration is a large multi-node GPU cluster. For most teams, the realistic K3 path is API access rather than self-hosting.
    • API pricing is $3.00 per million input tokens and $15.00 per million output tokens, with cache-hit inputs at $0.30 per million. The 10x cache discount is significant for K3 specifically: with a 1M token context window, long shared prefixes are common in agentic and RAG workflows.
    • GMI Cloud provides the dedicated multi-GPU H100 and H200 cluster infrastructure for teams that need self-hosted K3 deployment with US data residency, full serving stack control, and bare metal NVLink connectivity at $2.00/hr H100 and $2.60/hr H200.

    What Kimi K3 Actually Is

    K3 builds on Moonshot AI's established MoE trajectory, scaling from K2.6's 1T total parameters to 2.8T while introducing two architectural innovations designed specifically for frontier-scale long-context inference.

    Kimi Delta Attention (KDA). KDA is a hybrid linear attention mechanism that replaces standard softmax attention for a portion of the model's layers. Standard softmax attention has quadratic complexity in sequence length, meaning it becomes increasingly expensive as context grows toward 1 million tokens. KDA's hybrid design reduces this complexity while preserving the information flow properties needed for complex reasoning tasks. The tradeoff is that KDA requires a modified prefix caching implementation: standard vLLM prefix caching does not handle KDA's attention patterns correctly, which is why Moonshot contributed a KDA-specific implementation to the vLLM community alongside the weights.

    Attention Residuals. Attention Residuals is a complementary architectural technique designed to improve information flow through deep models with long sequences. Deep networks can lose information from early context tokens as that information propagates through many layers. Attention Residuals maintain skip connections specifically tuned to preserve long-range dependencies.

    Stable LatentMoE. K3's expert routing uses Stable LatentMoE, a framework designed to prevent expert imbalance at large expert-parallel scales. Standard MoE routing can create load imbalance where some experts are heavily used and others are nearly idle, degrading throughput in distributed serving. Stable LatentMoE enforces balanced routing with static shapes and no host synchronization on the critical path, specifically designed for the 64-plus-accelerator supernode deployment that K3 targets.

    Quantization-aware training from SFT. K3 applies MXFP4 quantization from the supervised fine-tuning stage, not as a post-training compression step. MXFP4 weights with MXFP8 activations produce the 1.56 TB full model size. This quantization-aware approach preserves quality that post-training quantization would lose, enabling K3 to deliver frontier-level performance at a weight footprint that would otherwise require FP16 storage of around 5.6 TB.

    K3 Benchmark Performance: What It Means for Production

    K3 leads the open-weight field on coding benchmarks and ranks among the top five across all categories as of August 2026.

    SWE-bench Verified: 76.8 percent. SWE-bench Verified contains 500 real GitHub issues from Python repositories. K3's 76.8 percent is the highest published score among open-weight models and places K3 above all prior open-weight releases on this benchmark. For production Python coding agents, SWE-bench Verified is the most directly relevant quality signal available.

    DeepSWE: 67.3 percent (mini-SWE-agent harness). DeepSWE is a harder variant designed to resist harness-specific optimization. K3's 67.3 percent with the standard mini-SWE-agent harness (versus 67.5 percent with Moonshot's Kimi Code harness) indicates performance that is consistent across evaluation setups.

    Frontend Code Arena: #1. K3 tops the Frontend Code Arena Elo ranking, reflecting strong performance on web development and UI code generation tasks.

    HLE: 56.0 percent with tools. K3 scores 56 percent on Humanity's Last Exam when tool use is enabled, placing it below the top proprietary models on the hardest reasoning benchmark. K3's relative strength is in long-context agentic coding; its relative weakness is in single-shot hard reasoning problems.

    BenchLM ranking: #5 of 215, #4 in Agentic category. The aggregated score of 79.9 out of 100 across 39 verified benchmark rows places K3 fifth overall among all models and fourth in the Agentic category. For teams building coding agents and browser-based workflows, the #4 Agentic ranking is the most directly relevant signal.

    The harness caveat. Different evaluation harnesses can produce score differences of 10 to 26 points on the same model. Moonshot's published benchmark table mixes Kimi Code, Claude Code, Codex, and mini-SWE-agent harnesses across comparison models. The cleanest cross-model comparison comes from Artificial Analysis, which tests all models on the same harness under the same conditions.

    Hardware Reality for Production Inference

    K3's 2.8T parameter scale creates hardware requirements that are categorically different from any prior open-weight model.

    Full model at MXFP4: 1.56 TB. Loading the full model requires at least 1.56 TB of GPU VRAM across the cluster. At 80 GB per H100 SXM, that is a minimum of 20 H100s for weight storage alone, with no room for KV cache or activations at that minimum.

    Moonshot's production recommendation: 64-plus accelerators. The supernode recommendation is driven by Stable LatentMoE balanced expert-parallel routing and KV cache requirements for long-context serving. At 64 H100 SXM GPUs (5,120 GB total VRAM), the weight matrix occupies 30 percent of available VRAM, leaving 3,584 GB for KV cache and activations, supporting meaningful concurrent long-context sessions.

    The inference economics of 50 billion active parameters. K3's active parameter count per token is approximately 50 billion. Token generation speed is determined by the speed of routing and computing 16 experts, not the full 2.8T parameters. K3's throughput per GPU-hour is meaningfully higher than a dense 2.8T model would produce, though lower than a dense 50B model because expert dispatch across a large cluster adds latency that a single-GPU dense model does not incur.

    KDA and Prefix Caching: The Infrastructure Detail That Matters

    Kimi Delta Attention's hybrid linear architecture creates a specific challenge for production inference that teams planning K3 deployment must address before launch.

    Standard prefix caching in vLLM stores the KV cache for repeated prompt prefixes and reuses that cache across requests sharing the same prefix. KDA's hybrid linear attention mechanism produces attention states computed differently from standard softmax attention, and the standard prefix caching implementation cannot correctly reuse KDA attention states.

    This matters most for K3's primary use cases: long-context agentic workflows where a shared system prompt or document context is sent with many requests, and RAG pipelines where retrieved documents represent a large shared prefix. Without KDA-compatible prefix caching, these workflows pay full prefill cost on every request rather than the cache-hit rate of $0.30/M tokens.

    Moonshot contributed a KDA-compatible prefill caching implementation to vLLM alongside the model weights. Teams self-hosting K3 must use this KDA-compatible vLLM build rather than the standard release. For API users, the $0.30/M cache-hit pricing confirms that KDA-compatible caching is operational in the managed serving infrastructure.

    API vs Self-Hosted: The K3 Deployment Decision

    Official Kimi API. Model ID kimi-k3, pricing $3.00/M input, $15.00/M output, $0.30/M cache-hit input. Always-on thinking mode with reasoning_effort parameter. The managed API is the correct path for most teams. The data residency caveat is identical to other Chinese lab APIs: Moonshot AI is subject to Chinese data law, making the official API non-viable for HIPAA, GDPR, or government workloads.

    Third-party managed APIs. K3 is available through OpenRouter and OrcaRouter, with US-hosted providers adding K3 as weights availability enables deployment. For US data residency requirements, US-hosted third-party providers resolve the data sovereignty concern while maintaining managed API simplicity.

    Self-hosted on dedicated GPU infrastructure. For enterprise teams with data governance requirements that no managed API satisfies, self-hosted K3 on dedicated GPU clusters is the path. The 64-plus accelerator requirement means this is viable primarily for enterprises with existing GPU infrastructure or teams that can procure a multi-node cluster.

    GMI Cloud's dedicated H100 and H200 clusters provide the infrastructure layer for self-hosted K3 deployment. H200 SXM at $2.60/hr with NVLink 4.0 (900 GB/s) provides the high-bandwidth inter-GPU connectivity that Stable LatentMoE expert-parallel routing requires. The KDA-compatible vLLM build deploys on GMI's bare metal nodes with pre-installed CUDA 12.x. For teams in APAC markets, GMI Cloud's infrastructure across Tokyo, Singapore, and Taiwan provides regionally compliant self-hosted deployment.

    Kimi K3 vs the Open-Weight Landscape

    vs Kimi K2.6 (1T total / 32B active, 8x H100 minimum): K3 substantially outperforms K2.6 on coding benchmarks (76.8% vs 58.6% on SWE-bench) while requiring roughly 8 times more GPU infrastructure. For most teams currently running K2.6 Agent, the managed API is the more practical upgrade path than self-hosted migration.

    vs GLM-5.1 (754B total / 40B active): K3 leads GLM-5.1 on most coding benchmarks, particularly SWE-bench Verified and Frontend Code Arena. GLM-5.1 remains competitive and has lower self-hosting requirements (8x H200 versus K3's 64-plus accelerators), making it the more practical choice for teams requiring self-hosted frontier coding without multi-node cluster infrastructure.

    vs DeepSeek V4 Pro (1.6T total / 49B active, 1M context): K3 and DeepSeek V4 Pro are the two largest open-weight MoE releases. K3 leads on coding benchmarks; DeepSeek V4 Pro has broader benchmark coverage and a longer community deployment track record. Both require multi-node cluster infrastructure for self-hosting.

    Conclusion

    Kimi K3 is the most capable open-weight coding model available as of August 2026. Its 76.8 percent SWE-bench Verified score, #4 Agentic ranking, and 1M context window with cache-aware pricing make it the natural choice for production coding agents, long-horizon agentic workflows, and RAG pipelines where frontier-level coding capability and open weights are both requirements.

    The infrastructure reality is equally clear: self-hosting at production throughput requires 64-plus accelerators, a KDA-compatible vLLM build, and multi-node NVLink infrastructure. For most teams, the Kimi API or a US-hosted third-party managed endpoint is the practical path. For enterprise teams with data sovereignty requirements, GMI Cloud's dedicated H100 and H200 clusters provide the infrastructure for compliant self-hosted K3 deployment.

    FAQs

    What are the actual hardware requirements for self-hosting Kimi K3 in production? The full MXFP4 weight file is 1.56 TB across 96 shards. Moonshot recommends supernode configurations of 64 or more accelerators for production deployment, driven by KV cache headroom for long-context serving and Stable LatentMoE expert-parallel routing efficiency. Teams below 64 GPUs can explore lower-concurrency configurations, but no minimum specification has been published.

    What is Kimi Delta Attention and why does it matter for production inference? KDA is a hybrid linear attention mechanism that enables K3's 1M token context window at reasonable throughput. Because KDA's attention patterns differ from standard softmax attention, conventional vLLM prefix caching does not work correctly with it. Moonshot contributed a KDA-compatible prefill caching implementation to vLLM alongside the weights. Teams must use this build for correct prefix cache behavior and to access the $0.30/M cache-hit pricing benefit.

    When does self-hosting K3 become more cost-efficient than the API? At $2.60/hr per H200 across a 64-GPU cluster, the monthly infrastructure cost exceeds $120,000. This is only recouped at very high sustained token volume and utilization. For most teams, the API at $3.00/M input and $15.00/M output is more economical unless specific data governance requirements mandate self-hosting.

    How does K3 compare to K2.6 for production agentic coding? K3 substantially outperforms K2.6 on coding benchmarks: 76.8 percent versus 58.6 percent on SWE-bench, and a larger 1M versus 256K context window for long-horizon tasks. The infrastructure gap is significant: K2.6 requires 8x H100 minimum; K3 requires 64-plus accelerators. For teams currently running K2.6 Agent, the managed API is the more practical upgrade path.

    What data residency options exist for enterprise K3 deployment? The official Kimi API routes through Moonshot AI's infrastructure subject to Chinese data law, making it non-viable for HIPAA, GDPR, and government workloads. US-hosted third-party managed providers (OpenRouter, OrcaRouter, and others adding K3) resolve US data residency requirements. For teams requiring full data isolation, self-hosted K3 on GMI Cloud's dedicated GPU clusters in the US or APAC provides region-pinned single-tenant infrastructure backed by the KDA-compatible vLLM serving stack.

    Build AI Without Limits

    GMI Cloud helps you architect, deploy, optimize, and scale your AI strategies

    FAQ

    The full MXFP4 weight file is 1.56 TB across 96 shards. Moonshot recommends supernode configurations of 64 or more accelerators for production deployment, driven by KV cache headroom for long-context serving and Stable LatentMoE expert-parallel routing efficiency. Teams below 64 GPUs can explore lower-concurrency configurations, but no minimum specification has been published.

    Ready to build?

    Explore powerful AI models and launch your project in just a few clicks.

    Get Started