Back to Blogs & News

GLM-5.3 Is Here: Full Benchmark Breakdown, Architecture, Pricing

37 min read

Z.ai released GLM-5.3 on 14 August 2026. It is one of the most interesting open-model releases of the year, and not for the reason most launches are interesting. There is no new base model. There is no new architecture. There is no bigger parameter count. Z.ai says every reported capability gain came from scaled post-training on the exact same base it shipped with GLM-5.2 in June, a claim confirmed across launch-day coverage by MarkTechPost, Unite.AI and Kingy AI.

Qubrid AI is a launch partner for GLM-5.3. We are working directly with the Z.ai team on the rollout. GLM-5.3 will be available on the Qubrid inference platform as soon as partner access opens. The API is not live on Qubrid yet - Z.ai has staged the release behind a safety evaluation window - but it is coming, and coming soon. Join the GLM-5.3 early-access list on Qubrid and you will get the endpoint, model string and pricing the moment we switch it on.

This post is the technical brief we wrote for our own engineering and solutions teams, published in full. It covers what actually changed, what the benchmark chart says and does not say, how GLM-5.3 lines up against Kimi K3 and Qwen3.8-Max, what the pricing picture looks like, what the API surface requires, and what the developer community is saying on day one.

TL;DR: GLM-5.3 in one table

Question

Answer (source-linked)

Release date

14 August 2026, per Z.ai's launch post and AI Release Tracker

Tagline

"Built to Code. Ready for Cyber Defense." (Z.ai announcement on X)

Base model

Same 743B base as GLM-5.2. No re-pretrain. (MarkTechPost)

Where the gains came from

Scaled post-training: more executable environments, more environment types, longer RL runs (Kingy AI)

Headline coding jump

Terminal-Bench 3.0 from 4.6 to 28.3; DeepSWE v1.1 from 46.2 to 66.9 (Unite.AI)

Headline security result

CyberGym 84.5%, the top row on Z.ai's launch chart (MarkTechPost)

Knowledge-work rating

GDPval-AA v2 at 1,769 Elo, up from 1,508 (AI Release Tracker)

Open weights

Not yet. Z.ai says roughly two weeks after launch, after safety evaluation and hardening (Silicon Republic)

Reasoning levels

low, high, max. Default max. Thinking cannot be disabled on the direct API (Kingy AI)

Per-token price

Not published at launch. Z.ai's pricing table still ends at GLM-5.2 (Kingy AI)

On Qubrid

Launch partner. Coming soon. Not live yet.

Part 1: What Qubrid's launch-partner status actually means

Here is exactly what that involves.

Z.ai has deliberately staged GLM-5.3 access. According to explainx.ai's launch coverage, a Z.ai follow-up post confirmed that an initial group of partners is offering GLM-5.3-powered services through Z.ai's official service, with safeguards and usage policies in place, and that partner access is expanding through a consistent process. That is a different shape from the GLM-5.2 cycle, where MIT-licensed weights hit Hugging Face within days and anyone could serve the model.

Qubrid AI is part of that partner motion. Concretely, that means:

  1. We are integrated into the launch pipeline. We are coordinating with Z.ai on availability timing rather than waiting for a public weight drop and racing to spin up capacity afterwards.

  2. GLM-5.3 will land on the Qubrid platform behind the same OpenAI-compatible surface as every other model we serve. One base URL, one key, one schema. Swapping a model string is the entire migration.

  3. The API is not live yet. Z.ai is running a safety evaluation window before opening broader access. When it opens, we ship. That is the state of play as of 14 August 2026.

  4. Pricing will be published before the endpoint goes live, not after, so teams can budget against it.

If you want to be in the first cohort when it flips on: register for GLM-5.3 access on Qubrid.

In the meantime, the two models GLM-5.3 is most often benchmarked against - Kimi K3 and Qwen3.8-Max - are already live and serving production traffic on Qubrid today. Details in Part 8.

Part 2: The architecture story - the most important thing about GLM-5.3 is what did not change

Most model launches sell you a new base. This one sells you a thesis about post-training.

Same base, same parameter count

GLM-5.3 runs on the 743B-parameter base model that shipped with GLM-5.2, per Z.ai's own launch materials as reported by MarkTechPost. AI Release Tracker lists GLM-5.3 at 743B parameters. Fello AI renders the same figure as 744B, which is almost certainly a rounding difference on the same checkpoint rather than a second number.

On the internals, TechTimes describes the base as a mixture-of-experts architecture with roughly 40 billion parameters active per token during inference. That is the sparsity profile that makes a 743B-class model economically servable at all: you pay memory for the full expert set, but you pay compute for roughly 5% of it per token.

A caveat we think matters, and that most launch write-ups skipped. Kingy AI explicitly warns against copying GLM-5.2's spec sheet into a GLM-5.3 spec sheet, because Z.ai has not published a GLM-5.3 model card. Architecture and parameter details are inherited from the 5.2-generation base by Z.ai's own statement, not confirmed by a 5.3 artifact. If you are writing an internal architecture doc, cite it that way.

For historical grounding on how the GLM MoE line is built, the GLM-4.5 generation is fully documented: NVIDIA's Megatron-Bridge docs describe GLM-4.5 as 355B total with 32B active per token, 92 transformer layers with the first three dense and the remaining 89 MoE, grouped-query attention with 96 heads and 8 query groups, and multi-token prediction for training efficiency. GLM-5.x is a scale-up of that family lineage, and the reference code lives in the zai-org/GLM-5 repository on GitHub.

The post-training stack: IndexShare, SAO, slime

