Skip to content

Blog

DeepSeek V4.1 Flash: what changed, and how to use it over the API

On September 10, 2026 DeepSeek released DeepSeek V4.1 Flash — not a retrain this time, a new generation: 552B parameters (mixture-of-experts, 8B active per token in prefill and 16B in decode), a new “causal encoder–decoder” architecture, vision trained in from the start of pre-training, a 1M-token context, and MIT weights on Hugging Face at deepseek-ai/DeepSeek-V4.1-Flash (the tech report PDF ships in the same repo).

It replaced the previous build in our Core Pool the same day. There is exactly one thing to migrate: the model id. The new id is deepseek-v4.1-flash; the old deepseek-v4-flash keeps working as an alias until October 10, 2026, after which it returns an invalid-model error. Same key, same endpoints, same subscription, same reserved hours — unlimited, flat-rate access starts from $17.99/mo ($15.29/mo billed annually), live pricing on /pools.

Terminal window
# before # from 2026-09-10
"model": "deepseek-v4-flash" "model": "deepseek-v4.1-flash"

The headline claim in DeepSeek’s own release material is that V4.1 Flash beats its own larger V4-Pro on performance, cost, speed and total time to finish a task. It is confident enough in that to act on it: from September 14, 2026 DeepSeek will route its own deepseek-v4-pro traffic to V4.1 Flash, billed at Flash rates, until a V4.1-Pro exists.

Here are the three agent benchmarks from the instruct table on the model card, next to V4-Pro and Claude Opus 5.0. All of these are vendor-run — DeepSeek’s own harness at maximum reasoning effort (reasoning_effort=100), with no independent verification yet:

DeepSeek V4.1-FlashDeepSeek V4-ProClaude Opus 5.0
Terminal-Bench 2.1 DeepSWE v1.1 AutomationBench V4.1-Flash — Terminal-Bench 2.1: 90.6 V4-Pro — Terminal-Bench 2.1: 87.9 Claude Opus 5.0 — Terminal-Bench 2.1: 89.1 V4.1-Flash — DeepSWE v1.1 resolved: 74.2 V4-Pro — DeepSWE v1.1 resolved: 62.7 Claude Opus 5.0 — DeepSWE v1.1 resolved: 74.0 V4.1-Flash — AutomationBench pass@1: 54.8 V4-Pro — AutomationBench pass@1: 43.2 Claude Opus 5.0 — AutomationBench pass@1: 50.3 90.687.989.1 74.262.774.0 54.843.250.3

Same numbers as a table, plus the base-model scores DeepSeek publishes alongside them:

Instruct (vendor harness, max reasoning effort)V4.1-FlashV4-ProClaude Opus 5.0
Terminal-Bench 2.190.687.989.1
DeepSWE v1.1 (resolved)74.262.774.0
AutomationBench (pass@1)54.843.250.3
Base modelV4.1-Flash-BaseV4-Flash-BaseV4-Pro-Base
MMLU-Pro74.168.373.5
HumanEval79.469.576.8
GSM8K93.090.892.6

Two honest readings, and both are worth holding at once. The generous one: on DeepSeek’s own harness, a model with 8–16B active parameters edges past Claude Opus 5.0 on all three agent benchmarks, and past its own Pro-tier sibling on every row of both tables — which is exactly why DeepSeek is willing to point Pro traffic at it. The sceptical one: every number above was produced by the vendor, at maximum reasoning effort, on its own scaffolding. Vendor tables set expectations; they don’t settle them. Where independent evaluation lands is the next section.

Where it lands on the independent board — pending

Section titled “Where it lands on the independent board — pending”

Artificial Analysis has not published an Intelligence Index score for V4.1 Flash yet. So we are not moving anything on the strength of a vendor table: our Pareto Frontier, Price Tracker and Which-LLM reports keep the previous build’s plotted point until an independent score exists. For reference, the build this one replaces scored 50 on that index when it launched (52 after AA’s later v4.1.1 recalibration). We’ll update the reports when AA publishes.

The architecture, the vision, and the price

Section titled “The architecture, the vision, and the price”
DeepSeek V4.1 Flash
Parameters552B mixture-of-experts — 8B active per token in prefill, 16B in decode
ArchitectureNew causal encoder–decoder: a 20-layer causal encoder followed by a 20-layer decoder
VisionNative — a from-scratch vision encoder plus projector, trained alongside text from the start of pre-training, not bolted on afterwards
Context window1M tokens
KV cache~890 bytes per token — DeepSeek reports roughly ¼ of the previous generation’s HBM footprint and ⅛ of its SSD footprint
WeightsMITdeepseek-ai/DeepSeek-V4.1-Flash, tech report in the repo
Model id heredeepseek-v4.1-flash (old deepseek-v4-flash accepted until 2026-10-10)
PoolCore Pool, alongside MiMo v2.5

