Open models, explained.

Which open model is best for your use case, what it costs, and how it compares to closed models.

Pick by use case

One index hides the fit. Choose what you are building; the answer and the evidence follow.

Which model should power our coding agent?

42 models scored · 3 measures · Artificial Analysis

Open pick
Kimi K376

$0.84 per task · 93% of the leader's score for 72% less

Best value
MiMiMo-V2.557

$0.01 per task · 75% of the open pick, 1% of the cost

To beat
Claude Fable 5.182

$3.69 per task · 5.4 points ahead of the open pick

Open sourceClosed
Score breakdownAA Coding Index · Terminal-Bench 2.1 · SciCode
ModelScoreCost / taskAA Coding IndexTerminal-Bench 2.1SciCode
Claude Fable 5.1
81.6$3.6981.691.462.0
Claude Opus 5
78.0$2.3478.089.155.7
GPT-5.6 Sol
77.4$0.9577.488.056.1
GPT-6 Astra
76.9$1.6776.988.454.1
Grok 4.6
76.8$0.9476.888.453.6
GPT-5.6 Terra
76.7$0.5376.788.053.9
Claude Fable 5
76.5$3.1476.584.660.2
Gemini 3.8 Flash
76.3$0.5876.387.653.6
Kimi K3
76.2$0.8476.285.058.7
Gemini 3.7 Flash
76.1$0.4076.185.856.8

Best result per column is underlined. A “·” means Artificial Analysis has not run that measure against the model; it is left as a gap, never counted as a zero.

Every model, ranked

The whole field on one index. Sort, filter, click to inspect.

Artificial Analysis Intelligence Index

Composite of nine public evals: agents, coding, reasoning, knowledge · Higher is better

Open sourceClosed
Click a bar to inspect
top 18 of 42 shown · full list belowAttributedArtificial Analysis v4.1.1

Leaderboard

Model
1
Claude Fable 5.1
Anthropic
660.8$8.5K
2
Claude Opus 5
Anthropic
631.6$3.8K
3
Claude Fable 5
Anthropic
621.1$5.5K
4
GPT-6 Astra
OpenAI
612.0$3.0K
5
GPT-5.6 Sol
OpenAI
613.0$2.0K
6
Grok 4.6
xAI
615.3$1.2K
7
Kimi K3
Moonshot (Kimi)
602.5$2.4K
8
Z
GLM-5.3
Z.ai (GLM)
604.8$1.2K
9
Gemini 3.8 Flash
Google
597.1$826
10
Qwen3.8 Max
Alibaba (Qwen)
583.8$1.5K

Kimi K3

Moonshot (Kimi) · Kimi K3 License · 2800B · 104B active
open
Intelligence Index60
Intel / $1002.5
Cost per task
$0.84
Full index run
$2.4K
Price in / out
$3.00 / $15.0
Cached input
10x cheaper$0.30
Speed
1.01s TTFT62 t/s
Context
1.0M
Capability breakdown0 to 100
Coding
76
Agents
54
GPQA
94
HLE
47
Long context
83
moonshotai/Kimi-K3Run it

The state of open, at a glance

Who is smartest, and who gives the most per dollar.

Open sourceClosed

Intelligence

Artificial Analysis Intelligence Index · Higher is better

Value

Index points per $100 of run cost · models scoring 50+

Kimi K3 is 6 points behind Claude Fable 5.1 on the Intelligence Index, holding 91% of the top score. In 2025 that gap was 11.2 points, and it has narrowed since.

Kimi K3
Open source · 60
vs
Claude Fable 5.1
Closed · 66

Run the open frontier yourself

Same OpenAI-compatible API, open source weights you keep, at a fraction of closed-API cost. The snippet is pointed at Kimi K3, the highest-scoring open model Together serves today and the open leader overall.

Copied
# uv add together
from together import Together
client = Together()
response = client.chat.completions.create(
model="moonshotai/Kimi-K3",
messages=[{"role": "user", "content": "What are the top 3 things to do in New York?"}],
)
print(response.choices[0].message.content)