The three components Z.ai credits for GLM-5.3's gains were all introduced with GLM-5.2, as summarised by TechTimes from Z.ai's technical documentation:

  • IndexShare - a long-context technique that keeps reasoning coherent across sprawling codebases and multi-hour task environments. This is the piece that makes repository-scale work tractable rather than a context-window lottery.

  • SAO (Scalable Agentic Optimization) - a reinforcement-learning method built for long-horizon tasks, where the reward signal spans dozens or hundreds of steps rather than a single response. Standard RLHF-shaped objectives do not survive that horizon; SAO is the answer to that problem.

  • slime - an open-source framework for large-scale asynchronous RL, which lets training signal be generated from many environments in parallel without synchronous compute bottlenecks.

Nothing in that stack is new in 5.3. What changed is how much of it was run, and on what.

The environment mix is the real delta

This is the part worth reading twice. Per Kingy AI's reconstruction of Z.ai's methodology, Z.ai moved away from short coding exercises toward production-shaped tasks that can require days of expert human work. The example shape: diagnose a bottleneck in a training stack, inspect both code and internal documentation, run experiments, implement an optimization, then prove an end-to-end speedup without breaking correctness.

The pipeline that generates those tasks is itself agentic:

  • Research agents synthesize candidate tasks.

  • Judge agents check whether a task is actually solvable.

  • Verifiers are themselves tested against oracle solutions, no-op submissions, and known-unsolved states, so a verifier that rubber-stamps everything gets caught.

That last point is the quiet engineering achievement. The bottleneck in long-horizon agentic RL is not compute, it is trustworthy reward. A verifier that passes a no-op is worse than no verifier, because it teaches the model to no-op convincingly.

Z.ai's own framing of the result, as reported by BigGo Finance, is that the team may still be far from the intelligence ceiling of this base model. BigGo's read is that as pre-training costs climb and marginal returns fall, mining an existing base through post-training is becoming a primary strategy for more and more model teams.

Digital Applied put the strategic implication plainly: if scaled post-training on a frozen base can move an agentic coding score by a factor of six, the industry's center of gravity shifts from pre-training runs toward post-training pipelines.

The honest limitation. As Kingy AI notes, because there is no reproducible checkpoint and no model card, outsiders cannot yet separate how much of the gain came from better task generation, how much from more RL compute, how much from altered system prompts, how much from the agent harness, and how much from the model update itself. That decomposition is the thing the open-weight release will finally make possible.

Part 3: GLM-5.3 benchmarks - every published delta over GLM-5.2

Z.ai published an unusually complete comparison table. Kingy AI recalculated every GLM-5.2-to-GLM-5.3 change in it, and their arithmetic is reproduced below because it is the cleanest version we found.

Area

Benchmark

GLM-5.2

GLM-5.3

Absolute change

Relative change

Coding

Terminal-Bench 2.1

81.0

88.2

+7.2 pts

+8.9%

Coding

Terminal-Bench 3.0

4.6

28.3

+23.7 pts

+515.2%

Coding

DeepSWE v1.1

46.2

66.9

+20.7 pts

+44.8%

Coding

NL2Repo

48.9

58.0

+9.1 pts

+18.6%

Coding

ProgramBench (Almost Solved)

9.5

19.0

+9.5 pts

+100.0%

Coding

FrontierSWE

67.5

78.1

+10.6 pts

+15.7%

Coding

SWE-Marathon v1.1

19.4

42.5

+23.1 pts

+119.1%

Coding

PostTrainBench

31.7

39.8

+8.1 pts

+25.6%

Cyber

CyberGym

77.2

84.5

+7.3 pts

+9.5%

Cyber

ExploitGym (2h budget)

29 tasks

105 tasks

+76 tasks

+262.1%

Cyber

ExploitGym (6h budget)

39 tasks

130 tasks

+91 tasks

+233.3%

Cyber

ExploitBench

24.4

54.4

+30.0 pts

+123.0%

Agentic

Toolathlon Verified

59.9

73.0

+13.1 pts

+21.9%

Agentic

AutomationBench v1.0.6

26.2

48.2

+22.0 pts

+84.0%

Agentic

Agents' Last Exam (ALE-CLI)

23.8

28.5

+4.7 pts

+19.7%

Agentic

Humanity's Last Exam (with tools)

54.7

62.5

+7.8 pts

+14.3%

Agentic

GDPval-AA v2

1,508 Elo

1,769 Elo

+261 Elo

+17.3%

Deltas calculated by Kingy AI from Z.ai's published launch table.

How to read this table without fooling yourself

Three units are mixed in there, and collapsing them is how bad analysis gets made.

  • Terminal-Bench 3.0's +515% is real but starts from 4.6. A jump from "cannot hold a long terminal session" to "can hold one, imperfectly" is genuinely significant - Fello AI's read is that this is the row to watch - but a 515% relative gain off a 4.6 baseline is not the same class of result as a 515% gain off a 40 baseline.

  • ExploitGym counts completed tasks, not percentages. And critically, its time budgets are normalized by per-model token throughput, which we return to in Part 6.

  • GDPval-AA v2 is an Elo rating. Elo deltas are not percentage-point deltas. A +261 Elo move is large, but it lives on a different scale entirely.

The internal benchmark: Z.ai Code Bench

Z.ai's headline "50% improvement" claim comes from a private benchmark, Z.ai Code Bench. Kingy AI reconstructed the arithmetic:

Effort

GLM-5.2

GLM-5.3

Absolute

Relative

High

20.9%

31.4%

+10.5 pts

+50.2%

Max

23.4%

34.5%

+11.1 pts

+47.4%

The efficiency story attached to it is arguably more interesting than the accuracy story. Per MarkTechPost, GLM-5.3 posts 31.4% at roughly 50,000 output tokens per task, while Claude Opus 4.8 posts 29.5% at 120,000 output tokens. Higher score, less than half the output. Claude Fable 5 still leads the chart at 39.5% at maximum effort.

