# Atlas with Kimi K2 0711: The Original Trillion-Parameter Preview in 2026

> Kimi K2 0711 is a 1T-parameter model with 32B activated per token, priced at $0.60 per Mtok input with a 128K tokens (131,072) context.

Kimi K2 0711 is the original K2 preview from July 2025 and the first trillion-parameter-class open model that was actually good at agentic tool use. Inside Atlas it costs $0.60 per Mtok input and $2.50 per Mtok output, with a 131,072 token context. Its limits give it away as the first cut: a 16,384 output cap, well under every K2 that followed, so keep edits scoped to a few files per turn.

## Key takeaways

- Kimi K2 0711 costs $0.60 per Mtok input and $2.50 per Mtok output, with a 128K tokens (131,072) context.
- 1T total parameters with 32B activated per token across 384 experts, 8 routed plus 1 shared, trained with the Muon optimizer.
- The 16,384 max output cap is the tightest in the K2 family, against 262,144 output on K2 0905.
- Open weights at moonshotai/Kimi-K2-Instruct keep this July 2025 preview checkpoint reproducible even though Moonshot's API has moved on.
- Kimi K2 0711 is non-reasoning, and later K2 checkpoints beat it on nearly every agentic benchmark at the same or lower price.

## What is Kimi K2 0711 and why did it matter?

Kimi K2 0711 is Moonshot AI's original K2 preview from July 2025, and the first trillion-parameter-class open model that was actually good at agentic tool use. The architecture is 1T total parameters with 32B activated per token across 384 experts, 8 routed plus 1 shared, trained with the Muon optimizer.

Kimi K2 0711 defined an architecture that the entire K2 line still runs on: 1T total parameters with 32B activated per token across 384 experts, 8 routed plus 1 shared, trained with the Muon optimizer. Before it, open models were either small enough to self-host or bad at holding a tool-calling loop together. K2 0711 was the first trillion-parameter-class open model that was actually good at agentic tool use, and $0.60/Mtok input for a trillion-parameter-class model was the price shock that made open agentic models viable. Inside Atlas, agentic tool use is not a feature, it is the whole surface: every Atlas tool call is permission-gated against allow, ask, and deny rules before it runs, and a model that emits well-formed tool calls is the baseline requirement.

## What does the 16,384 output cap mean for Atlas edits?

Kimi K2 0711 has a 16,384 max output token cap, the tightest in the K2 family, so large multi-file generations get truncated where K2 0905, at 262,144 output, would not. Inside Atlas that means scoping edits to a few files per turn.

The 16,384 output cap is the defining constraint of Kimi K2 0711 and the clearest sign it was a first cut. Sixteen thousand tokens is enough for a focused change and not enough for a generated service. Large multi-file generations get truncated where K2 0905, at a 262,144 output ceiling, would not. The working pattern that Moonshot documents for Atlas is direct: because of the 16,384 output cap, keep Atlas edits scoped to a few files per turn and lean on the unified-diff review between rounds. Atlas computes a unified diff for every file edit and surfaces it for approval before writing, so a multi-round approach is not a workaround, it is the normal Atlas rhythm. You just cannot skip rounds on this model.

## How much does Kimi K2 0711 cost and is it worth it in 2026?

Kimi K2 0711 costs $0.60 per Mtok input and $2.50 per Mtok output. That is identical to Kimi K2 0905, which carries a 262,144 token context and a 262,144 output ceiling, so K2 0711 is not the value pick on price alone in 2026.

Kimi K2 0711 lists $0.60 per Mtok input and $2.50 per Mtok output. When it launched, $0.60/Mtok input for a trillion-parameter-class model was the price shock that made open agentic models viable. In 2026 the pricing is no longer differentiating, because later K2 checkpoints hold the same rates with better limits. The honest assessment: K2 0711 is non-reasoning, and later K2 checkpoints beat it on nearly every agentic benchmark at the same or lower price. What K2 0711 still has is reproducibility. The open weights at moonshotai/Kimi-K2-Instruct mean this exact preview checkpoint stays reproducible even though Moonshot's API has moved on, which is a real reason to pin it for a benchmark or a paper.

## When should you pick a newer K2 over Kimi K2 0711?

Pick Kimi K2 0905 over Kimi K2 0711 for almost any Atlas work in 2026. Both cost $0.60 per Mtok input and $2.50 per Mtok output, but K2 0711 caps output at 16,384 tokens and holds 131,072 of context, while later checkpoints beat it on nearly every agentic benchmark.

