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 is smartest overall?

71 models scored · AA Intelligence Index, with 12 measures beneath it · Artificial Analysis

Open pick
ZGLM-5.345

$2.01 per task · 84% of the leader's score for 81% less

Best value
ZGLM-5.3-Flash42

$0.25 per task · 93% of the open pick, 11% of the cost

To beat
Claude Fable 5.153

$7.63 per task · 8.5 points ahead of the open pick

Open sourceClosed
Score breakdownAA-Briefcase · GDPval-AA v2 · Terminal-Bench 4.0 · SciCode · Humanity's Last Exam · CritPt · GDP.pdf · Omniscience accuracy · Not guessing · AutomationBench-AA · AA-LCR v1.1 · GPQA Diamond
ModelScoreCost / taskAA-Briefcase15%GDPval-AA v210%Terminal-Bench 4.010%SciCode10%Humanity's Last Exam10%CritPt10%GDP.pdf10%Omniscience accuracy10%Not guessing5%AutomationBench-AA5%AA-LCR v1.15%GPQA Diamond
Claude Fable 5.1
53.4$7.6358.163.252.063.159.129.726.267.227.459.485.393.7
GPT-6 Astra
52.8$3.2653.154.059.156.554.731.731.062.648.768.580.796.1
Claude Opus 5
50.7$5.8657.261.849.056.454.929.121.660.939.256.679.393.2
Claude Fable 5
49.7$8.7551.556.642.461.055.528.624.065.336.454.182.392.6
Muse Spark 1.3
48.2$1.6054.560.233.358.848.724.926.643.667.157.983.093.5
GPT-5.6 Sol
47.1$1.9948.856.239.957.149.532.327.259.47.860.184.094.1
Qwen3.8 Max
45.4$5.4156.159.438.952.143.117.722.831.771.256.280.392.8
ZGLM-5.3
44.9$2.0150.657.841.959.042.319.111.233.970.462.279.791.7
Grok 4.6
44.4$1.8651.757.121.256.542.917.117.048.265.766.780.394.9
Kimi K3
43.8$2.0049.452.612.659.546.923.422.047.646.858.388.793.5

The score is AA Intelligence Index exactly as Artificial Analysis publishes it; the columns are what goes into it. 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. † is still measured by AA but no longer counted by Intelligence Index v4.3, so it is shown for context and not averaged into the score.

Every model, ranked

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

Artificial Analysis Intelligence Index

Composite of ten public evals: agents, coding, scientific reasoning, general · Higher is better

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

Leaderboard

Model
1
Claude Fable 5.1
Anthropic
530.4$13.1K
2
GPT-6 Astra
OpenAI
531.0$5.3K
3
Claude Opus 5
Anthropic
510.7$7.3K
4
Claude Fable 5
Anthropic
500.4$11.2K
5
Muse Spark 1.3
Meta
482.4$2.0K
6
GPT-5.6 Sol
OpenAI
471.4$3.5K
7
Qwen3.8 Max
Alibaba (Qwen)
450.9$4.9K
8
Z
GLM-5.3
Z.ai (GLM)
451.8$2.5K
9
Grok 4.6
xAI
441.9$2.4K
10
Kimi K3
Moonshot (Kimi)
441.2$3.7K
Z

GLM-5.3

Z.ai (GLM) · GLM-5.3 License · 753B · 40B active
open
Intelligence Index45
Intel / $1001.8
Cost per task
$2.01
Full index run
$2.5K
Price in / out
$1.40 / $4.40
Cached input
5x cheaper$0.26
Speed
0.60s TTFT228 t/s
Context
1M
Capability breakdown0 to 100
Agents
51
Coding
42
Reasoning
42
Knowledge
14
Long context
80
zai-org/GLM-5.3Run 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 32+

GLM-5.3 is 8.5 points behind Claude Fable 5.1 on the Intelligence Index, holding 84% of the top score. In 2025 that gap was 9.3 points, and it has narrowed since.

Z
GLM-5.3
Open source · 45
vs
Claude Fable 5.1
Closed · 53

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 GLM-5.3, 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="zai-org/GLM-5.3",
messages=[{"role": "user", "content": "What are the top 3 things to do in New York?"}],
)
print(response.choices[0].message.content)