Kingy AI additionally reports that average output at Max effort fell from roughly 96,000 to roughly 75,000 tokens per task, a reduction of about 21.9%. For anyone paying per output token on long-horizon agent runs, that number is the one that shows up on the invoice.

But treat it as vendor-designed evidence. Z.ai's argument for keeping it private is contamination resistance, which is a legitimate argument. The cost is that, as Kingy AI puts it, the tasks, graders and run artifacts have not been released, and the benchmark cannot be audited from outside. It was evaluated inside a specific coding-agent harness at a pinned version.

Part 4: GLM-5.3 vs Kimi K3 vs Claude Fable 5 vs GPT-5.6 Sol - the head-to-head chart

Z.ai published a nine-benchmark comparison chart. explainx.ai reproduced it in full, and it is notable for what it does not claim: GLM-5.3 does not win every row.

Benchmark

GLM-5.3

GLM-5.2

Kimi K3

Claude Fable 5

GPT-5.6 Sol

Terminal-Bench 3.0

28.3%

4.6%

17.4%

33.7%

34.6%

DeepSWE

66.9%

46.2%

67.5%

69.7%

72.7%

Agents' Last Exam (CLI)

28.5%

23.8%

27.6%

23.8%

28.6%

AutomationBench

48.2%

26.2%

46.7%

46.2%

45.8%

HLE with tools

62.5%

54.7%

59.8%

63.9%

64.5%

GDPval-AA v2 (Elo)

1,769

1,508

1,682

1,743

1,730

CyberGym

84.5%

77.2%

80.0%

83.8%

83.6%

ExploitBench

54.4%

24.4%

32.2%

78.0%

76.5%

ExploitGym (2h / 6h)

105 / 130

29 / 39

36 / 70

181 / 247

216 / 293

Chart as published by Z.ai, reproduced by explainx.ai; GPT-5.6 Sol ExploitGym figures per Kingy AI. Note that some outlets render the Fable 5 column as "Mythos 5" - MarkTechPost attributes CyberGym 83.8% and ExploitBench 78.0% to Mythos 5, while Kingy AI attributes the same figures to Claude Fable 5 with fallback allowed. Same cells, different label conventions.

Where rivals still lead, benchmark by benchmark

Kingy AI compiled the complete "who beats GLM-5.3 where" list from Z.ai's own table:

Model

Rows where it stays ahead of GLM-5.3 in Z.ai's table

Kimi K3

Terminal-Bench 2.1 (88.3 vs 88.2), DeepSWE (67.5 vs 66.9), SWE-Marathon (48.1 vs 42.5), Toolathlon (76.5 vs 73.0)

DeepSeek V4 Pro-0813

NL2Repo (61.1 vs 58.0), Toolathlon (74.1 vs 73.0)

Claude Fable 5

Terminal-Bench 3.0, DeepSWE, ProgramBench Almost Solved (33.0 vs 19.0), FrontierSWE (88.2 vs 78.1), PostTrainBench (41.8 vs 39.8), ExploitGym, ExploitBench, Toolathlon, HLE with tools

GPT-5.6 Sol

Terminal-Bench 2.1 (88.8 vs 88.2), Terminal-Bench 3.0, DeepSWE, ProgramBench Almost Solved (23.0 vs 19.0), ExploitGym, ExploitBench, Toolathlon (74.9 vs 73.0), ALE-CLI (28.6 vs 28.5), HLE with tools

The Kimi K3 row is the one to sit with if you care about open models specifically. On Z.ai's own chart, Kimi K3 edges GLM-5.3 on Terminal-Bench 2.1 by 0.1 points and on DeepSWE by 0.6 points, and beats it clearly on SWE-Marathon by 5.6 points and Toolathlon by 3.5 points. GLM-5.3's differentiation against Kimi K3 is not raw agentic coding. It is AutomationBench (+1.5), GDPval-AA v2 (+87 Elo), HLE with tools (+2.7), Terminal-Bench 3.0 (+10.9) and the security cluster.

Three defensible takeaways, echoing explainx.ai's reading:

  1. GLM-5.3 beats GLM-5.2 on every single row. That is a real generational jump for Z.ai's line, and it is the comparison Z.ai most wants readers to make.

  2. GLM-5.3 does not lead the field outright. Fable 5 and GPT-5.6 Sol beat it on Terminal-Bench 3.0, DeepSWE and HLE with tools, and beat it decisively on ExploitBench and ExploitGym.

  3. GLM-5.3's differentiation is narrow and specific: AutomationBench, GDPval-AA v2, CyberGym. That is a coherent cluster around business-process automation and defensive security work, not a general "best model" claim.

Part 5: The evidence-quality question - vendor-run, public, and independent are three different things

This is where most model-comparison analysis quietly falls apart, so it is worth being precise.

"Public benchmark" means the task set or evaluation project is public. It does not mean the reported run was independently executed. Kingy AI classified every row of Z.ai's table on exactly this axis:

Evidence

Test accessibility

Who ran the GLM-5.3 result

Classification

Z.ai Code Bench v1.0

Private

Z.ai

Private vendor benchmark, externally unverifiable

Terminal-Bench 2.1 / 3.0

Public

Z.ai

Vendor-run on a public benchmark

DeepSWE v1.1

Public + independent leaderboard

Z.ai

Vendor-run; independent result pending

NL2Repo, ProgramBench, SWE-Marathon, PostTrainBench

Public / external projects

Z.ai

Mostly vendor-reported

FrontierSWE

External project

Proximal (external execution)

External execution, vendor-published table

Toolathlon Verified

Official eval service

Official service

Externally scored, vendor-submitted