The argument for moving off Kimi K2 0711 is that nothing is gained by staying. K2 0711 is non-reasoning, and later K2 checkpoints beat it on nearly every agentic benchmark at the same or lower price, while the 16,384 max output cap actively limits what a single Atlas turn can produce. The only reason to run K2 0711 deliberately in 2026 is that you want this exact checkpoint: the open weights at moonshotai/Kimi-K2-Instruct keep the July 2025 preview reproducible, which matters for a controlled comparison. Atlas lets you switch the active model and provider on the fly with favorites and recents, so keeping K2 0711 in the rotation as a fixed reference point while a newer model does the daily work costs nothing.

## How do you configure Atlas to use Kimi K2 0711?

Configuring Atlas for Kimi K2 0711 takes three steps in 2026: get a Moonshot key and export MOONSHOT_API_KEY, run `atlas models moonshotai` and confirm `kimi-k2-0711-preview` appears, then set `"model": "moonshotai/kimi-k2-0711-preview"` in atlas.json.

Kimi K2 0711 authenticates through Moonshot AI. Get a Moonshot key, then export MOONSHOT_API_KEY or run `atlas login` and select Moonshot AI to store it in Atlas's credential store. Run `atlas models moonshotai` and confirm `kimi-k2-0711-preview` appears in the registry, then set `"model": "moonshotai/kimi-k2-0711-preview"` in atlas.json. The operational rule follows from the output cap: because of the 16,384 output cap, keep Atlas edits scoped to a few files per turn and lean on the unified-diff review between rounds. Atlas snapshots file changes as git patches so edits can be diffed and rolled back, which means an over-ambitious turn that truncates mid-file is a rollback, not a cleanup job.

## Setup

1. Get a Moonshot key, then export MOONSHOT_API_KEY or run `atlas login` and select Moonshot AI.
2. Run `atlas models moonshotai` and confirm `kimi-k2-0711-preview` appears.
3. Set `"model": "moonshotai/kimi-k2-0711-preview"` in atlas.json.
4. Because of the 16,384 output cap, keep Atlas edits scoped to a few files per turn and lean on the unified-diff review between rounds.
5. Keep a newer checkpoint favorited in the TUI, since later K2 checkpoints beat K2 0711 on nearly every agentic benchmark at the same or lower price.

## FAQ

### How much does Kimi K2 0711 cost per million tokens?

Kimi K2 0711 is $0.60 per Mtok input and $2.50 per Mtok output. That was the price shock that made trillion-parameter-class open agentic models viable when it launched.

### What is Kimi K2 0711's context window?

Kimi K2 0711 has a 128K tokens (131,072) context window and a 16,384 max output token cap, the tightest in the K2 family.

### How do I run Atlas on Kimi K2 0711?

Get a Moonshot key, export MOONSHOT_API_KEY or run `atlas login` and select Moonshot AI, confirm `kimi-k2-0711-preview` appears with `atlas models moonshotai`, then set `"model": "moonshotai/kimi-k2-0711-preview"` in atlas.json.

### How many parameters does Kimi K2 have?

Kimi K2 0711 has 1T total parameters with 32B activated per token across 384 experts, 8 routed plus 1 shared, trained with the Muon optimizer. That architecture defined the whole K2 line.

### Why does Kimi K2 0711 truncate my generated code?

The 16,384 max output token cap is the tightest in the K2 family, so large multi-file generations get truncated. Keep Atlas edits scoped to a few files per turn and use the unified-diff review between rounds.

### Kimi K2 0711 vs K2 0905: which should I use?

K2 0905 for nearly any work. Both are $0.60 per Mtok input and $2.50 per Mtok output, but K2 0905 raises the output ceiling to 262,144 tokens against K2 0711's 16,384.

### Is Kimi K2 0711 a reasoning model?

No. Kimi K2 0711 is non-reasoning. It was strong at agentic tool use for its time, but later K2 checkpoints beat it on nearly every agentic benchmark at the same or lower price.

---

Canonical HTML: https://runatlas.sh/resources/models/kimi-k2-0711
Source of truth: aeo_pages row `/resources/models/kimi-k2-0711` (segment: Models) (this file is generated from it, never hand-edited).
Licence: Atlas is proprietary with a free core. It is not open source and there is no public source repository.