The cache line is the one with second-order consequences. A quarter of the KV footprint per token is what makes a 1M-token context economically serious rather than a spec-sheet number — and it is the mechanism behind DeepSeek’s list price coming down on a newer, larger model, which is not the usual direction:

DeepSeek list price, per 1M tokensV4 Flash (before)V4.1 Flash (now)
Off-peak input$0.22$0.15
Off-peak output$0.66$0.60
Peak input$0.44$0.30
Peak output$1.32$1.20
Cache hit (off-peak / peak)$0.003 / $0.006

Peak hours are 01:00–04:00 and 06:00–10:00 UTC, Monday to Friday; everything else is off-peak. DeepSeek has retired the deepseek-v4-flash id on its own API, where it now routes to V4.1.

On a flat-rate subscription none of that column matters at all — a Core Pool block costs the same whether your agent burns one million tokens or one billion — but it matters as a signal: the cheap tier keeps getting better without getting more expensive. We track that trend month by month in the LLM Price Tracker.

curl:

Terminal window
curl https://api.cheapestinference.com/v1/chat/completions \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"model": "deepseek-v4.1-flash", "messages": [{"role": "user", "content": "Hello"}]}'

OpenAI SDK (Python):

from openai import OpenAI
client = OpenAI(
base_url="https://api.cheapestinference.com/v1",
api_key="sk-...", # your subscriber key
)
response = client.chat.completions.create(
model="deepseek-v4.1-flash",
messages=[{"role": "user", "content": "Fix the failing test in this repo..."}],
)
print(response.choices[0].message.content)

Anthropic SDK (Python) — the same key against the /anthropic endpoint:

from anthropic import Anthropic
client = Anthropic(
base_url="https://api.cheapestinference.com/anthropic",
api_key="sk-...", # your subscriber key
)
message = client.messages.create(
model="deepseek-v4.1-flash",
max_tokens=1024,
messages=[{"role": "user", "content": "Explain this stack trace..."}],
)
print(message.content[0].text)

No account yet? Register, subscribe to the Core Pool, and mint a key at cheapestinference.com/keys.

Claude Code speaks the Anthropic Messages API, so it drops in with two environment variables (plus the small-model one):

Terminal window
export ANTHROPIC_BASE_URL="https://api.cheapestinference.com/anthropic"
export ANTHROPIC_AUTH_TOKEN="sk-..." # your subscriber key
export ANTHROPIC_MODEL="deepseek-v4.1-flash"
export ANTHROPIC_SMALL_FAST_MODEL="deepseek-v4.1-flash"

Start claude as usual — every request runs on V4.1 Flash with no per-token meter. Per-project pinning, thinking blocks and the rest of the setup are in the Claude Code + DeepSeek guide. The same key works in Cline, Roo Code, Continue and anything that accepts a custom OpenAI base URL.

Vision is native, and it uses the standard content formats on both endpoints — image_url parts on /v1/chat/completions, image blocks on /anthropic/v1/messages, in user messages, inside the same 1 MB per-request budget as everything else:

response = client.chat.completions.create(
model="deepseek-v4.1-flash",
messages=[{
"role": "user",
"content": [
{"type": "text", "text": "What does this dashboard screenshot show?"},
{"type": "image_url", "image_url": {"url": f"data:image/png;base64,{b64}"}},
],
}],
)

Does DeepSeek V4.1 Flash have open weights? Yes — MIT, on Hugging Face at deepseek-ai/DeepSeek-V4.1-Flash, with the tech report PDF in the same repo. MIT means unrestricted commercial use, including self-hosting.

Does it replace V4-Pro? For DeepSeek’s own traffic, effectively yes for now: from September 14, 2026 requests to deepseek-v4-pro will be routed to V4.1 Flash and billed at Flash rates, until a V4.1-Pro ships. On its own tables V4.1 Flash outscores V4-Pro on every row we quote above.

What is its Artificial Analysis Intelligence Index score? There isn’t one yet — AA has not published a score for V4.1 Flash. Our living reports keep the previous build’s point on the chart until it does; we’ll update them when it lands.

Do I have to change anything to keep working? One line: the model id becomes deepseek-v4.1-flash. deepseek-v4-flash still resolves here until October 10, 2026, then returns an invalid-model error. Keys, endpoints, subscriptions and reserved blocks are untouched.