Agents' Last Exam

Public (UC Berkeley RDI)

Z.ai

Vendor-run on official protocol

AutomationBench

Public

Z.ai

Vendor-run, version disclosed

GDPval-AA v2

Artificial Analysis

Artificial Analysis

Independent result cited by Z.ai

CyberGym, ExploitGym, ExploitBench

Public research benchmarks

Z.ai

Vendor-run, not independently reproduced at launch

By that classification, GDPval-AA v2 is the cleanest externally-produced number in the entire launch, with Toolathlon and FrontierSWE partially external. Everything else is vendor-run.

The DeepSWE discrepancy is the clearest warning against table-merging

Kingy AI flagged this and it deserves amplification: the independent DeepSWE leaderboard runs all models on mini-swe-agent for consistency, and at launch-day publication time it listed GLM-5.2 at 44% ±2, not the 46.2 in Z.ai's launch table. Z.ai's own footnote also uses mini-swe-agent, but with temperature 0.95, six-hour timeouts, 400K context, and its own run.

Same benchmark name. Different evaluation record. Two points of difference on the baseline, before you even get to the new model.

Cross-source discrepancies on Kimi K3

We ran the same check ourselves against the AI Release Tracker's Kimi K3 vs GLM-5.3 comparison page, which aggregates published figures independently of Z.ai's chart. The Kimi K3 numbers do not always agree:

Benchmark

Kimi K3 per Z.ai's launch chart

Kimi K3 per AI Release Tracker

DeepSWE

67.5

69.0 (v1.1); 67.5 (v1.0)

Humanity's Last Exam (with tools)

59.8

56.0

GDPval-AA v2

1,682 Elo

1,668 Elo

Toolathlon Verified

76.5

73.2

Z.ai chart figures via explainx.ai and Kingy AI; tracker figures via AI Release Tracker.

The DeepSWE row is probably a version mismatch - Z.ai's "DeepSWE" figure of 67.5 matches the tracker's DeepSWE 1.0 entry for Kimi K3, while the tracker's DeepSWE 1.1 entry is 69.0. If that reading is right, GLM-5.3's 66.9 on DeepSWE v1.1 is being compared against a Kimi K3 v1.0 number in the same column. That is not an accusation of bad faith; it is exactly the kind of thing that happens when nine benchmarks with multiple versions get compressed into one chart, and it is why we publish the discrepancy instead of picking a winner.

The harness footnotes that change the meaning

Z.ai's footnotes are unusually detailed, which is to its credit. Kingy AI catalogued them, and several materially qualify the table:

  • Terminal-Bench 3.0: run in a coding agent at a pinned version, max effort, 400K context, 128K max output, averaged over three rollouts, up to 600 agent turns, ten-hour timeout, Tool Search disabled.

  • DeepSWE: mini-swe-agent, temperature 0.95, top-p 1.0, six-hour timeout, 400K context.

  • Agents' Last Exam: max effort, 1M context, 64K max output, up to eight hours on task-specific limits.

  • FrontierSWE: evaluated by Proximal at 1M context, max effort, 128K max output; reports a dominance score rather than a simple pass rate.

  • PostTrainBench: weighted average of three runs; unscored runs fall back to an official zero-shot baseline; some original anti-API checks replaced with LLM inspection.

  • SWE-Marathon: Z.ai modified anti-cheat checks for one task and repaired broken package installation for two others.

  • ExploitGym: two- and six-hour budgets rescaled using per-model throughput from Artificial Analysis, plus non-API overhead.

  • CyberGym: single-run Pass@1 over 1,507 tasks with unlimited per-task timeout.

  • HLE with tools: up to 163,840 generation tokens, 300K context, with a separate model as judge.

These disclosures make the table more useful, not less. They also make it impossible to treat any cell as a controlled, identical race between models. If you are running your own eval - and you should - hold the harness, tool set, time budget and acceptance tests constant across candidates, or your comparison measures your scaffolding rather than the models.

Part 6: The throughput footnote that quietly reframes the cost comparison

Buried in Z.ai's ExploitGym footnote is a number with implications far beyond that one benchmark. Per Kingy AI's transcription, the time budgets were rescaled using per-model throughput figures from Artificial Analysis:

Model