Can it read images? Yes, natively — vision was in the pre-training, not added afterwards. Send image_url parts (OpenAI format) or image blocks (Anthropic format) in user messages, within the 1 MB per-request limit.

Is it better than Claude Opus? On DeepSeek’s own three agent benchmarks above it is ahead of Claude Opus 5.0 — 90.6 vs 89.1, 74.2 vs 74.0, 54.8 vs 50.3. Those are vendor-run numbers at maximum reasoning effort with no independent verification, and two of the three margins are inside a point; treat them as a claim worth testing on your own workload, not a settled ranking.

Full details: DeepSeek V4.1 Flash API docs · Plans & Limits · what a flat monthly DeepSeek subscription changes.

Check live Core Pool availability →


CheapestInference serves Kimi K3 and Qwen3.8 Max (Flagship Pool), GLM 5.3 and MiniMax M3 (Frontier Pool) and DeepSeek V4.1 Flash and MiMo v2.5 (Core Pool) through one OpenAI- and Anthropic-compatible API on unlimited time-block subscriptions. See the pools or get started.

GLM-5.3-Flash: specs, benchmarks, pricing & API options

GLM-5.3-Flash is Z.ai’s (Zhipu AI) efficiency-tier release next to GLM-5.3, and the headline is simple: Artificial Analysis measures it at 57 on its Intelligence Index at a blended price of $0.10 per 1M tokens$0.09 per Index task, on AA’s intelligence-vs-cost Pareto frontier, ranked #4 of 111 open-weights models it tracks. For scale: the entire index currently tops out at 63.

Unlike its big sibling — a post-training pass on the existing 743B GLM base — Flash is a new model: 320B total / 18B active MoE with hybrid sparse + linear attention, trained on a 30T-token multimodal corpus, and natively multimodal (image, video and file input) where GLM-5.3 is text-only. The weights are on Hugging Face under MIT (zai-org/GLM-5.3-Flash) — plain MIT, where the flagship’s custom license carries a security-review clause for large Model-as-a-Service operators.

Architecture320B total / 18B active MoE, hybrid sparse + linear attention
MultimodalNative — image, video, text and file input; text output
Context window1M tokens; up to 128K output
ReasoningReasoning model — thinking always on, cannot be disabled on the direct API
Open weightsYes — zai-org/GLM-5.3-Flash, MIT license (BF16 + FP8)
List price (API)$0.15 in / $0.50 out per 1M, cached input $0.03 — 50% launch promo ($0.075 / $0.25) until September 9, 2026
Measured speed48.6 output tok/s, 1.51s to first token (Artificial Analysis)

Z.ai’s own reported numbers (vendor harness — not independently reproduced), with the retired GLM 5.2 and the full GLM-5.3 on either side:

GLM 5.2 (743B, retired)GLM-5.3-Flash (18B active)GLM-5.3 (743B)
Terminal-Bench 2.1 DeepSWE v1.1 AutomationBench GLM 5.2 — Terminal-Bench 2.1: 81.0 GLM-5.3-Flash — Terminal-Bench 2.1: 84.3 GLM-5.3 — Terminal-Bench 2.1: 88.2 GLM 5.2 — DeepSWE v1.1: 46.2 GLM-5.3-Flash — DeepSWE v1.1: 63.4 GLM-5.3 — DeepSWE v1.1: 66.9 GLM 5.2 — AutomationBench v1.0.6: 26.2 GLM-5.3-Flash — AutomationBench v1.0.6: 48.8 GLM-5.3 — AutomationBench v1.0.6: 48.2 81.084.388.2 46.263.466.9 26.248.848.2
Benchmark (Z.ai, vendor-run)GLM 5.2GLM-5.3-FlashGLM-5.3
Terminal-Bench 2.181.084.388.2
DeepSWE v1.146.263.466.9
AutomationBench v1.0.626.248.848.2

Two things stand out. An 18B-active model beats the 743B GLM 5.2 on all three — a model that was frontier-class until weeks ago. And on AutomationBench it edges out the full GLM-5.3 itself. Z.ai also reports Flash within half a point of Claude Opus 4.8 on its internal Code Bench v1.0 (29.0 vs 29.5, max effort) — vendor-run, so hold it loosely until independent reproductions land.

The independent signal, from Artificial Analysis (current index edition — every score below re-verified today):