Throughput (tokens/sec, per Artificial Analysis via Z.ai's footnote)

GLM-5.3

115

Qwen3.8-Max

47

Kimi K3

40

If those figures hold up in independent measurement, GLM-5.3 generates roughly 2.4x faster than Qwen3.8-Max and 2.9x faster than Kimi K3 at the reference configuration. For single-shot chat that is a nice-to-have. For long-horizon agentic work, where a single task can consume 50,000 to 120,000 output tokens, it is the difference between an agent run that finishes inside a CI window and one that does not.

Stack that against the Code Bench efficiency result from Part 3 - 31.4% at roughly 50,000 output tokens versus a closed-model 29.5% at 120,000 - and the emerging GLM-5.3 pitch is not "highest score." It is score-per-token and score-per-second. That is a materially different value proposition, and it is the one that matters most to anyone paying an inference bill.

Two caveats. First, these are figures cited inside a vendor footnote, not a measurement we or anyone else independently reproduced on launch day. Second, throughput is a function of serving stack, batch size, quantization and hardware, so the number that matters to you is the one measured on the infrastructure you actually deploy on.

Part 7: The cybersecurity result, the disclosure ledger, and why the weights are staged

This is the most-discussed part of the launch, and the part most likely to be misread.

What Z.ai reported

Z.ai frames GLM-5.3's security positioning as defense, not general offensive capability - the tagline is "Ready for Cyber Defense." The results, per MarkTechPost:

  • CyberGym, which tests discovery and validation from white-box source, moves from 77.2% to 84.5%, edging past the closed frontier models in Z.ai's chart at 83.8% and 83.6%.

  • ExploitBench, which requires root-cause reasoning, moves from 24.4% to 54.4% - a doubling, but still more than 20 points behind the closed frontier models on that specific test.

  • ExploitGym completions move from 29 to 105 at a two-hour budget, and from 39 to 130 at six hours.

MarkTechPost's observation about the shape of the gains is the sharp one: the deeper into the chain a benchmark sits, the larger the gain over GLM-5.2 - and the wider the remaining gap to closed frontier models.

Z.ai flagged this capability growth as unplanned. Per MarkTechPost, the company added vulnerability-discovery data expecting better single-bug reasoning, and instead saw capability keep compounding as training scaled.

The disclosure ledger

The concrete output is a public vulnerability record. Per byteiota's launch analysis, since GLM-5.2 the models have identified 2,436 vulnerabilities across 269 open-source projects, of which 1,097 are rated critical or high severity. Targets span system kernels, browser engines, network protocols and operating systems, and byteiota reports the oldest issue found was introduced in 1981.

At launch, 53 have been publicly disclosed with CVEs assigned, and 2,383 remain under embargo while maintainers patch, per byteiota. Unite.AI reports the same split and notes recent ledger entries covering a Linux kernel issue, a WebKit memory-handling flaw, and a FreeBSD parameter-validation bug. The ledger is published at cvd.z.ai. The 1,097 critical-and-high figure is corroborated independently by TechTimes.

The framing that matters for an open-source audience: this is coordinated disclosure with embargo discipline, not capability theatre. 2,383 embargoed against 53 disclosed is what a functioning responsible-disclosure process looks like. The value to the open-source ecosystem is that these are real bugs in real infrastructure that thousands of projects depend on, found and reported rather than sat on.

Why the weights are late

The two-week delay is the direct consequence. Silicon Republic reports Z.ai plans to release weights in two weeks, after completing safety evaluation and hardening. byteiota characterises it as Z.ai's first explicitly security-motivated weight delay.

explainx.ai's read is that the release reads as a consistent stance rather than a mixed message: a model that leads CyberGym (defensive discovery and hardening) while trailing on ExploitBench and ExploitGym (exploit development under time budget) is showing exactly the capability skew its own positioning claims. Had it topped ExploitGym instead, that would arguably be the more concerning outcome.

Whether two weeks is the right length is a question the security research community will answer when the weights land. What is not in dispute is that the delay is real, that it is stated, and that it changes the launch-day answer to a very common question - which brings us to the terminology.

Is GLM-5.3 "open source" today? A precise answer

No, not yet, and precision here matters.

A promised future checkpoint is not a downloadable checkpoint. We will update this page the moment that changes.

Part 8: GLM-5.3 vs Kimi K3 vs Qwen3.8-Max - the open-model landscape in August 2026

If you are choosing a model this month, GLM-5.3 is one of three serious candidates in this class, and it is the only one you cannot deploy yet.

Specification comparison

GLM-5.3

Kimi K3

Qwen3.8-Max

Developer

Z.ai

Moonshot AI

Qwen

Released

14 Aug 2026

16 Jul 2026

3 Aug 2026

Parameters

743B

2.8T

2.4T

Context

1M route documented for coding plan

1M

1M

Weight status at launch

Staged, promised

Open weight

Proprietary

Reference throughput

115 tok/s

40 tok/s

47 tok/s

Live on Qubrid today

Not yet - coming soon

Yes

Yes

Parameters, context, release dates and weight status per AI Release Tracker's GLM-5.3 vs Kimi K3 and GLM-5.3 vs Qwen3.8-Max comparison pages. Throughput per Artificial Analysis as cited in Z.ai's footnote via Kingy AI. GLM-5.3 context per Kingy AI.

The parameter-count line is the one people misread. GLM-5.3 is roughly one quarter the total parameter count of Kimi K3 and under a third of Qwen3.8-Max, and it is competitive with both on agentic coding. For a sparse MoE, total parameters set your memory footprint while active parameters set your compute per token, so a smaller total at comparable quality is a direct serving-cost advantage - assuming the sparsity profile holds, which we cannot confirm without the 5.3 model card.

GLM-5.3 vs Kimi K3: head-to-head on shared benchmarks

Only three benchmarks are directly shared, per AI Release Tracker:

Benchmark

GLM-5.3

Kimi K3

Winner

DeepSWE 1.1

66.9%

69.0%

Kimi K3

Humanity's Last Exam (with tools)

62.5%

56.0%

GLM-5.3

GDPval-AA v2

1,769 Elo

1,668 Elo

GLM-5.3

Where Kimi K3 has published numbers and GLM-5.3 has not, the gap is mostly about breadth. Per AI Release Tracker, Kimi K3 reports GPQA Diamond 93.5%, BrowseComp 91.2%, Next.js Evals 92%, Supabase Evals 90.9% without skills and 86.4% with skills, MCP Atlas 84.2%, Terminal-Bench 2.1 88.3%, MMMU-Pro 81.6%, CharXiv Reasoning 84.8%, Arena Elo 1,486 text and 1,679 code, and BullshitBench v2 73%.

GLM-5.3 publishes no multimodal figures at all. This is the single biggest practical gap and it is not an accident: explainx.ai's June coverage documented a Z.ai community poll in which vision was the dominant developer request for this release, and the launch post makes no mention of vision. If your workload involves screenshots, PDFs, UI mockups or chart reading, Kimi K3 and Qwen3.8-Max are the models with published evidence and GLM-5.3 is not.

Choose Kimi K3 over GLM-5.3 when: you need open weights you can actually download today, multimodal input, browsing-heavy research agents, or best-in-class raw agentic SWE numbers. Choose GLM-5.3 when it lands if: you are running long-horizon business-process automation, you care about knowledge-work Elo, you are doing defensive security work, or your economics are dominated by output-token volume and generation speed.

GLM-5.3 vs Qwen3.8-Max

There is no valid direct head-to-head here. AI Release Tracker's comparison page states outright that the two models publish no scores on any shared benchmark. Any GLM-5.3 vs Qwen3.8-Max scoreboard you come across is merging incomparable rows.

What is published for Qwen3.8-Max, per AI Release Tracker: SWE-Bench Pro 67.7%, PaperBench 93%, Terminal-Bench 2.1 86.6%, JobBench 53.4%, OSWorld-Verified 86.1%, CharXiv Reasoning 88.4%, BabyVision 82%, Arena Elo 1,497 text and 1,667 code.

The nearest defensible proxies:

  • Terminal-Bench 2.1: GLM-5.3 at 88.2 vs Qwen3.8-Max at 86.6. Different harnesses, so read it as directional.

  • Computer use: Qwen3.8-Max's OSWorld-Verified 86.1% and GLM-5.3's Agents' Last Exam 28.5% measure agentic computer use, but they are not the same test and the scales are not comparable. Do not divide them.

  • Chart and visual reasoning: Qwen3.8-Max reports CharXiv 88.4% and BabyVision 82%. GLM-5.3 reports nothing here.

Choose Qwen3.8-Max when: you need research reproduction, computer-use agents, chart and document understanding, or strong SWE-Bench Pro performance with published multimodal evidence.

Available on Qubrid today, while GLM-5.3 finishes its safety window

Both comparison models are live on the Qubrid inference platform right now, on the same OpenAI-compatible endpoint GLM-5.3 will use:

Model

Model string

Input / 1M

Output / 1M

Cached input / 1M

Kimi K3

moonshotai/Kimi-K3

$3.00

$15.00

$0.30

Qwen3.8-Max

qwen/Qwen3.8-Max

$2.30

$5.69

$0.16

Qwen3.8-Max on Qubrid is priced 20% below list ($2.87 / $7.12 / $0.20). Both are reachable at https://platform.qubrid.com/v1 with an OpenAI-compatible client:

from openai import OpenAI

client = OpenAI(
    api_key="YOUR_QUBRID_API_KEY",
    base_url="https://platform.qubrid.com/v1",
)

resp = client.chat.completions.create(
    model="moonshotai/Kimi-K3",
    messages=[{
        "role": "user",
        "content": "Review this diff, find the highest-risk defect, propose a minimal fix.",
    }],
    reasoning_effort="high",
)
print(resp.choices[0].message.content)

When GLM-5.3 goes live on Qubrid, the migration is one string change. That is the whole point of standing up a single compatible surface across the catalogue.

Part 9: GLM-5.3 pricing - what is confirmed and what is not

The most important pricing fact about GLM-5.3 on launch day is that the per-token price does not exist yet.

Kingy AI checked and reports Z.ai's official API pricing table still lists GLM-5.2 at $1.40 per million input tokens, $0.26 cached input and $4.40 output, with no GLM-5.3 row at all. Their guidance, which we endorse: do not assume those rates carry over.

Subscription tiers

Z.ai's coding-plan tiers are published. Per Kingy AI's check, monthly billing lists $18 Lite, $80 Pro, $168 Max, while annual billing shows effective monthly prices of $12.60, $56 and $117.60 - the figures explainx.ai reproduced.

Tier

Effective monthly (annual billing)

Quota

Lite

$12.60

10,000 credits/week

Pro

$56.00

~6x Lite usage

Max

$117.60

~14x Lite usage

Kingy AI further reports that the points system charges separately for input, cached input and output, and that calls outside weekday peak hours consume 50% of standard points, with peak defined as 14:00-18:00 UTC+8 Monday to Friday.

Read the plan boundary carefully. As Kingy AI notes, the coding plan uses a separate endpoint and is contractually limited to supported coding tools. It is not a discounted general-purpose API. If you are building an application, you need the standard API, and the standard API price for GLM-5.3 is exactly the number nobody has yet.

What we will publish on Qubrid

Qubrid pricing for GLM-5.3 will be published as flat per-million-token input, output and cached-input rates, in the same format as every other model in our catalogue, and it will go up before the endpoint goes live so teams can model their spend in advance. Register for the announcement.

Part 10: The GLM-5.3 API surface - the breaking change you need to know about

If you have existing GLM integration code, read this section before you change a model string.

Reasoning effort levels

GLM-5.3 exposes three levels, per Kingy AI:

reasoning_effort

Intended use

low

Light reasoning, lower latency and token consumption

high

Enhanced reasoning for harder work

max

Deep reasoning; Z.ai's recommendation for coding. This is the default.

Thinking is mandatory - this is the breaking change

Unite.AI flags it directly: GLM-5.3 no longer permits disabling thinking, a breaking change for applications that previously ran with thinking switched off.

Kingy AI documents the migration path: on the direct API, thinking.type must be enabled. If your application currently sends thinking.type: "disabled", change it to enabled and set reasoning_effort to low before switching the model ID. Otherwise the request fails.

There is a subtlety worth internalising. Per Kingy AI, coding-plan adapters convert disabled-like inputs (false, disabled, none, off) into low - they do not turn thinking off. That compatibility shim is adapter behaviour and should not be mistaken for direct API behaviour. If you tested through an adapter and are now calling the API directly, that assumption will break in production, not in staging.

Context routing

Kingy AI reports a 1M context route documented for the coding plan via a glm-5.3[1m] model suffix and a one-million-token compaction window, while noting that a standalone GLM-5.3 model page specifying full standard-API context and max output had not been published at launch. Treat the 1M figure as documented for the coding-plan route specifically until the model card lands.

Practical migration checklist

If you are planning to move a workload to GLM-5.3:

  1. Audit every call site for thinking.type: "disabled". Change to enabled with reasoning_effort: "low" first, deploy, verify, and only then change the model ID. Two changes at once means you will not know which one broke.

  2. Do not budget from GLM-5.2 token prices. They are not GLM-5.3 prices and Z.ai has not said they will be.

  3. Re-tune your effort level per workload. max is the default and Z.ai recommends it for coding, but max on a latency-sensitive path is a self-inflicted wound. Use low where latency and token spend matter.

  4. Re-baseline your evals. Output-token distribution changed materially between 5.2 and 5.3. Any cost model calibrated on 5.2 token counts is stale.

  5. Do not plan a self-hosted deployment yet. There is no checkpoint, no license, no tokenizer artifact, no quantization matrix and no hardware guidance for GLM-5.3, per Kingy AI's launch-day inventory.

  6. Hold the harness constant when you benchmark. Same agent, same tools, same time budget, same acceptance tests, across every candidate model. Otherwise you are benchmarking your scaffolding.

Part 11: What the community is saying about GLM-5.3

Day-one sentiment splits cleanly into two groups: people who got hands-on access and liked it, and people waiting for weights who are frustrated by the delay.

Hands-on reactions were strongly positive. explainx.ai collected the early X responses: Ashutosh Shrivastava (@ai_for_success), who had early access, called it a massive upgrade after spending time with it. The Z.ai launch post itself drew over 62,500 views within hours, per the same source.

The quantization community is in a holding pattern. Unsloth AI (@UnslothAI) asked publicly whether GLM-5.3 is now the strongest open model, and said the team is waiting to make quants for people who can run it - alongside a request for smaller distilled variants in the mould of the earlier Flash releases. explainx.ai's observation is the right one: there is no open-weight model to quantize yet, so the entire quant-and-benchmark cycle the community ran on GLM-5.2 is paused until the safety review completes. That cycle is a substantial part of what makes an open-weight release valuable, and it has not started.

The most useful technical anecdote came from an agent-harness builder. Ahmad Awais (@MrAhmadAwais), building a coding-agent product, described an internal eval where the team deliberately traps a model in a loop to see what happens. His report is that every prior GLM model simply kept looping, and GLM-5.3 is the first one to notice it was stuck. If that reproduces, it is a genuinely important signal, because loop detection and self-correction are exactly the failure mode that separates "benchmark-strong" from "production-reliable" on long-horizon agent runs - and it is a property no row in the benchmark table directly measures.

Security researchers see the API as immediately useful and the weights as the real event. byteiota's assessment is that for long-horizon coding work the Terminal-Bench and DeepSWE improvements are large enough to show up in real engineering workflows, that the API is usable for security research today, and that cost-sensitive local scanning has to wait for the weights in late August.

The measured take from the analyst side is worth quoting in spirit. Unite.AI's conclusion is that whether independent evaluators replicate GLM-5.3's numbers, particularly the in-house Code Bench results and the security scores run in Z.ai's own harness configurations, will determine how much of this launch is a genuine step forward for open-weight coding models and how much is evaluation choice. The weight release is when that testing begins.

An honest note on the vision gap. The June community poll made vision the top request for this release, per explainx.ai, and GLM-5.3 did not deliver it. Reactions to that will be mixed and are legitimately so. If your evaluation depends on multimodal input, this release does not change your options.

Part 12: Who should actually use GLM-5.3, and when

A capability-first read, mapped to workload type.

Adopt as soon as it is available if you are:

  • Running long-horizon agentic coding where a task spans hours and hundreds of tool calls. The Terminal-Bench 3.0 and SWE-Marathon deltas are the largest in the table and they are exactly the long-horizon rows.

  • Building business-process automation. AutomationBench is GLM-5.3's clearest outright lead over every model in Z.ai's chart, closed models included.

  • Cost-constrained on output tokens. The score-per-token and throughput profile is the most differentiated thing about this model.

  • Doing defensive security work: code review, crash triage, white-box vulnerability discovery, hardening. CyberGym is the strongest evidence in the release.

Wait if you are:

  • Dependent on multimodal input. Nothing published. Kimi K3 and Qwen3.8-Max have the evidence here.

  • Blocked on license certainty. No GLM-5.3 license exists yet, and MIT on 5.2 does not establish terms for 5.3.

  • Planning self-hosted deployment. No checkpoint, no serving recipe, no hardware guidance.

  • Budgeting a large workload from a fixed per-token rate. That rate is not published.

Test rigorously regardless. The strongest evaluation is not a toy program. Give the model a failing build, a bounded migration, a cross-file bug, or a performance regression with a measurable acceptance test - and run the identical task, harness and time budget against Kimi K3 and Qwen3.8-Max, both of which you can run on Qubrid today.

Frequently asked questions about GLM-5.3

What is GLM-5.3? GLM-5.3 is Z.ai's flagship coding and agentic model, released 14 August 2026. It is post-trained on the same 743B-parameter base as GLM-5.2, with all reported gains attributed to expanded post-training rather than a new pre-training run (MarkTechPost).

When was GLM-5.3 released? 14 August 2026, 59 days after GLM-5.2 (AI Release Tracker).

Is GLM-5.3 a new base model? No. Z.ai says it reuses the GLM-5.2 base exactly. No new architecture, no re-pretrain, no larger parameter count (Digital Applied).

How many parameters does GLM-5.3 have? 743B total, reported as a mixture-of-experts design with roughly 40B active per token (AI Release Tracker; active-parameter figure per TechTimes). No GLM-5.3 model card has been published, so treat internals as inherited from the 5.2-generation base.

Is GLM-5.3 open source? Not yet. Weights, model card and license are all pending. The accurate launch-day description is API-available with an open-weight release promised (Kingy AI). AI Release Tracker currently classifies it as proprietary.

When will GLM-5.3 open weights be released? Z.ai says roughly two weeks after launch, so late August 2026, after safety evaluation and hardening (Silicon Republic). Treat it as a roadmap commitment rather than a shipped artifact.

What are GLM-5.3's benchmark scores? Headline figures: Terminal-Bench 3.0 28.3%, DeepSWE v1.1 66.9%, Agents' Last Exam 28.5%, AutomationBench 48.2%, HLE with tools 62.5%, GDPval-AA v2 1,769 Elo, CyberGym 84.5%, ExploitBench 54.4%, ExploitGym 105 tasks at 2h and 130 at 6h (AI Release Tracker).

Is GLM-5.3 better than Kimi K3? It depends on the task. On the three benchmarks both publish, GLM-5.3 leads on Humanity's Last Exam with tools (62.5% vs 56%) and GDPval-AA v2 (1,769 vs 1,668), while Kimi K3 leads on DeepSWE 1.1 (69% vs 66.9%) (AI Release Tracker). Kimi K3 has open weights today and published multimodal results; GLM-5.3 has neither.

Is GLM-5.3 better than Qwen3.8-Max? There is no valid direct comparison. AI Release Tracker confirms the two models publish no scores on any shared benchmark. Any head-to-head scoreboard you see is merging incomparable rows.

How much does GLM-5.3 cost? No per-token price has been published. Z.ai's pricing table still ends at GLM-5.2 at $1.40 input, $0.26 cached input and $4.40 output per million tokens, which should not be treated as GLM-5.3 pricing (Kingy AI). Coding-plan tiers are $12.60, $56 and $117.60 per month on annual billing (explainx.ai).

Does GLM-5.3 support vision? No multimodal capability was announced or benchmarked at launch, despite vision topping the June community wishlist (explainx.ai).

Why do GLM-5.3 API requests fail when I disable thinking? Because the direct API no longer supports it. Set thinking.type to enabled and use reasoning_effort: "low" for the lightest mode (Kingy AI).

What is GLM-5.3's context window? A 1M route is documented for the coding plan via a glm-5.3[1m] suffix. A standalone model page with full standard-API context and output limits had not been published at launch (Kingy AI).

Can I run GLM-5.3 locally? Not yet. No checkpoint, license, tokenizer artifact, quantization matrix or hardware guidance exists for the exact model (Kingy AI).

When will GLM-5.3 be available on Qubrid AI? Qubrid AI is a launch partner. GLM-5.3 will go live on the Qubrid inference platform as soon as partner access opens following Z.ai's safety evaluation window. It is not live yet. Register for access to be notified with the endpoint, model string and pricing.

What can I run on Qubrid in the meantime? Kimi K3 and Qwen3.8-Max, the two models GLM-5.3 is most directly compared against, are both live on Qubrid today on an OpenAI-compatible endpoint at https://platform.qubrid.com/v1.

Our verdict

GLM-5.3 is a significant release, and it is significant for a reason that has almost nothing to do with the leaderboard position.

Z.ai took a frozen base model, pointed more reinforcement-learning compute and a much harder set of executable environments at it for roughly two months, and moved an agentic terminal-coding score from 4.6 to 28.3. Every single published GLM-5.2 comparison improved. If that result replicates once the weights are public, it reframes where the next tranche of capability actually lives - and it suggests a lot of open-weight models currently in the wild are being served well below their ceiling.

The honest caveats stand alongside that. Nearly every number is vendor-run. The private benchmark cannot be audited. The weights, model card, license and per-token price are all outstanding. Fable 5 and GPT-5.6 Sol still lead several rows. Kimi K3 still edges it on raw agentic SWE. There is no vision. And an open-weight release that has not happened yet is a commitment, not a checkpoint.

Where GLM-5.3 looks genuinely differentiated is narrower and more interesting than "best model": business-process automation, knowledge-work Elo, defensive security, and an unusually strong score-per-token and tokens-per-second profile at roughly a quarter of Kimi K3's total parameter count.

That last combination is exactly the shape of model that changes inference economics rather than just leaderboards. It is why we are a launch partner, and why we are prioritising it.

GLM-5.3 is coming to Qubrid AI soon. Register here to get the endpoint the moment it is live.

References

Primary sources

Benchmark and leaderboard references

Launch-day analysis and reporting

Architecture background

Every benchmark figure in this post is attributed to its source and reflects publicly available information as of 14 August 2026. Z.ai's launch-table results are vendor-run unless otherwise noted. Qubrid AI is a GLM-5.3 launch partner; GLM-5.3 is not yet available on the Qubrid platform and this post makes no claim that it is. We will update this page when weights, license, model card and per-token pricing are published.

Back to Blogs

Related Posts

View all posts

Kimi K3 API Is Live: Day-0 Access on Qubrid AI

Moonshot AI just launched Kimi K3, and it is a big one. Literally. At 2.8 trillion parameters, K3 is the largest open model ever released, and it ships with a 1 million token context window, native visual understanding, and always-on reasoning.

Shubham Tribedi

Shubham Tribedi

10 minutes

Don't let your AI control you. Control your AI the Qubrid way!

Have questions? Want to Partner with us? Looking for larger deployments or custom fine-tuning? Let's collaborate on the right setup for your workloads.

"Qubrid AI reduced our document processing time by over 60% and significantly improved retrieval accuracy across our RAG workflows."

Enterprise AI Team

Document Intelligence Platform