GLM-5.3-FlashServed in a CheapestInference poolReference frontier models
Claude Opus 5 Claude Fable 5 GPT-5.6 Sol Kimi K3 GLM-5.3 Qwen3.8 Max GLM-5.3-Flash Claude Opus 5 (max effort): 63 — current index leader Claude Fable 5 (max effort, Opus 4.8 fallback — AA's evaluated config): 62 GPT-5.6 Sol (max): 61 Kimi K3 (max) — Flagship Pool: 60, tied top open-weights score GLM-5.3 (max) — Frontier Pool: 60, tied top open-weights score — blended $0.90/1M (AA) Qwen3.8 Max — Flagship Pool: 58 GLM-5.3-Flash: 57 — blended $0.10/1M (AA), #4 open-weights model on the index 6362 6160 6058 57

Honest framing, as always: Flash does not beat the closed frontier — Claude Opus 5 leads the index at 63 — and it is three points behind the best open-weights scores (Kimi K3 and GLM-5.3, tied at 60). What is remarkable is the column AA puts next to those scores:

ModelAA Intelligence IndexAA blended $/1M tokens
GLM-5.3 (max)60$0.90
Qwen3.8 Max58
GLM-5.3-Flash57$0.10

Blended = AA’s 7:2:1 cache-hit/input/output mix; scores from the current index edition. Full field and history in our monthly LLM Pareto Frontier report.

95% of GLM-5.3’s measured intelligence at a ninth of its blended price is why AA places Flash on the Pareto frontier: among everything it tracks at this intelligence level, nothing is cheaper per task. The trade-off it does not hide: speed. Flash generates ~48.6 tok/s against GLM-5.3’s ~66.6, so interactive latency is where the smaller model feels smaller.

Z.ai shipped GLM-5.3’s weights under a custom license with a security-review clause for Model-as-a-Service operators above US$10B revenue. Flash ships under plain MIT — no clauses, BF16 and FP8 checkpoints on Hugging Face. For anyone evaluating models to serve rather than just call, that difference is not cosmetic: MIT is as serving-friendly as licenses get, and it makes Flash the most permissively-licensed near-frontier model of the moment.

We serve the full GLM-5.3 unlimited in the Frontier Pool (from $71/mo, flat) since August 30. A near-frontier, MIT-licensed, 1M-context multimodal model is squarely the profile our pools exist for, and Flash is under active evaluation — the live pipeline status is always on the models-under-review page, and additions land in the changelog the day they ship.

What is GLM-5.3-Flash? Z.ai’s efficiency-tier model beside GLM-5.3: a new 320B-total / 18B-active MoE with native multimodal input (image, video, file), a 1M-token context window and MIT-licensed open weights. Artificial Analysis scores it 57 on its Intelligence Index at $0.10 per 1M tokens blended.

How much does the GLM-5.3-Flash API cost? Z.ai lists $0.15 input / $0.50 output per 1M tokens (cached input $0.03), with a 50% launch discount until September 9, 2026. Artificial Analysis measures $0.09 per Intelligence-Index task and a $0.10/1M blended rate.

Does GLM-5.3-Flash have open weights? Yes — zai-org/GLM-5.3-Flash on Hugging Face under the MIT license, in BF16 and FP8. More permissive than the full GLM-5.3, whose custom license adds a security-review clause for large Model-as-a-Service operators.

How good is GLM-5.3-Flash at coding? On Z.ai’s vendor benchmarks it scores 84.3 on Terminal-Bench 2.1 and 63.4 on DeepSWE v1.1 — above the retired 743B GLM 5.2 on both — and 48.8 on AutomationBench, marginally above the full GLM-5.3. Independently, its 57 on the AA index is three points behind the best open-weights models. Its measured output speed is ~48.6 tok/s.

Is there an unlimited GLM-5.3-Flash API subscription? Not from us today — Flash is under evaluation (live status). The full GLM-5.3 is served unlimited in the Frontier Pool from $71/mo: flat monthly fee, no token caps during your reserved hours.


CheapestInference serves Kimi K3 and Qwen3.8 Max (Flagship Pool), GLM 5.3 and MiniMax M3 (Frontier Pool) and DeepSeek V4.1 Flash and MiMo v2.5 (Core Pool) through one OpenAI- and Anthropic-compatible API on unlimited time-block subscriptions. See the pools or get started.

Claude Code alternatives in 2026: switch tools, or switch the model behind it

Searches for a “Claude Code alternative” usually start with one of two pains: the subscription limits (the five-hour usage windows belong to the Claude plan, not to the tool) or the bill (agentic coding burns tokens like nothing else you run). Before comparing tools, it helps to split the question in two, because they have different answers:

  • The harness — the terminal agent itself: the REPL, the tool-calling loop, permissions, MCP support. Claude Code is one harness; there are now several good ones.
  • The model — what actually writes the code, and what you’re actually paying for.

You can swap either one independently. Here’s the honest map of both.

The real alternatives (swapping the harness)

Section titled “The real alternatives (swapping the harness)”
ToolByModels it drivesWorth knowing
Codex CLIOpenAIGPT familyShips with ChatGPT plans; open-source harness
Gemini CLIGoogleGemini familyGenerous free tier; the harness many forks build on
OpenCodeSSTAny (bring your own API)Open-source, provider-agnostic, closest to Claude Code in feel
Qwen CodeAlibabaQwen family + any OpenAI-compatible APIGemini CLI fork tuned for Qwen
Aideropen-sourceAny (bring your own API)The veteran; git-native, great diffs
Cline / Roo Codeopen-sourceAny (bring your own API)VS Code sidebar instead of a terminal

All of these are good software. If your pain is the harness itself — you want an IDE sidebar, or a different permission model — pick from the table and you’re done. But notice what the table also says: half of these tools don’t come with a model at all. You bring an API key, and the model behind it is where the cost and the quality actually live.

The option most people miss: keep Claude Code, swap the model

Section titled “The option most people miss: keep Claude Code, swap the model”

Claude Code talks to any endpoint that implements the Anthropic Messages API — that’s two environment variables:

Terminal window
export ANTHROPIC_BASE_URL="https://api.cheapestinference.com/anthropic"
export ANTHROPIC_AUTH_TOKEN="sk-..."
export ANTHROPIC_MODEL="kimi-k3" # or glm-5.3, deepseek-v4.1-flash, ...

Your muscle memory, your .claude/ config, your MCP servers, your slash commands — everything stays. What changes is the engine and the meter: on a CheapestInference pool, usage during your reserved time blocks is a flat monthly fee, with no per-token billing and no five-hour windows.

Model-by-model setup guides:

How the per-token prices of these models compare to the closed frontier is tracked monthly in the LLM API pricing comparison.

If your only pain is “usage limit reached”

Section titled “If your only pain is “usage limit reached””

If you’re otherwise happy on a Claude subscription and just want overnight runs to survive the window resets, you don’t need to switch anything: claude-auto-retry waits out the limit and resumes the session for you. Free, one npm install.

The harnesses are mostly free and open-source (OpenCode, Aider, Cline, Qwen Code, Codex CLI’s source). What’s never free at scale is the model behind them — a serious agentic session runs millions of tokens, so the real comparison is per-token bills vs. subscriptions vs. flat-rate blocks.

Can Claude Code use models other than Claude?

Section titled “Can Claude Code use models other than Claude?”

Yes. Claude Code works with any Anthropic-compatible endpoint via ANTHROPIC_BASE_URL — no plugin, no proxy. That’s the “keep the harness, swap the model” path above.

What’s the cheapest way to run a coding agent all day?

Section titled “What’s the cheapest way to run a coding agent all day?”

A flat-rate block: agentic coding is exactly the workload where per-token billing hurts most, because the agent — not you — decides how many tokens to spend. A pool subscription makes the heavy week cost the same as the light one. For per-token numbers across the market, see the live pricing comparison.

GLM-5.3: specs, benchmarks, pricing & API options — now served unlimited

Update, August 30, 2026: the review is over — GLM-5.3 is live in our Frontier Pool as glm-5.3. Z.ai published the open weights on August 28 (zai-org/GLM-5.3, under the custom GLM-5.3 License — commercial use allowed; a security-review clause applies only to Model-as-a-Service operators above US$10B revenue), the licensing gate we describe below lifted, and the pool’s GLM slot was upgraded in place: every Frontier subscriber gets GLM-5.3 at the same flat price, and glm-5.2 requests keep working until September 30, 2026. Setup on the model page. The analysis below is as written on launch day.

GLM-5.3 (API id glm-5.3) is Z.ai’s (Zhipu AI) new coding and agentic model, released today, August 14, 2026, under the tagline “Built to Code. Ready for Cyber Defense.” The architecture story is unusual and worth being precise about: GLM-5.3 keeps the same 743B-parameter base model as GLM 5.2 — every reported gain comes from scaled-up post-training alone. On Z.ai’s own benchmark suite that post-training buys a lot: it calls GLM-5.3 the strongest open-weights coding model it has measured, and reports a cyber-security capability that grew faster than the company anticipated.

And the question this blog exists to answer: GLM-5.3 was officially under review for our pools as of launch day — and went live on August 30 (see the update above). We already serve GLM 5.2 in the Frontier Pool, so 5.3 enters the pipeline as the natural upgrade candidate for that slot. What gates the decision is not quality signals — it’s that the model is API-only today: open weights are promised roughly two weeks out, after Z.ai completes its own safety evaluation. Live status is always on our models-under-review page.

Base modelSame 743B base as GLM 5.2 — not a new pretrain; gains from extended post-training
Context windowZ.ai advertises a 1M-token variant (glm-5.3[1m], with context compaction); the standard-API spec is not yet published
ReasoningEffort levels low / high / max — default max; thinking cannot be disabled on the direct API
Open weightsPublished August 28, 2026zai-org/GLM-5.3 (fp8, 141 shards); at launch they were promised ~2 weeks out
LicenseGLM-5.3 License (custom): commercial use with attribution; Model-as-a-Service operators above US$10B revenue over 12 months must pass Z.ai’s security review. Not MIT — GLM 5.2’s terms did not carry over
List price (API)$1.40 in / $4.40 out per 1M, cached input $0.26 — unchanged from GLM 5.2
AvailabilityFirst-party API access from Z.ai; open weights since August 28; served unlimited on CheapestInference’s Frontier Pool since August 30 — works with Claude Code, OpenCode, Cline and Codex via compatible endpoints

GLM-5.3 benchmarks: what post-training bought

Section titled “GLM-5.3 benchmarks: what post-training bought”

All numbers below are Z.ai’s own reported results — vendor-run, not yet independently reproduced, and the Artificial Analysis index hasn’t rated GLM-5.3 yet. With that caveat on the table, the GLM 5.2 → GLM-5.3 deltas are the story, because the base model is identical:

BenchmarkGLM 5.2GLM-5.3Δ
Terminal-Bench 2.181.088.2+9%
Terminal-Bench 3.04.628.3+515%
DeepSWE v1.146.266.9+45%
SWE-Marathon v1.119.442.5+119%
FrontierSWE67.578.1+16%
NL2Repo48.958.0+19%
Toolathlon Verified59.973.0+22%
AutomationBench v1.0.626.248.2+84%
CyberGym77.284.5+9%

Two readings. The charitable one: the biggest jumps land on the newest, hardest agentic benchmarks (Terminal-Bench 3.0, SWE-Marathon) — exactly where post-training on agent trajectories should show up, and exactly the workloads coding agents run all day. The skeptical one: several of these benchmarks are new or Z.ai-adjacent, and until independent runs land, “strongest open-weights coding model” is a claim, not a fact. Both readings can wait two weeks — the open-weights release is when independent verification becomes possible.

The cyber-defense angle — and why the weights are two weeks out

Section titled “The cyber-defense angle — and why the weights are two weeks out”

The unusual part of this launch is that Z.ai leads with cyber security as a first-class capability, not a footnote. It reports GLM-5.3 at 84.5 on CyberGym — above its figures for Claude Mythos 5 (83.8) and GPT-5.6 Sol (83.6) — and says the model found thousands of real vulnerabilities across open-source projects during training. Z.ai’s framing is defensive: vulnerability detection at scale.

That capability is also the stated reason the weights aren’t out yet. Rather than shipping weights on day one — as it did with GLM 5.2 — Z.ai is running a staged release: API first, then open weights roughly two weeks after launch, once its own safety evaluation and hardening work is complete. Whatever you think of the trade-off, it’s a more deliberate open-weights process than the ecosystem norm, and it puts a concrete clock on the one thing our review is waiting for.

GLM-5.3 vs GLM 5.2 — the model we serve today

Section titled “GLM-5.3 vs GLM 5.2 — the model we serve today”
GLM-5.3GLM 5.2
Base743B (same base)743B
What’s newScaled post-training: agentic coding, tool use, cyber
ContextZ.ai advertises a 1M-token variant (glm-5.3[1m], with context compaction); the standard-API spec is not yet published1M per the model card
ReasoningEffort low / high / max, thinking always onStandard GLM 5.2 semantics
Open weightsPublished August 28 (GLM-5.3 License)Published (MIT)
List price (per 1M)$1.40 in / $4.40 out$1.40 in / $4.40 out
Status hereLive in the Frontier Pool since August 30Retired August 30 — migration

Because the base is unchanged, this isn’t a “new model vs old model” decision so much as a post-training upgrade — the same shape as DeepSeek’s V4-Flash-0731 build, which we upgraded in place in the Core Pool within days of release. If GLM-5.3’s weights land with a usable license and it passes our quality evaluation on real coding and agent workloads, the natural outcome is the same: the Frontier Pool’s GLM slot upgrades, and every existing subscription simply gets the better model.

So the honest status board:

  • Quality — vendor numbers are strong; our own evaluation on real agent workloads (both OpenAI and Anthropic endpoints, tool calling included): ✅ passed.
  • Fit — a post-training upgrade of a model already serving Frontier Pool workloads: as clean as fit gets.
  • Licensing — ✅ open weights published August 28 under the GLM-5.3 License.

Outcome (August 30): live. The upgrade is recorded in the changelog; the models-under-review page is where the next candidate will show up.

Is there an unlimited GLM-5.3 API? Yes — since August 30, 2026 CheapestInference serves GLM-5.3 in the Frontier Pool on flat-rate time-block subscriptions from $71/mo: no token caps during your reserved hours, model id glm-5.3, OpenAI- and Anthropic-compatible.

Does GLM-5.3 have open weights? Yes, since August 28, 2026 — zai-org/GLM-5.3 on Hugging Face, under Z.ai’s custom GLM-5.3 License: commercial use is allowed with attribution, and only Model-as-a-Service operators above US$10B aggregate revenue over 12 months must pass Z.ai’s security review first. GLM 5.2 was MIT; the terms did not carry over.

How much does the GLM-5.3 API cost? Per token, Z.ai lists $1.40 in / $4.40 out per 1M (cached input $0.26) — the same as GLM 5.2. On CheapestInference it is a flat monthly fee: from $71/mo for a daily 8-hour block, unlimited tokens.

What is the difference between GLM-5.3 and GLM 5.2? Same 743B base model — GLM-5.3 is extended post-training on top of it, targeting agentic coding, tool use, and cyber-security workloads. Z.ai reports large gains on agentic benchmarks (SWE-Marathon 19.4 → 42.5, Terminal-Bench 3.0 4.6 → 28.3); all numbers are vendor-run so far.


CheapestInference serves Kimi K3 and Qwen3.8 Max (Flagship Pool), GLM 5.3 and MiniMax M3 (Frontier Pool) and DeepSeek V4.1 Flash and MiMo v2.5 (Core Pool) through one OpenAI- and Anthropic-compatible API on unlimited time-block subscriptions. See the pools or get started.

Qwen3.8 Max: specs, benchmarks, pricing & API options — now live in the Flagship Pool

Qwen3.8 Max (also written “Qwen 3.8 Max”; API id qwen3.8-max) is Alibaba’s flagship model, announced July 19: a 2.4-trillion-parameter system with a 1M-token context window, scoring 58 on the independent Artificial Analysis Intelligence Index (v4.1.1) — top-five territory, two points behind Kimi K3 (60), the current open-weights ceiling. As we chart below, that score at Qwen’s list price lands it on the price-vs-intelligence Pareto frontier — and knocks Claude Sonnet 5 off it.

Update, August 14, 2026: the review is over — Qwen3.8 Max is live in our Flagship Pool. Alibaba shipped the open-weight variant on August 13, the licensing gate we describe below lifted, and every Flagship subscriber can now call it with model id qwen3.8-max — unlimited, flat-rate, from $199/mo, next to Kimi K3. Setup, specs and examples: Qwen3.8 Max API — pricing, access & subscription.

Terminal window
curl https://api.cheapestinference.com/v1/chat/completions \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"model": "qwen3.8-max", "messages": [{"role": "user", "content": "Hello"}]}'

The analysis below is the review that got it there, kept as published (August 4) with the status lines updated.

Architecture~2.4T total parameters (MoE details unpublished)
Context window1M tokens
Open weightsReleased August 13, 2026 — Qwen3.8-2.4T-A95B, the open variant of the Max
VisionYes — image input
List price (API)$2 input / $6 output per 1M tokens (cached input from $0.25)

The benchmark picture: 58 on the Artificial Analysis index (v4.1.1) puts Qwen3.8 Max above every previous Qwen release and within two points of Kimi K3 (60). Independent benchmarking is ongoing; active-parameter counts and MoE configuration haven’t been published, so per-token compute cost can’t be derived yet.

The head-to-head everyone is asking for — the two highest-scoring models in the open(-ing) ecosystem, and on paper they’re complements rather than rivals:

Qwen3.8 MaxKimi K3
AA Intelligence Index5860
Parameters~2.4T (MoE, config unpublished)~2.8T MoE
Context window1M tokens1M tokens
List price (in / out per 1M)$2.00 / $6.00$3.00 / $15.00
Open weightsPublished August 13, 2026 (2.4T-A95B)Published July 27, 2026
Status hereLive in the Flagship Pool since August 14Live in the Flagship Pool

K3 holds the intelligence crown and the agentic-coding pedigree; Qwen3.8 Max answers with 2.5× cheaper output at two index points’ distance, plus standard sampling controls. One pool serving both covers the two profiles that matter — peak agentic reasoning and tunable long-context breadth — which is exactly what the Flagship Pool now does.

Qwen3.8 Max on the price-vs-intelligence Pareto frontier

Section titled “Qwen3.8 Max on the price-vs-intelligence Pareto frontier”

A model is on the frontier when nothing tracked is both smarter and cheaper. At index 58 for a $6.00/1M list output price, Qwen3.8 Max steps onto the frontier — five points above Claude Sonnet 5 at 40% lower list price — and pushes Sonnet 5 off it:

Served in a CheapestInference poolUnder reviewReference frontier modelsPareto frontier
4045 5055 60 $0$10 $20$30 $40$50 List output price — $ per 1M tokens AA Intelligence Index ↑ DeepSeek V4-Flash-0731 — Core Pool: index 50 at $0.28/1M — on the frontier MiniMax M3 — Frontier Pool: index 44 at $1.20/1M GLM 5.2 — Frontier Pool: index 53 at $4.40/1M — on the frontier Qwen3.8 Max — Flagship Pool: index 58 at $6.00/1M — on the frontier Gemini 3.5 Flash: index 50 at $9.00/1M Claude Sonnet 5: index 53 at $10.00/1M — pushed off the frontier by Qwen3.8 Max Kimi K3 — Flagship Pool: index 60 at $15.00/1M — on the frontier Claude Opus 4.8: index 56 at $25.00/1M Claude Opus 5: index 61 at $25.00/1M — on the frontier GPT-5.6 Sol: index 59 at $30.00/1M Claude Fable 5: index 60 at $50.00/1M (AA config: max effort, Opus 4.8 fallback) V4-Flash-0731 MiniMax M3 GLM 5.2 Gemini 3.5 Flash Sonnet 5 Qwen3.8 Max Kimi K3 Opus 4.8 Claude Opus 5 GPT-5.6 Sol Claude Fable 5 Qwen3.8 Max: five index points above Sonnet 5 at 40% lower list output price

Four of the five models on that frontier — V4-Flash-0731, GLM 5.2, Qwen3.8 Max and Kimi K3 — are served here on flat rate. The monthly-updated, full-field version of this chart (with cost-per-task data and edition history) lives in our LLM Pareto Frontier report.

What gated the decision — and how it resolved

Section titled “What gated the decision — and how it resolved”

When this review was published (August 4), Qwen3.8 Max had no open weights and no open license. Qwen’s open releases (3.5, 3.6) shipped under Apache 2.0; its Max tier had historically stayed closed — a tension the community debated openly since the preview shipped. Our review status was explicit that licensing, not quality, was the gate.

On August 13 Alibaba resolved it: Qwen3.8-2.4T-A95B — the open-weight variant of the Max — shipped on Hugging Face and ModelScope, followed on August 14 by the dense Qwen3.8-27B under Apache 2.0. The final scorecard:

  • Quality — reviewed on real agent workloads through both our OpenAI and Anthropic endpoints, including tool calling: ✅ passed.
  • Fit — a second flagship-class model with a different profile (hybrid reasoning, standard sampling, 1M context, vision) next to Kimi K3: ✅ strong.
  • Licensing — ✅ open weights published August 13.

Result: live in the Flagship Pool on August 14 — the pipeline’s fastest gate-to-launch turnaround so far. The models-under-review board and the changelog reflect it.

Is there an unlimited Qwen3.8 Max API? Yes — live since August 14, 2026: the CheapestInference Flagship Pool serves Qwen3.8 Max with no token caps during your reserved hours, from $199/month for a daily 8-hour block, on the same subscription as Kimi K3. Model id qwen3.8-max; setup on the model page. Seats are very limited.

Does Qwen3.8 Max have open weights? Yes, as of August 13, 2026: Alibaba published Qwen3.8-2.4T-A95B, the open-weight variant of the Max, on Hugging Face and ModelScope — and the dense Qwen3.8-27B followed on August 14 under Apache 2.0.

How much does the Qwen3.8 Max API cost? Per token, list price is $2.00 per 1M input tokens and $6.00 per 1M output, with cached input from $0.25 — a 100M-token month lands around $200–600 depending on cache-hit rate and output mix. The credit-based subscription plans we analyzed in Qwen coding plans, explained cap usage per 5-hour and 7-day windows. For heavy use, our flat-rate unlimited route starts at $199/month.

What is the context window of Qwen3.8 Max? 1M tokens, per Alibaba’s published spec for the model.


CheapestInference serves Kimi K3 and Qwen3.8 Max (Flagship Pool), GLM 5.3 and MiniMax M3 (Frontier Pool) and DeepSeek V4.1 Flash and MiMo v2.5 (Core Pool) through one OpenAI- and Anthropic-compatible API on unlimited time-block subscriptions. See the pools or get started.