Tag: AI Coding

  • GLM-5.3-Flash vs Qwen3.8-Flash-Next: Which Cheap Coder Wins

    GLM-5.3-Flash beats Qwen3.8-Flash-Next on coding and costs less to rent: $0.075 per million input tokens on promo through September 9, versus roughly $0.15 on Qwen’s hosted Flash tier. Qwen wins on agentic work and activates 6B parameters against GLM’s 18B, so it is the better model to own. Rent GLM. Self-host Qwen.

    Two Chinese labs shipped a frontier-adjacent open-weight model on the same day. August 26, 2026: Z.ai released GLM-5.3-Flash, Alibaba released Qwen3.8-Flash-Next. Same week, same price bracket, and — as we will get to — very nearly the same architecture.

    This is the comparison that matters for anyone paying an API bill this quarter. Here is what the numbers actually say.

    What are GLM-5.3-Flash and Qwen3.8-Flash-Next?

    Both are sparse mixture-of-experts models built for cheap, long-context, agentic work. GLM-5.3-Flash is the multimodal one with a 1M-token window and an MIT license. Qwen3.8-Flash-Next is a preview of the Qwen4 architecture that activates only 6B parameters per token. Both released August 26, 2026.

    GLM-5.3-Flash: 320B total, 18B active, MIT

    Z.ai’s model carries 320B total parameters with 18B active per token, across 45 layers — 34 linear, 11 full attention — trained on a 30T-token corpus, per LLM-Stats’ launch breakdown.

    It handles text, image and video. The context window is 1,048,576 input tokens with 131,072 output tokens. The license is MIT — the most permissive terms of any model at this capability tier.

    Z.ai claims a 3x attention compute reduction and 4.4x KV cache savings versus the full GLM-5.3.

    Qwen3.8-Flash-Next: 6B active, Qwen4 preview

    Alibaba’s model is 125B in the main body plus a 51B n-gram table and a 4B multi-token-prediction head — roughly 180B stored — but only 6B parameters fire per token. It needs one-ninth the compute of Qwen3.7-Plus.

    Native context is 262,144 tokens, extensible to 1M with YaRN. The license is Qwen Community 1.0, not MIT. Alibaba reports up to 7.6x prefill and 4.9x decoding speedups at 1M tokens.

    How much does each model cost per million tokens?

    GLM-5.3-Flash is cheaper to rent, and it is not close during the promo. Z.ai lists $0.15 input, $0.03 cached input, $0.50 output per million tokens, with 50% off through September 9, 2026. Qwen3.8-Flash-Next has no first-party hosted list price at all — it shipped as weights only.

    Spec GLM-5.3-Flash Qwen3.8-Flash-Next
    Released Aug 26, 2026 Aug 26, 2026
    Total / active params 320B / 18B ~180B stored / 6B
    Native context 1,048,576 tokens 262,144 (1M via YaRN)
    Modalities Text, image, video Text, vision
    License MIT Qwen Community 1.0
    List input / output $0.15 / $0.50 No first-party rate
    Promo input / output $0.075 / $0.25 (to Sep 9)
    Cached input $0.03 Not published
    Nearest hosted sibling Qwen3.8-Flash: $0.16 / $0.47

    What that gap costs on a real workload

    Run 100M input and 20M output tokens a month — a mid-sized coding agent deployment. On GLM’s promo rate that is $7.50 plus $5.00, or $12.50. On Qwen3.8-Flash’s QwenCloud rate of $0.16 / $0.47, it is $16.00 plus $9.40, or $25.40.

    Roughly 2x. Both are rounding errors next to Qwen3.8-Max at $2.00 / $6.00 input-output — the Flash tier undercuts it by more than 10x on input, as DataCamp documented.

    Caching is where GLM pulls further ahead. At $0.03 per million cached input tokens, a repeated 500K-token repo context costs 1.5 cents to re-read. We covered the same dynamic in our breakdown of the cheapest 1M context model.

    Which is better for coding, GLM-5.3-Flash or Qwen3.8-Flash-Next?

    GLM-5.3-Flash wins coding. It scores 63.4 on DeepSWE 1.1 against Qwen’s 58.7, and BenchLM ranks it #13 of 146 on coding versus Qwen at #28. Qwen wins the agentic category decisively — #7 of 140 against GLM’s #36 — so the answer depends on whether your job is writing code or running tools.

    The benchmark split

    Benchmark GLM-5.3-Flash Qwen3.8-Flash-Next
    DeepSWE 1.1 63.4 58.7
    SWE-bench Pro Not published 62.5
    Toolathlon 78.4 Behind GLM
    Terminal Bench 2.1 84.3 Not published
    AutomationBench 48.8 Not published
    GPQA Diamond Not published 91.7
    LiveCodeBench v6 Not published 91.9
    CharXiv-R 89.4% 90.6%
    Agents’ Last Exam Behind Qwen 24.3 pass@1
    BenchLM overall 61.3 (#58/228) 61.3 (#57/228)
    LLM-Stats score 51.6 (#11) 50.5 (#14)

    Note the dead heat at the top line: both land on 61.3/100 at BenchLM, one rank apart. The aggregate hides the split underneath it.

    Where Qwen actually wins

    Qwen’s agentic numbers are the story. SWE-bench Pro 62.5 against Claude Opus 4.6 Max’s 53.4. CoWorkBench 73.9 against 68.2. JobBench 55.7 against 36.6 — a 19-point gap over a frontier closed model.

    It also takes instruction following, ranking #10 of 42 at 91.2. GLM is not measured on that axis.

    Reasoning is Qwen’s weak spot: 35.9 on Humanity’s Last Exam versus Opus’s 40.0. GLM wins the head-to-head on HLE and NL2Repo, per LLM-Stats’ comparison page.

    Why did two rival labs ship the same architecture?

    Because the efficiency math has one answer right now. MarkTechPost’s teardown found both models independently adopted four identical design choices — and the convergence is the real news, more than either model’s scorecard.

    The four shared choices

    • 3:1 linear attention ratio. Three cheap linear layers per full attention layer, compressing history into fixed recurrent states.
    • 4x context compression with sparse attention capped at exactly 2,048 tokens via a learned indexer. Both picked the same number.
    • Four gated residual streams replacing the single-stream transformer, controlled by data-dependent gates.
    • Muon optimizer, with fused matrices split before orthogonalization during training.

    Where they split: RoPE versus NoPE

    GLM dropped rotary position embeddings entirely, relying on linear layers for implicit position. Qwen kept RoPE — after finding that NoPE models “often failed to stop generating” during post-training alignment.

    That is a genuinely useful negative result: a failure mode invisible in pre-training metrics. Not everyone is convinced either way. MiniMax’s ablations found linear attention harms multi-hop reasoning, and M3 uses sparse softmax only.

    Is self-hosting cheaper than the API?

    For GLM-5.3-Flash, no. The FP8 checkpoint is about 306 GiB of weights needing roughly 386 GiB of VRAM — a minimum 8-GPU Hopper node. Two H200s at 282 GiB combined do not fit. For Qwen3.8-Flash-Next at 6B active, the answer flips: fewer active parameters means far cheaper serving at scale.

    The GLM hardware ladder, per LumaDock’s deployment guide:

    • BF16: ~772 GiB VRAM. Multi-node territory.
    • FP8: ~306 GiB weights, ~386 GiB recommended. 8-GPU Hopper node.
    • 4-bit GGUF: ~160 GB before overhead. Two to four GPUs, with quality trade-offs.
    • 1-bit to 3-bit (Unsloth): 100–128 GB combined RAM/VRAM. Mac Studio or DGX class.

    LumaDock’s verdict is blunt: an 8-GPU node costs more per day than most teams spend on the API per month. At $12.50 a month for our example workload, that is not a close call.

    Qwen is the opposite trade. Six billion active parameters is what makes it cheap to serve — the same argument we ran through on Qwen3.8-Max open weights versus API. The catch is the license: Qwen Community 1.0, not MIT. Read it before you build a product on it.

    Which model should you pick?

    Pick by workload, not by leaderboard. GLM for code generation, multimodal input and anything cost-sensitive you plan to rent. Qwen for tool-calling agents, instruction-heavy pipelines and any deployment you intend to own outright.

    Use case Pick Why
    Code generation / repo refactors GLM-5.3-Flash DeepSWE 63.4 vs 58.7; coding #13 vs #28
    Tool-calling agents Qwen3.8-Flash-Next Agentic #7/140; JobBench 55.7
    Document / video understanding GLM-5.3-Flash Multimodal #7/35; video support
    Long-context RAG GLM-5.3-Flash 1M native; $0.03 cached input
    On-prem / air-gapped Qwen3.8-Flash-Next 6B active; runs on far less iron
    Commercial product, license risk GLM-5.3-Flash MIT beats Qwen Community 1.0
    Lowest cost per token today GLM-5.3-Flash $0.075 / $0.25 through Sep 9
    Structured output pipelines Qwen3.8-Flash-Next Instruction following #10/42, 91.2

    Frequently asked questions

    Is GLM-5.3-Flash really MIT licensed?

    Yes. Z.ai released it under MIT, which permits commercial use, modification and redistribution without a revenue threshold. Qwen3.8-Flash-Next ships under Qwen Community License 1.0, which carries its own conditions.

    When does the GLM-5.3-Flash promo price end?

    September 9, 2026. After that, input goes from $0.075 to $0.15 and output from $0.25 to $0.50 per million tokens — a doubling. Budget for it now.

    Can I get Qwen3.8-Flash-Next through an API?

    Not at a first-party list price. It shipped as open weights on Hugging Face. The nearest hosted option is Qwen3.8-Flash on QwenCloud at $0.16 input / $0.47 output; OpenRouter lists a comparable Flash tier at $0.15 / $0.47.

    Which has the bigger context window?

    GLM-5.3-Flash, at 1,048,576 tokens native. Qwen3.8-Flash-Next is 262,144 native and reaches 1M only with YaRN extension.

    Is either one faster?

    BenchLM clocks Qwen3.8-Flash-Next at 73 tokens per second with 30.22s first-token latency; GLM is listed as not measured. Alibaba separately reports up to 7.6x prefill and 4.9x decoding speedups at 1M tokens.

    How do these compare to Western frontier models?

    On agentic coding, favorably. Qwen’s SWE-bench Pro 62.5 beats Claude Opus 4.6 Max’s 53.4. On broad reasoning they still trail — Qwen’s HLE 35.9 versus Opus’s 40.0.

    What hardware do I need to run GLM-5.3-Flash locally?

    An 8-GPU Hopper node for FP8. Community 1-bit to 3-bit GGUF builds run on 100–128 GB of combined RAM/VRAM, with real quality loss.

    The bottom line

    Rent GLM-5.3-Flash. Own Qwen3.8-Flash-Next.

    If you are buying tokens, GLM wins on price, coding accuracy, context length and license, and the $0.03 cached-input rate makes long-context agents genuinely cheap. Move before September 9 and lock in your usage patterns while the promo lasts.

    If you are standing up your own inference, Qwen’s 6B active footprint is the decisive number. Eighteen billion active parameters is three times the serving cost per token, and at scale that swamps a leaderboard gap of five DeepSWE points.

    The one scenario where you should not pick either: a commercial product where license terms carry legal weight and you cannot accept Qwen Community 1.0. There, GLM’s MIT license ends the argument by itself. For a wider look at coding agents, see our comparison of Claude Code vs Codex CLI and GLM-5.3 vs DeepSeek V4 Pro.

    Sources

  • Claude Code vs Codex CLI: Which Coding Agent Wins on Cost

    Claude Code vs Codex CLI comes down to token math, not vibes. Codex bills GPT-5.6 Sol at $5/$30 per million tokens. Claude Opus 5 runs $5/$25 — but Anthropic’s own docs warn its newer tokenizer emits roughly 30% more tokens for the same text. That erases the discount. Codex wins on cost per solved task. Claude Code wins on agent orchestration.

    Both agents shipped meaningful releases this month, and both are now close enough on quality that price is the deciding variable. Here is the full breakdown, with every figure sourced.

    What changed for Claude Code vs Codex CLI in the last week?

    Anthropic shipped four Claude Code builds between August 13 and August 18, 2026. The headline change is subagent forking on by default. OpenAI’s Codex CLI moved earlier in the month, adding a one-command importer that pulls your Claude Code setup straight into Codex.

    Claude Code v2.1.232 made subagent_type: "fork" the default, so spawned agents inherit the full conversation and prompt cache. It also added cross-session @ mentions, letting one session message another by name.

    v2.1.233 added GitLab merge request support on August 15. v2.1.234, first seen August 18, added automatic session continuation when you hit a usage limit — a direct answer to the biggest complaint about subscription-metered agents.

    Codex CLI v0.147.0, dated August 4, 2026, added --approve-for-me for auto-reviewed approvals, opt-in support for the MCP 2026-07-28 protocol, and /import, which pulls supported setup and recent chats from Claude Code and Cursor. OpenAI is openly courting defectors.

    Which is better for coding, Claude Code or Codex CLI?

    On raw capability the two are inside each other’s error bars. The official Terminal-Bench harness leaderboard puts Claude Code first by 0.7 points. Artificial Analysis, running the same benchmark against models rather than harnesses, puts OpenAI first by 0.4 points. Neither gap is decisive.

    The harness leaderboard gives Claude Code the edge

    On the official Terminal-Bench 2.1 leaderboard, Claude Code running Fable 5 sits at 83.8% (±1.2), submitted June 7, 2026. Codex with GPT-5.5 follows at 83.1% (±1.1).

    Below that, Cursor CLI on Grok 4.5 scores 79.3%, Claude Code on Opus 4.8 hits 78.9%, and Codex on GPT-5.6 Terra lands at 78.4%. Gemini CLI on Gemini 3.1 Pro trails at 65.8%.

    Read that spread carefully: the harness matters less than the model inside it. Swapping Fable 5 for Opus 4.8 inside the same Claude Code wrapper costs 4.9 points.

    The model leaderboard gives OpenAI the edge

    Artificial Analysis runs Terminal-Bench v2.1 across 89 curated tasks spanning software engineering, sysadmin, data processing, model training and security. GPT-5.6 Sol at xhigh effort tops it at 89.5%.

    Claude Opus 5 at max effort scores 89.1%. Grok 4.6 at high effort takes third with 88.4%. A 0.4-point gap on an 89-task benchmark is roughly one third of a task. Call it a tie.

    How much do Claude Code and Codex CLI cost in 2026?

    Anthropic prices Claude Opus 5 at $5 input and $25 output per million tokens. OpenAI prices GPT-5.6 Sol at $5 and $30. On the sticker, Anthropic is 17% cheaper on output. Subscription tiers land within $20 of each other at every level.

    Token prices, side by side

    ModelInput / 1MOutput / 1MCached inputContext
    Claude Opus 5$5$25$0.50200K (1M available)
    Claude Sonnet 5$2$10$0.20200K
    Claude Fable 5$10$50$1200K
    GPT-5.6 Sol$5$30$0.501.05M
    GPT-5.6 Terra$2$12$0.201.05M
    GPT-5.6 Luna$0.20$1.20$0.021.05M
    Sources: Claude Platform pricing docs; OpenAI GPT-5.6 announcement (July 30, 2026) and published API rate card, August 18, 2026 snapshot.

    The tier structures mirror each other almost exactly. Sonnet 5 and Terra both cost $2 input. Anthropic has no answer to Luna’s $0.20/$1.20, which OpenAI claims beats Fable 5 on Agents’ Last Exam at an estimated cost per task nearly 99% lower.

    Subscription plans and what they actually buy

    • Claude Free — $0. Claude Code included, limits reset on a rolling five-hour window.
    • Claude Pro — $20/month, or $17/month billed annually. At least 5x Free usage per session.
    • Claude Max — from $100/month, in 5x and 20x tiers above Pro.
    • Codex Go — $8/month, web and CLI access only.
    • Codex Plus — $20/month, adds IDE and iOS.
    • Codex Pro — $100/month (5x) and $200/month (20x).

    One structural difference matters. Anthropic pools your usage: web, desktop, mobile and Claude Code all draw from the same bucket. Chat with Claude all afternoon and your coding agent gets less runway.

    OpenAI meters Codex in credits. Its published rate card charges 125 credits per million Sol input tokens and 750 per million output. At the standard $0.04 per credit, that is exactly the $5/$30 API rate — no subscription markup, no discount. OpenAI’s own guidance puts real-world spend at roughly $100 to $200 per developer per month.

    What is the real cost per solved task?

    Price per token is the wrong metric. What you pay is price per token multiplied by tokens consumed, and on that measure Codex currently wins by a wide margin. Two multipliers work against Claude: a heavier tokenizer and a chattier agent loop.

    The tokenizer tax nobody prices in

    Anthropic’s own pricing documentation carries a warning most buyers skip: Claude 4.7 and later use a newer tokenizer that produces about 30% more tokens for the same text than earlier models.

    Run the arithmetic. Opus 5 output at $25 per million, inflated 30%, is an effective $32.50 for the text volume that Sol bills at $30. Anthropic’s 17% headline discount becomes an 8% premium.

    The token-efficiency gap is the bigger number

    Independent head-to-head testing published by Morph puts the consumption gap at 3.2x to 4.2x. On a Figma plugin build, Codex burned 1,499,455 tokens against Claude Code’s 6,232,242. On a scheduler app, 72,579 against 234,772.

    Combine the two effects and the verdict is brutal. A 17% per-token discount against a 4.2x volume gap leaves Claude Code roughly 3.5x more expensive per completed task in that test set.

    That gap is a workflow choice, not a defect. Claude Code explores more, forks more subagents, and reads more of your repo. You are paying for breadth. Whether breadth is worth 3.5x depends entirely on whether your tasks are ambiguous or well specified.

    Which coding agent should you buy in 2026?

    Pick Codex if your work is well-specified and high-volume. Pick Claude Code if your work is exploratory, multi-repo, or heavy on parallel agents. Pick Luna or Sonnet 5 for anything routine — the flagship tier is wasted on boilerplate, and that is where most teams overspend.

    Your situationBuyMonthlyWhy
    Solo dev, tight budgetCodex Go$8Cheapest real CLI agent; token efficiency stretches it furthest
    Solo dev, daily driverClaude Pro (annual)$17Pooled usage across chat and code; cheapest flagship access
    High-volume refactorsCodex Plus or Pro$20–$2003–4x fewer tokens per task at near-identical benchmark scores
    Parallel agent swarmsClaude Max 20x$200Fork-by-default subagents, no published parallel-agent cap
    Large-context monorepoCodex on SolUsage-based1.05M-token context at flat pricing under the long-context threshold
    Routine boilerplateCodex on LunaUsage-based$0.20/$1.20 per million; 96% cheaper output than Sol
    Recommendations based on August 2026 published pricing and benchmark data.

    Is Claude Code worth $200 a month in 2026?

    Yes, if you run agents in parallel. Max 20x buys 20x the per-session allowance of Pro, and Claude Code’s fork-by-default subagents inherit the prompt cache, so parallelism is cheap in wall-clock terms. Codex reportedly caps developers at eight parallel agents.

    No, if you are a single developer running one session at a time. At that duty cycle you will not exhaust Pro’s $17 annual tier, and the extra $183 buys headroom you never touch.

    The August 18 addition of automatic session continuation at usage limits changes the calculus slightly. Hitting a cap now costs you a pause rather than a lost session, which makes the cheaper tiers more tolerable.

    For the model layer underneath these harnesses, our breakdowns of Muse Spark vs Claude Opus 5 and Gemini 3.7 Flash vs Claude Sonnet 5 cover the cost-per-coding-point math in detail.

    Frequently asked questions

    Can I switch from Claude Code to Codex CLI without redoing my setup?

    Yes. Codex CLI v0.147.0, released August 4, 2026, added /import, which pulls supported setup files and recent chats from both Claude Code and Cursor.

    Which has the larger context window?

    Codex. All three GPT-5.6 tiers carry a 1.05M-token window. Anthropic’s pricing page lists 200K as standard, noting that 4.5+ models include a 1M-token window at standard pricing.

    Does Claude Code cost extra on top of a Claude subscription?

    No. Claude Code is included on Free, Pro and Max, and shares the same usage pool as web, desktop and mobile. You can enable pay-as-you-go credits on paid plans once you hit a limit.

    Is the cheapest model good enough for coding?

    For routine work, often yes. OpenAI states Luna outperforms Fable 5 on Agents’ Last Exam at an estimated cost per task nearly 99% lower. On Terminal-Bench 2.1, Codex on Luna still scored 75.7%.

    Which agent tops the Terminal-Bench leaderboard right now?

    Claude Code with Fable 5, at 83.8%, leads the official harness leaderboard. On Artificial Analysis’s model-level run of the same benchmark, GPT-5.6 Sol leads at 89.5%.

    Do open-weight models beat either of these on cost?

    On price per token, easily. On benchmark parity, not yet at the top tier. We compared the leading options in GLM-5.3 vs DeepSeek V4 Pro.

    Will these prices hold?

    Assume not. The DeepSeek price increase showed how fast the floor can move. OpenAI cut Luna’s rate on July 30 and raised long-context rates at the same time.

    The bottom line

    Buy Codex if you are optimizing spend. The benchmark gap between the two is smaller than the measurement error, and Codex delivers that parity at roughly a third to a quarter of the token consumption. That is not a rounding difference — on a $200/month budget it is the gap between running out on day 20 and finishing the month.

    Buy Claude Code if you are optimizing throughput on ambiguous work. Fork-by-default subagents, cross-session mentions and an uncapped parallel-agent model make it the better orchestrator, and orchestration is where the next year of agent productivity gets won.

    What it depends on, precisely: if your average task ships with a clear spec and acceptance criteria, Codex is cheaper for identical output. If your average task starts with “figure out why this breaks,” Claude Code’s extra tokens are buying you something real.

    The move most teams should make is neither: run Luna or Sonnet 5 for 80% of tasks and reserve the flagship tier for the 20% that need it. That single routing decision saves more money than picking the right vendor.

    Sources

  • GLM-5.3 vs DeepSeek V4 Pro: Which Open-Weight Coder to Buy

    GLM-5.3 vs DeepSeek V4 Pro comes down to one thing: you can download DeepSeek today. Its MIT-licensed weights shipped August 12, 2026, with a 1M-token context, and DeepSeek’s own API lists $0.435 per million input tokens against $0.87 output. GLM-5.3 landed two days later with stronger cyber scores, no published per-token price, and weights held back roughly two weeks.

    Two of the most consequential open-weight coding models of the year shipped 48 hours apart. Both vendors published benchmark tables claiming frontier-class performance. Neither number has been independently replicated.

    Here is what the money actually says.

    What shipped in the GLM-5.3 vs DeepSeek V4 Pro week?

    DeepSeek V4 Pro 0813 went generally available on August 12, 2026, after a preview build dated April 24. Z.ai launched GLM-5.3 on August 14. Both target agentic coding and terminal work. Only one of them can be run on your own hardware right now.

    DeepSeek V4 Pro 0813: 1.6 trillion parameters, MIT license

    V4 Pro is a mixture-of-experts model with 1.6 trillion total parameters and 49 billion active per token, according to TechTimes’ launch coverage. Context window is 1,048,576 tokens. The license is MIT — the most permissive terms in the frontier tier.

    Artificial Analysis ranks it third out of 1,075 models evaluated on its Intelligence Index, with a score of 53, and measures output at 75.4 tokens per second with a 1.69-second time to first token.

    GLM-5.3: same base model, rebuilt post-training

    Z.ai did something unusual. GLM-5.3 reuses the 743-billion-parameter base model from GLM-5.2 with no new pre-training run, per MarkTechPost’s technical breakdown. Every gain came from post-training.

    The gains are not small. Terminal-Bench 3.0 went from 4.6 to 28.3. DeepSWE v1.1 climbed from 46.2 to 66.9. That is a roughly 45% relative jump on agentic software engineering from post-training alone.

    Which is better for coding, GLM-5.3 or DeepSeek V4 Pro?

    On raw self-reported coding scores, DeepSeek V4 Pro leads. It claims 62.7 on DeepSWE and 87.9 on Terminal-Bench 2.1. GLM-5.3 reports 66.9 on DeepSWE v1.1 and 28.3 on Terminal-Bench 3.0. The benchmarks are different versions, so the comparison is not apples to apples — and that is the whole problem.

    The benchmark numbers nobody has verified

    DeepSeek’s self-reported 87.9 on Terminal-Bench 2.1 would place it first in the world. It does not appear on the benchmark’s own board.

    The official Terminal-Bench 2.1 leaderboard is topped by Claude Code running Fable 5 at 83.8% ± 1.2%, followed by Codex with GPT-5.5 at 83.1% and Cursor CLI with Grok 4.5 at 79.3%. No DeepSeek entry exists.

    TechTimes noted the same gap: V4 Pro’s scores “have not been independently replicated by any third-party evaluator as of publication.”

    Independent evaluator Artificial Analysis runs its own Terminal-Bench v2.1 harness and gets different absolute numbers again: GPT-5.6 Sol at xhigh effort scores 89.5%, Claude Opus 5 at max effort 89.1%, Grok 4.6 at 88.4%.

    Three sources, three scales, zero cross-comparability. Treat every vendor coding number as a marketing claim until a third party runs the harness.

    Where GLM-5.3 actually wins

    Security. GLM-5.3 scores 84.5% on CyberGym, up from 77.2%, ahead of Mythos 5 at 83.8% and GPT-5.6 Sol at 83.6%. DeepSeek V4 Pro self-reports 83.3%.

    ExploitBench more than doubled, from 24.4% to 54.4%. Z.ai says the model surfaced 2,436 vulnerabilities across 269 open-source projects, 1,097 of them rated critical or high severity.

    If your workload is vulnerability triage or defensive security automation, that is the strongest open-weight number on the board.

    How much does each model cost per million tokens?

    DeepSeek is cheaper — but only if you buy direct. The same model costs roughly 2.8x more input and 2.8x more output through a marketplace. GLM-5.3 has no published per-token rate at all; Z.ai’s price table still lists GLM-5.2. That pricing opacity is a real cost.

    Metric DeepSeek V4 Pro 0813 GLM-5.3
    Launch date Aug 12, 2026 (GA) Aug 14, 2026
    Input / 1M (vendor direct) $0.435 cache miss Not published (GLM-5.2: $1.40)
    Cached input / 1M $0.003625 Not published (GLM-5.2: $0.26)
    Output / 1M (vendor direct) $0.87 Not published (GLM-5.2: $4.40)
    Input / output via OpenRouter $1.218 / $2.436 GLM-5.2: $0.50 / $3.15
    Parameters 1.6T total / 49B active 743B base (shared with 5.2)
    Context window 1,048,576 tokens Not disclosed
    License MIT, weights live Weights ~2 weeks post-launch
    Subscription option None $18 / $80 / $168 per month

    Sources: TechTimes, OpenRouter, OpenRouter GLM 5.2.

    The marketplace markup is the hidden tax

    Three sources quote three different prices for the identical DeepSeek model. TechTimes lists DeepSeek’s own $0.435 / $0.87. OpenRouter lists $1.218 / $2.436. Artificial Analysis measures $1.32 input and $3.96 output, with a blended rate of $0.69 per million at a 7:2:1 ratio.

    On a 500-million-token month at a typical 3:1 input-output split, that spread is real money: roughly $272 buying direct against roughly $685 through OpenRouter. Same weights, same model ID, 2.5x the invoice.

    DeepSeek has also signaled another increase is coming, with no timeline. Anyone budgeting off today’s rate should read our breakdown of the DeepSeek price increase that ended the AI price war.

    Subscription versus per-token

    Z.ai’s answer to pricing volatility is a flat plan. The GLM Coding Plan runs $18/month for Lite, $80 for Pro and $168 for Max, with weekly credit quotas of 10,000, 60,000 and 140,000 respectively.

    For a solo developer hammering an agent all day, $18 flat beats metered billing on predictability alone. For an API-backed product with variable load, per-token wins on unit economics.

    Can you actually download the weights?

    DeepSeek yes, GLM-5.3 not yet. This is the single most decisive difference between the two models and it gets buried under benchmark tables. An open-weight model you cannot download is a closed model with a press release.

    Z.ai says GLM-5.3 weights land roughly two weeks after the August 14 launch, once “safety evaluation and hardening” finish. Until then, access is API, GLM Coding Plan, or ZCode only.

    That delay is defensible given the model’s exploit-generation scores. It is still a delay, and it has three concrete consequences:

    • No air-gapped deployment. Regulated teams that cannot send code to a Chinese API endpoint are locked out entirely.
    • No cost floor. You cannot benchmark self-hosted cost per token against the API rate, which is the entire argument for open weights.
    • No fork risk protection. If Z.ai changes pricing or terms, there is no downloaded checkpoint to fall back on.

    DeepSeek’s MIT license carries none of those problems. For the economics of running weights yourself, see our analysis of what self-hosting Qwen3.8-Max really costs.

    Which model should you pick for your use case?

    Pick DeepSeek V4 Pro for long-context work, self-hosting and cost-sensitive production. Pick GLM-5.3 for security workloads and for flat-rate interactive coding. Neither beats Claude Fable 5 or GPT-5.5 on the independently verified Terminal-Bench leaderboard, so neither is the right call if raw capability is your only constraint.

    Use case Pick Why
    Self-hosted / air-gapped DeepSeek V4 Pro MIT weights available now
    Large-repo refactors DeepSeek V4 Pro 1M-token context confirmed
    High-volume API product DeepSeek V4 Pro $0.435 / $0.87 direct rate
    Vulnerability triage GLM-5.3 84.5% CyberGym, top open score
    Solo dev, predictable bill GLM-5.3 $18/month Coding Plan floor
    Long-horizon agent runs GLM-5.3 Terminal-Bench 3.0: 4.6 to 28.3
    Absolute best coding score Neither Fable 5 leads at 83.8% verified

    Is GLM-5.3 worth it in 2026?

    Yes, but narrowly. GLM-5.3 is worth paying for if you are doing security work or want a fixed monthly bill. It is not worth waiting for if you need weights on your own GPUs this quarter, and it is not the best coder available at any price.

    Z.ai calls it “the strongest open-weights coder on the market.” Its own numbers complicate that. On Terminal-Bench 3.0, GLM-5.3’s 28.3 trails Claude Fable 5 at 33.7 and GPT-5.6 Sol at 34.6. On DeepSWE v1.1, its 66.9 trails Kimi K3 at 67.5 and Fable 5 at 69.7.

    The one benchmark where GLM-5.3 leads outright is Z.ai Code Bench — Z.ai’s own benchmark. It scores 31.4% at roughly 50,000 tokens per task against Claude Opus 4.8 at 29.5% using 120,000 tokens. Efficient, and self-graded.

    Efficiency is the real story there. Beating a frontier closed model while spending 58% fewer tokens per task is a genuine margin advantage — if the benchmark holds up externally.

    Frequently asked questions

    Is DeepSeek V4 Pro open source?

    The weights are MIT-licensed and available, which permits commercial use, modification and redistribution. Training data and code are not released, so it is open-weight rather than fully open-source.

    When do GLM-5.3 weights release?

    Z.ai said roughly two weeks after the August 14, 2026 launch, pending safety evaluation and hardening. That points to late August. No license has been confirmed.

    What is the cheapest way to run DeepSeek V4 Pro?

    Direct through DeepSeek’s API at $0.435 per million input tokens on a cache miss and $0.87 output. Cache hits drop input to $0.003625. Marketplace routing costs roughly 2.5x more.

    Does GLM-5.3 beat Claude on coding?

    No, on the numbers Z.ai published. GLM-5.3 scores 28.3 on Terminal-Bench 3.0 against Claude Fable 5’s 33.7. It leads only on Z.ai’s internal Code Bench and on CyberGym.

    Why do Terminal-Bench scores differ between sources?

    Because the harness and agent scaffold change the result. Claude Code with Fable 5 scores 83.8% on the official 2.1 board, while Artificial Analysis’s own v2.1 run puts GPT-5.6 Sol at 89.5%. Only compare scores measured by the same evaluator.

    Which model has the bigger context window?

    DeepSeek V4 Pro, at 1,048,576 tokens confirmed by both OpenRouter and Artificial Analysis. Z.ai has not disclosed GLM-5.3’s context length.

    Is GLM-5.3’s cyber capability a risk?

    Z.ai treated it as one, holding weights for safety hardening after ExploitBench scores doubled to 54.4%. The model reportedly found 1,097 critical or high-severity vulnerabilities across 269 open-source projects.

    The bottom line

    Buy DeepSeek V4 Pro. Today, direct from DeepSeek, at $0.435 in and $0.87 out.

    It has the weights you can actually download under MIT, the 1M-token context you can actually verify, and a price roughly 3x below what the same model costs through a marketplace. Third place out of 1,075 models on Artificial Analysis’s Intelligence Index is enough capability for the overwhelming majority of production coding work.

    Buy GLM-5.3 in exactly two situations: your workload is security-focused, where 84.5% on CyberGym is the best open-weight number published; or you want a $18-to-$168 monthly ceiling instead of metered billing that DeepSeek has already warned will rise again.

    And discount both vendors’ headline coding claims. DeepSeek’s 87.9 on Terminal-Bench 2.1 would top the world leaderboard, and DeepSeek is not on that leaderboard. Until a third party runs the harness, those are sales figures, not results. For a comparison where the numbers were independently checked, see our breakdown of cost per coding point across Gemini 3.7 Flash and Claude Sonnet 5, and our look at Meta’s 4x cheaper coding model.

    Sources

  • Muse Spark vs Claude Opus 5: Meta’s 4x Cheaper Coding Model

    Muse Spark vs Claude Opus 5 comes down to one number: price. Meta’s coding model lists at $1.25 per million input tokens against Anthropic’s $5, and Muse Spark 1.1 currently sits at the top of Scale’s SWE-bench Pro public leaderboard with 61.5%. Claude Opus 5 is still the stronger generalist. For high-volume agentic coding, Meta is now the cheaper buy — by a wide margin.

    What is Muse Spark, and why does it matter right now?

    Muse Spark is Meta’s first closed, paid model line, aimed squarely at coding. Muse Spark 1.1 launched commercially on July 9, 2026 at $1.25 per million input tokens and $4.25 per million output tokens, with $20 in free credits for new accounts, according to MarketScale.

    Muse Spark 1.2 followed on August 5, 2026, with a 1M-token context window and the same headline rates.

    A day later, Meta shipped Muse Code, an agent built on 1.2 that Forbes described as taking on “whole engineering jobs across large repositories, planning the change, writing the code, and checking the result.”

    That is the competitive set: not a chatbot, an autonomous coding worker priced to undercut everyone.

    The contributor tier is the actual product

    Meta runs two price lists. The standard tier is $1.25 in / $4.25 out. The contributor tier is $0.10 in / $0.20 out — roughly 12x to 21x cheaper, per Forbes — and the price of entry is letting Meta train on your prompts and completions.

    Cached input on the contributor tier drops to $0.01 per million tokens, according to MetaTalks.

    This is Meta’s old playbook repriced for developers. The product is the data. The discount is what they will pay for it.

    Which is better for coding, Muse Spark or Claude Opus 5?

    On the hardest public agentic benchmark, Muse Spark leads. On broad capability, Claude wins. Scale’s SWE-bench Pro public leaderboard puts Muse Spark 1.1 first at 61.5%, ahead of gpt-5.4 (xHigh) at 59.1% and claude-opus-4-6 (thinking) at 51.9%. Meta’s own numbers tell a less flattering story elsewhere.

    What SWE-bench Pro actually measures

    SWE-bench Pro is Scale’s contamination-resistant successor to SWE-bench Verified. It spans 1,865 tasks across 41 repositories — 731 public instances from GPL-licensed code, 276 from private startup codebases, and 858 held out entirely.

    The metric is resolve rate: the patch must fix the issue and not break existing tests.

    The lead holds on the harder split. On the private dataset, Muse Spark 1.1 scores 51.5%, claude-opus-4-6 (thinking) 47.1%, and gpt-5.4 (xHigh) 43.4%.

    Where Claude still wins

    Meta’s own comparison is the tell. On Meta’s internal coding benchmark, Muse Spark 1.2 scores 70.6% against Claude Opus 5’s 79.4% — a gap Meta published itself.

    On Terminal-Bench 2.1, Artificial Analysis ranks Claude Opus 5 (Adaptive Reasoning, Max Effort) at 89.1%, behind GPT-5.6 Sol (xhigh) at 89.5% and ahead of Grok 4.6 (high) at 88.4%. Muse Spark 1.2’s published Terminal-Bench 2.1 figure is 82.9%.

    Read that honestly: Meta is roughly 6 to 9 points behind the frontier on capability, and roughly 4x cheaper on input tokens. That is the entire trade.

    Muse Spark vs Claude Opus 5: how much does each cost?

    Claude Opus 5 lists at $5 per million input tokens and $25 output on Anthropic’s official pricing page. Muse Spark 1.2 lists at $1.25 and $4.25. That is 4x on input and 5.9x on output. On the contributor tier the gap widens to 50x and 125x.

    Price and spec comparison

    Model Input / 1M Output / 1M Context SWE-bench Pro (public)
    Muse Spark 1.2 (standard) $1.25 $4.25 1M 61.5% (v1.1)
    Muse Spark (contributor) $0.10 $0.20 1M 61.5% (v1.1)
    Claude Opus 5 $5.00 $25.00 1M (Opus-class) Not yet listed
    Claude Opus 4.6 $5.00 $25.00 1M (beta) 51.9%
    GPT-5.6 Sol $5.00 $30.00 1.05M Not yet listed
    GPT-5.6 Terra $2.00 $12.00 Not yet listed
    GPT-5.4 $2.50 $15.00 1M+ 59.1% (xHigh)
    Gemini 3.1 Pro Preview $2.00 (under 200k) $12.00 (under 200k) 1M 46.1%

    Sources: vendor pricing pages and Scale’s public leaderboard, retrieved August 16, 2026.

    Cost per resolved task

    Benchmarks without a price tag are marketing. Here is the arithmetic that matters.

    Assume one long-horizon agentic task burns 500,000 input tokens and 50,000 output tokens — realistic for the uncapped, 250-turn runs Scale used for its top entries. Divide the token cost by the model’s resolve rate to get the expected cost of one successfully resolved issue.

    • Muse Spark, contributor tier — $0.06 per attempt ÷ 61.5% = $0.10 per resolved task
    • Muse Spark 1.2, standard — $0.84 ÷ 61.5% = $1.37
    • GPT-5.4 (xHigh) — $2.00 ÷ 59.1% = $3.38
    • Gemini 3.1 Pro — $2.90 ÷ 46.1% = $6.29 (long-context rate: $4 / $18 above 200k tokens)
    • Claude Opus 4.6 — $3.75 ÷ 51.9% = $7.23

    Our calculation, using the listed rates above. At standard pricing Meta is 5.3x cheaper per resolved task than Opus 4.6. On the contributor tier it is 72x cheaper.

    Run 10,000 agentic tasks a month and that is roughly $13,700 on Muse Spark standard versus $72,300 on Opus. The same workload on the contributor tier costs about $1,000 — and Meta keeps your codebase patterns.

    Is Muse Spark worth it in 2026?

    For high-volume, well-specified, repetitive engineering work: yes, decisively. For novel architecture, security-sensitive code, or anything where a wrong patch is expensive, no. The 6-to-9-point capability gap against Claude Opus 5 is small in a benchmark table and large in a production incident.

    Which model should you pick?

    Use case Pick Why
    Bulk refactors, test generation, dependency bumps Muse Spark 1.2 (standard) 61.5% resolve rate at $1.37 per resolved task
    Open-source or non-proprietary code Muse Spark (contributor) $0.10 per resolved task; data sharing costs you nothing
    Proprietary IP, regulated or security-critical code Claude Opus 5 79.4% on Meta’s own benchmark; no training-data trade
    Terminal-heavy and sysadmin automation GPT-5.6 Sol or Claude Opus 5 89.5% and 89.1% on Terminal-Bench 2.1
    Cost-capped agent fleets at scale GPT-5.6 Luna or Terra Luna lists at $0.20 / $1.20 per million tokens
    Long-context repo analysis on a budget Gemini 3.1 Pro (batch) Batch mode halves rates to $1.00 / $6.00

    One caution on the benchmark itself. Forbes noted Meta published its results “as images without methodology documentation,” which is a reason to weight Scale’s independent leaderboard over Meta’s slides.

    What about GPT-5.6 and Gemini 3.1 Pro?

    OpenAI answered the price war directly. Its July 30, 2026 pricing post introduced Luna at $0.20 / $1.20 and Terra at $2.00 / $12.00 per million tokens, claiming Luna beats Fable 5 on Agents’ Last Exam at “an estimated cost per task nearly 99% lower.”

    Google sits in the middle. Gemini 3.1 Pro Preview is $2.00 / $12.00 under 200k tokens, rising to $4.00 / $18.00 above it — and 46.1% on SWE-bench Pro public is the weakest score of the frontier group.

    The pattern across all three: capability is converging, price is diverging. We saw the same dynamic when DeepSeek raised prices up to 1,100% overnight and when Qwen3.8-Max open weights forced a self-hosting math check.

    Frequently asked questions

    Is Muse Spark open weights?

    No. Muse Spark is Meta’s first closed, commercial model line — a break from the open Llama releases. Access is API-only, and Muse Spark 1.1 launched behind a waitlist.

    What is the catch with the $0.10 contributor tier?

    Meta may use your prompts and responses to improve its products. If your prompts contain proprietary source code, customer data, or unreleased product logic, the discount is not a discount.

    Does Muse Spark beat Claude Opus 5?

    Not on capability. Meta’s own published comparison shows Muse Spark 1.2 at 70.6% versus Claude Opus 5 at 79.4%. Muse Spark 1.1 does lead Scale’s SWE-bench Pro public leaderboard at 61.5%, but Opus 5 is not yet listed there.

    How big is Muse Spark’s context window?

    Muse Spark 1.2 ships with 1M tokens. Claude Opus 4.6 also offers 1M in beta, and GPT-5.6 Sol lists 1,050,000 tokens with 128k maximum output.

    Why does SWE-bench Pro matter more than SWE-bench Verified?

    SWE-bench Pro was built to resist contamination, using GPL-copyleft and private proprietary repositories. Claude Opus 4.6 scores 80.3% on SWE-bench Verified but only 51.9% on SWE-bench Pro public — the gap is the point.

    What is Muse Code?

    Muse Code is Meta’s agent product, in beta, running on Muse Spark 1.2. It handles multi-step engineering jobs across large repositories rather than single-file completions.

    Which model is cheapest per resolved coding task?

    Muse Spark on the contributor tier, at roughly $0.10 by our calculation. On standard pricing it is about $1.37, still the cheapest of the frontier group.

    The bottom line

    Buy Muse Spark 1.2 for volume, keep Claude Opus 5 for judgment. If your agent workload is high-throughput and your code is not the crown jewels, Meta’s standard tier delivers roughly 5x more resolved tasks per dollar than Opus — and the contributor tier turns that into 72x if you are willing to be training data.

    If a wrong patch costs more than a few hundred dollars to clean up, the 9-point capability gap to Opus 5 erases the savings on the first bad merge.

    The financial read is simpler still. Meta is not selling inference; it is buying developer telemetry at a 90% discount, and OpenAI’s Luna tier says it will not let that go uncontested. Model prices are heading toward zero. The margin is moving to whoever owns the agent harness — which is exactly why Cognition’s valuation hit $40 billion, and why cost per coding point is now the only benchmark that pays.

    Sources

  • Cognition $40 Billion Valuation: Up 54% in Just 11 Weeks

    Cognition is in talks to raise more than $1 billion at a valuation of at least $40 billion, Bloomberg reported on August 12, 2026. The Cognition $40 billion valuation would sit 54% above the $26 billion post-money price it closed on May 27 — just 11 weeks earlier. Annualized revenue has roughly doubled to near $1 billion in that window.

    The AI coding market has produced some fast repricing cycles. This one is close to a record.

    Cognition, the New York company behind the Devin coding agent, announced a $1 billion round at a $25 billion pre-money valuation on May 27, 2026, according to TechCrunch. Seventy-seven days later, Bloomberg reported the company back in the market at $40 billion or more.

    What is the Cognition $40 billion valuation round?

    Cognition is negotiating a new financing of more than $1 billion at a valuation of at least $40 billion, Bloomberg reported on August 12, 2026. Terms are not final and no lead investor has been named publicly. The trigger investors are pointing to is revenue: an annualized run rate approaching $1 billion.

    What we know about the terms

    • Round size: more than $1 billion, per Bloomberg.
    • Valuation: at least $40 billion — the floor, not a confirmed clearing price.
    • Status: talks. No signed term sheet has been reported.
    • Lead investor: not disclosed.
    • Existing backers: Founders Fund, General Catalyst, Lux Capital, 8VC and Khosla Ventures, per Dealroom.

    That last point matters. Every reported figure here traces back to a single Bloomberg story sourced to people familiar with the discussions. Cognition has not published anything.

    How fast did Cognition’s valuation actually climb?

    Cognition went from a $10.2 billion post-money valuation in September 2025 to a reported $40 billion floor in August 2026 — roughly 4x in 11 months. The steepest leg was the most recent: $26 billion to $40 billion in 11 weeks, without a product launch or acquisition in between.

    Date Event Amount raised Valuation
    Apr 2024 Series B, led by Founders Fund $175M $2B
    Mar 2025 Series C, led by 8VC Not disclosed $4B
    Jul 2025 Acquires Windsurf (agentic IDE)
    Sep 8, 2025 Round led by Founders Fund $400M+ $10.2B post
    May 27, 2026 Led by Lux, General Catalyst, 8VC $1B $26B post
    Aug 12, 2026 Reported talks (unsigned) $1B+ $40B+ floor
    Sources: Cognition company blog (Sep 2025), TechCrunch (May 2026), Bloomberg (Aug 2026). Pre-2025 rows per Cognition’s publicly documented funding history.

    The September 2025 round was led by Founders Fund at a $10.2 billion post-money valuation on more than $400 million raised, Cognition disclosed at the time.

    In that same post the company said Devin grew from $1 million in ARR in September 2024 to $73 million by June 2025, and that total net burn across the company’s history had stayed under $20 million.

    Does the revenue justify a $40 billion valuation?

    On the multiple, the new price is cheaper than the last one. At the May round, $26 billion against $492 million of annualized run-rate revenue was roughly 53x. At $40 billion against a run rate nearing $1 billion, it is roughly 40x. The price went up. The multiple came down.

    The multiple math

    TechCrunch reported Cognition was at $492 million ARR when the May round closed, with enterprise usage of Devin growing 50% month-over-month for six consecutive months.

    Double that base and you land near $1 billion — which is exactly the figure Bloomberg’s sources cite. The story is internally consistent, which is not the same as verified.

    Here is the skeptical read. “Annualized run rate” is one month multiplied by twelve. It is not booked revenue, it is not contracted, and at 50% month-over-month growth the number is dominated by whatever the single most recent month did.

    A company compounding that fast has an ARR figure that flatters it on the way up and punishes it the moment growth flattens. Nobody outside the round has seen net revenue retention, gross margin, or churn.

    Who else is competing for AI coding dollars?

    Cognition is not the largest asset in the category, but on revenue multiple it is the more expensive one. Cursor maker Anysphere was in talks at a $50 billion pre-money valuation on roughly $2 billion of annualized revenue as of February 2026 — about 25x, according to TechCrunch.

    That comparison cuts against the enthusiasm. At 40x, Cognition is asking investors to pay roughly $15 more of valuation for every dollar of run-rate revenue than its larger rival commanded four months ago.

    Cognition’s differentiator is positioning. Founder and CEO Scott Wu has framed Devin as a tool for “long-tail grunt-work” — legacy migrations, dependency updates — rather than a headcount replacement, per TechCrunch.

    Reported customers include Goldman Sachs, Citi, Mercedes-Benz, NASA and Santander.

    Why this matters for the AI market and investors

    Two things are happening at once, and they point in opposite directions.

    The first is that AI coding is now the clearest revenue engine in applied AI. Cognition went from $73 million ARR in June 2025 to a reported ~$1 billion 14 months later. Cursor is forecasting more than $6 billion by the end of 2026, per TechCrunch. These are not pilot budgets.

    The second is that private marks are moving faster than the businesses under them. An 11-week, 54% step-up on an unsigned round is a liquidity signal as much as a fundamentals signal — capital is chasing a small number of category leaders, and price is how it competes for allocation.

    Both can be true. The category is real and the marks are being set in a seller’s market. Meanwhile the underlying economics are still being repriced downward elsewhere in the stack, as the end of the AI price war showed this week.

    For anyone tracking exposure through secondaries or crossover funds: the marks here are set by a handful of participants in an unsigned negotiation. This post is reporting and analysis, not financial advice.

    Frequently asked questions

    Has Cognition confirmed the $40 billion valuation?

    No. As of August 15, 2026, the figure comes from Bloomberg reporting sourced to people familiar with the talks. Cognition has not issued a statement and no term sheet has been reported as signed.

    What was Cognition’s previous valuation?

    $26 billion post-money, on a $25 billion pre-money valuation, from the $1 billion round announced May 27, 2026 and led by Lux Capital, General Catalyst and 8VC, per TechCrunch.

    How much revenue does Cognition have?

    An annualized run rate approaching $1 billion, according to Bloomberg. The last independently reported figure was $492 million ARR in May 2026. Run rate is an annualized snapshot, not booked annual revenue.

    What does Cognition actually sell?

    Devin, an autonomous coding agent for engineering work, plus Windsurf, the agentic IDE Cognition acquired in July 2025. Enterprise deployment is the revenue driver.

    Who are Cognition’s investors?

    Founders Fund, General Catalyst, Lux Capital, 8VC, Khosla Ventures and Pear VC are among the disclosed backers, per Dealroom. The lead on the current round has not been reported.

    Is a 40x revenue multiple normal for AI startups?

    It is high but not an outlier in this category in 2026. Cognition’s own May round priced at roughly 53x. Anysphere’s April talks implied roughly 25x. Multiples in AI coding have been compressing as revenue scales.

    When would the round close?

    Unknown. No timeline has been reported. Cognition’s last two rounds were announced roughly eight months apart, then 11 weeks apart.

    The bottom line

    Cognition is asking the market to reprice it 54% higher on the strength of one metric moving in one direction for one quarter. The revenue growth appears real — $492 million to near $1 billion in 11 weeks is not a rounding error, and the multiple compression from 53x to 40x means the price is at least growing slower than the business.

    What to watch next: whether a named lead investor emerges, whether the final valuation clears the $40 billion floor or lands above it, and whether Cognition discloses anything beyond run rate. The company has published detailed revenue history before. If this round closes without that disclosure, that silence is the story.

    Not financial advice. Figures reported here reflect public sources as of August 15, 2026.

    Sources


  • Qwen3.8-Max Open Weights vs API: The Real Cost of Self-Hosting

    Qwen3.8-Max open weights are the biggest open release of 2026 — and the wrong choice for almost everyone. The 4.89 TB checkpoint is text-only, ships under a custom license with a $50 million revenue gate, and only beats the $2/$6 API somewhere north of six billion tokens a month. Below that, rent. Above it, talk to Alibaba’s lawyers first.

    Alibaba did something no Western lab has done this year: it put a 2.4-trillion-parameter frontier model on Hugging Face and told everyone to help themselves.

    Then it attached a license that quietly taxes anyone who succeeds with it.

    This is the deep dive on what the Qwen3.8-Max open weights actually cost to run, how they compare to the other trillion-scale open models, and the exact point where downloading beats paying.

    What exactly did Alibaba release with the Qwen3.8-Max open weights?

    Alibaba published the checkpoint to Hugging Face as Qwen/Qwen3.8-2.4T-A95B on August 8, 2026 — 224 files totaling roughly 4.89 TB, with an FP8 sibling repo, according to Digital Applied’s release checklist. It is a sparse Mixture-of-Experts model: 2.4 trillion total parameters, 95 billion active per token.

    That activation rate — about 4% — is the whole trick. You pay for a trillion-scale model’s quality while doing inference math on something closer to a 95B dense model.

    The announcement moved real money. Alibaba stock jumped 7% in Hong Kong and 4.5% on the NYSE on the news, Forkast reported.

    What’s missing compared to the hosted API

    The download is not the product Alibaba sells. The open checkpoint is text-only and thinking-mode only — no vision, and not the native 1M-token context the paid Qwen3.8-Max API advertises.

    Developers noticed within hours. The top thread on the model’s Hugging Face discussion board is titled “Huge disappointment,” pointing out that Alibaba’s launch post gave no hint the weights would be a stripped build. The promised smaller Qwen3.8-27B checkpoint still has not shipped.

    • In the download: 2.4T/95B MoE, text in, text out, thinking mode.
    • API only: vision and video input, 1M-token context (991K effective input cap), implicit prompt caching.
    • Still missing: the 27B variant, official deployment guidance, day-one community quantizations.

    How much does the Qwen3.8-Max API cost?

    List pricing is $2.00 per million input tokens and $6.00 per million output tokens, with cached input at $0.25 per million. That is the number every self-hosting calculation has to beat, and it is aggressive for a model in this weight class.

    Those figures are confirmed on OpenRouter’s Qwen3.8 Max listing, which also shows the 1M-token context window and a 131,072-token maximum output. Digital Applied notes the same rates were absent from Alibaba’s own Model Studio pricing page at launch — a reminder to check before you budget.

    For context on how fast this market moves: DeepSeek raised its own API prices by up to 1,100% overnight this month, which we covered in our breakdown of the collapsing AI price war. Cheap inference is not a permanent condition.

    What does self-hosting Qwen3.8-Max open weights actually cost?

    Far more than most teams assume. The FP8 checkpoint is roughly half the 4.89 TB full-precision drop — call it 2.4 TB of weights before you allocate a single byte to KV cache. That does not fit on one eight-GPU node once you leave room for long contexts.

    Start with the hardware rate. GetDeploying tracks 28 cloud providers offering NVIDIA B200 capacity: $3.35/hr at the cheapest reserved rate, $7.00/hr average on-demand, $3.83/hr average spot.

    The break-even math

    Take the friendliest possible case — a single eight-GPU B200 node at the cheapest reserved rate of $3.35/hr. That is $26.80/hr, or about $19,600 per month running continuously.

    Now blend the API price. At a 3:1 input-to-output ratio, Qwen3.8-Max costs $3.00 per million tokens blended. Divide $19,600 by $3.00 and you get roughly 6.5 billion tokens per month before the box is cheaper than the API.

    That is about 215 million tokens a day, every day, with zero idle time.

    ScenarioHourly rateMonthly cost (730 hrs)Break-even vs API
    1 node, reserved ($3.35/GPU-hr)$26.80~$19,600~6.5B tokens/mo
    1 node, on-demand avg ($7.00/GPU-hr)$56.00~$40,900~13.6B tokens/mo
    2 nodes, reserved (realistic minimum)$53.60~$39,100~13B tokens/mo
    2 nodes, on-demand avg$112.00~$81,800~27B tokens/mo
    GPU rates via GetDeploying; monthly figures and break-even points are our calculation at a $3.00/Mtok blended API price. Excludes engineering salaries, networking, and failed-run overhead.

    And that table is generous. It assumes 100% utilization, no redundancy node, and no one on payroll keeping the cluster alive. Add a single infrastructure engineer and the real break-even moves past 20 billion tokens a month.

    Does the Qwen3.8-Max license let you build a business on it?

    Only up to a point — and the point is $50 million. Alibaba abandoned the Apache 2.0 license used for earlier Qwen generations in favor of a bespoke qwen3.8-max license that forces large commercial users into a separate negotiation.

    Per Forkast’s analysis, any business operating as Model-as-a-Service or an “AI Work Assistant” with aggregate revenue above $50 million in any consecutive 12-month period must negotiate a commercial license. MaaS is defined broadly: any third-party access to inference or fine-tuning where the provider controls inputs or parameters.

    Read that structure carefully. It is a safe harbor for startups and a toll booth for anyone who scales.

    The strategic logic is obvious once you see it. Alibaba wants the distribution that open weights buy, without letting a competing inference layer get rich on top of its research budget. It is platform protection dressed as generosity — the same instinct behind Anthropic’s spending we analyzed in its $2 trillion valuation story, pointed a different direction.

    How do Qwen3.8-Max open weights compare to Kimi K3, DeepSeek V4 Pro and GLM-5.2?

    Qwen has the most parameters and the most restrictive license. DeepSeek V4 Pro has the best coding scores and by far the cheapest API. GLM-5.2 is the smallest and easiest to actually serve. If licensing matters to you, Qwen is the weakest of the four.

    ModelParams (total / active)LicenseAPI price (in / out per Mtok)Headline benchmark
    Qwen3.8-Max2.4T / 95BCustom, $50M revenue gate$2.00 / $6.00GPQA Diamond 92.6
    Kimi K32.8T / not disclosedModified MIT$3.00 / $15.00GPQA-Diamond 93.5
    DeepSeek V4 Pro1.6T / 49BMIT$0.435 / $0.87SWE-bench 80.6%
    GLM-5.2744B / ~40BMIT$1.40 / $4.40SWE-bench Pro 62.1
    Qwen figures via Digital Applied and OpenRouter; K3, V4 Pro and GLM-5.2 via MarkTechPost. Benchmark numbers come from different harnesses and are not directly comparable.

    Where Qwen wins, and where it loses badly

    Qwen3.8-Max leads on agentic and research tasks: 86.1 on OSWorld-Verified and 93.0 on PaperBench, ahead of GPT-5.6 Sol’s 90.5, per Digital Applied’s benchmark roundup.

    It loses on code. Qwen scores 67.7 on SWE-bench Pro against Fable 5’s 80.0, and 56.6 on DeepSWE 1.1 against GPT-5.6 Sol’s 73.0. DeepSeek V4 Pro’s 80.6% on SWE-bench beats Qwen outright while costing roughly a fifth as much on the API.

    The cost gap is the story. MarkTechPost’s Artificial Analysis blended cost-per-task figures put DeepSeek V4 Pro at $0.04, GLM-5.2 at $0.32 and Kimi K3 at $0.94. Paying 20x for a few benchmark points is a decision, not a default — the same trap we flagged in Gemini 3.7 Flash vs Claude Sonnet 5.

    Which model should you actually run in 2026?

    Match the model to the constraint that is actually binding you — license risk, serving budget, or raw capability. For most teams under 10 billion tokens a month, the answer is an API, and it probably is not Qwen’s.

    Your situationBest choiceWhy
    Under 5B tokens/monthQwen3.8-Max API$2/$6 with $0.25 cached input beats any cluster you can rent
    Coding agents at scaleDeepSeek V4 Pro80.6% SWE-bench, MIT license, $0.435/$0.87
    Air-gapped or regulated deploymentGLM-5.2744B/40B is the only one that fits comfortably on one node
    MaaS provider above $50M revenueAnything MIT-licensedQwen’s license forces a negotiation you will lose
    Research, agents, long-horizon tasksQwen3.8-Max APIOSWorld 86.1 and PaperBench 93.0 lead the field
    Above 20B tokens/month, MIT requiredSelf-host DeepSeek V4 Pro49B active params serve far cheaper than Qwen’s 95B

    Frequently asked questions about Qwen3.8-Max open weights

    Are the Qwen3.8-Max open weights free?

    Free to download and free to use commercially below $50 million in annual revenue. Above that threshold, Model-as-a-Service and AI assistant providers must negotiate a separate commercial license with Alibaba.

    Is the open checkpoint the same model as the Qwen3.8-Max API?

    No. The open weights are text-only and thinking-mode only, without the vision input and native 1M-token context that the hosted API provides.

    How much hardware do I need to run Qwen3.8-Max?

    The full-precision release is roughly 4.89 TB across 224 files, with an FP8 variant at about half that. Plan for multiple eight-GPU nodes, not one.

    Is Qwen3.8-Max better than DeepSeek V4 Pro?

    Not for coding. DeepSeek V4 Pro scores 80.6% on SWE-bench versus Qwen’s 67.7 on SWE-bench Pro, ships under MIT, and costs roughly a fifth as much per token.

    Why did Alibaba drop Apache 2.0?

    Commercial strategy. Apache 2.0 would have let rival inference providers build businesses on Alibaba’s research at zero cost. The revenue gate keeps distribution while capturing the upside at scale.

    When does self-hosting Qwen3.8-Max become cheaper than the API?

    Around 6.5 billion tokens a month in the best case, and realistically past 13 billion once you run two nodes. Add engineering headcount and the crossover pushes past 20 billion.

    Did the Qwen3.8-27B model ever ship?

    Not as of mid-August 2026. The smaller checkpoint was announced alongside Max but has not appeared on Hugging Face.

    The bottom line

    Use the Qwen3.8-Max API if you are under roughly five billion tokens a month and you need agentic or research performance — OSWorld 86.1 and PaperBench 93.0 are genuinely class-leading, and $2/$6 is fair for that tier.

    Do not self-host it. The break-even sits above 13 billion tokens a month at realistic node counts, and the model you would be hosting is the stripped text-only build, not the one that posts those benchmark numbers.

    If you are building anything you intend to sell inference on, pick DeepSeek V4 Pro or GLM-5.2 instead. MIT licensing costs nothing at $50 million in revenue. Alibaba’s license costs you a negotiation with a company that also competes with you.

    The open-weights headline was real. The gift was not. Qwen3.8-Max is the most capable model you can legally download this month and the one with the most expensive fine print — and for once, both halves of that sentence matter equally. For more on how speed and cost trade off at the frontier, see our analysis of what 14x inference speed actually costs.

    Sources

  • Gemini 3.7 Flash vs Claude Sonnet 5: Which Wins on Cost Per Coding Point?

    Gemini 3.7 Flash vs Claude Sonnet 5 comes down to one number: cost per benchmark point. Google’s new workhorse matches Sonnet 5 on production coding evals while listing at $0.75/$3.75 per million tokens against Anthropic’s $2/$10. That is roughly 2.7x cheaper for equal-or-better coding output. Sonnet 5 still wins on the hardest reasoning tests. For agent workloads that burn tokens all day, Flash wins on money.

    Google shipped Gemini 3.7 Flash on August 13, 2026 — three weeks after Gemini 3.6 Flash. The release matters less as a launch and more as a repricing event. When a cheap model closes the coding gap with a premium model, every AI budget line gets renegotiated.

    We priced all three frontier options against their published benchmarks using vendor list prices. The result is not close.

    How much does Gemini 3.7 Flash cost compared to Claude Sonnet 5?

    Gemini 3.7 Flash lists at $0.75 per million input tokens and $3.75 per million output through December 31, 2026, per Google’s official Gemini API pricing page. Claude Sonnet 5 lists at $2.00 and $10.00. On an 80/20 input-output mix, that is $1.35 versus $3.60 per million tokens.

    Anthropic also settled a question that had been hanging over Sonnet 5’s price. Its pricing documentation now states that the introductory $2/$10 rate is permanent and the scheduled September 1, 2026 increase to $3/$15 “will not occur.”

    That was a defensive move. It did not close the gap.

    The full price and spec comparison

    Model Input / 1M Output / 1M Blended (80/20) Context Batch in / out
    Gemini 3.7 Flash $0.75 $3.75 $1.35 1M in / 64K out $0.375 / $1.875
    Gemini 3.7 Flash (from Jan 1, 2027) $1.50 $7.50 $2.70 1M in / 64K out $0.75 / $3.75
    Claude Sonnet 5 $2.00 $10.00 $3.60 1M at standard rate $1.00 / $5.00
    GPT-5.6 Terra $1.00 $6.00 $2.00 Long-context tier priced separately
    GPT-5.6 Sol $2.50 $15.00 $5.00 Long-context tier priced separately
    Claude Opus 5 $5.00 $25.00 $9.00 1M at standard rate $2.50 / $12.50
    Sources: Google Gemini API pricing, Anthropic pricing docs, OpenAI API pricing (August 2026).

    The January 1, 2027 price cliff

    Google’s $0.75 rate is introductory. On January 1, 2027 it doubles to $1.50/$7.50, which lifts the blended cost to $2.70.

    Even then, Flash stays 25% under Sonnet 5. But the deepest discount window is four and a half months wide, and it is the single best arbitrage on the table right now.

    The tokenizer tax nobody prices in

    Anthropic’s documentation carries a note most comparison tables ignore: Claude 4.7 and later models use a newer tokenizer that “produces approximately 30% more tokens for the same text.”

    Sticker price is per token. Your bill is per document. If that 30% applies to your workload, Sonnet 5’s effective cost per page of English moves closer to $4.70 blended — over 3x Flash’s introductory rate.

    Gemini 3.7 Flash vs Claude Sonnet 5: which is better for coding?

    Flash wins on production coding and agentic execution; Sonnet 5 wins on long-horizon reasoning. On Google’s published model-card comparisons, Flash takes FrontierCode 1.1 at 43.6% against Sonnet 5’s 42.7%, and crushes it on AutomationBench, 30.4% to 10.7%. Sonnet 5 answers on GDPval and Agent’s Last Exam.

    The benchmark table below is vendor-stated from Google’s model card, tabulated independently by DataCamp and other outlets. Treat first-party numbers with the usual skepticism — but they are consistent across sources.

    Benchmark Gemini 3.7 Flash Claude Sonnet 5 GPT-5.6 Terra
    FrontierCode 1.1 (production code) 43.6% 42.7% 41.3%
    DeepSWE v1.1 (long-horizon SWE) 65.3% 53.8% 69.6%
    Terminal-bench 2.1 85.8% 80.4% 87.4%
    WebDev Arena (Elo) 1588 1541 1523
    AutomationBench 30.4% 10.7% 23.6%
    GDPval-AA v2 (Elo) 1525 1598 1578
    GDM-MRCR v2, 128k (recall) 97.0% 81.5% 93.5%
    Agent’s Last Exam 26.3% 33.3% 28.0%
    Vendor-stated scores from Google’s Gemini 3.7 Flash model card, August 13, 2026.

    Cost per benchmark point: the number that decides it

    Divide blended cost by score and the argument ends.

    • FrontierCode 1.1: Flash costs $0.031 per point. Sonnet 5 costs $0.084. Terra costs $0.048.
    • DeepSWE v1.1: Flash $0.021 per point, Terra $0.029, Sonnet 5 $0.067.
    • AutomationBench: Flash delivers 2.8x Sonnet 5’s score at 37% of the price.
    • Long-context recall (MRCR 128k): Flash leads by 15.5 points and costs 63% less.

    Sonnet 5 is charging a 2.7x premium to lose a coding benchmark by 0.9 points. That is not a defensible position in a procurement meeting.

    Where Claude Sonnet 5 still earns its price

    Two places. Sonnet 5 leads GDPval-AA v2 at 1598 Elo against Flash’s 1525 — that benchmark tracks economically valuable knowledge work, not code. It also leads Agent’s Last Exam, 33.3% to 26.3%.

    If your workload is legal analysis, financial modeling, or research synthesis rather than shipping code, the premium is arguable. If it is code, it is not.

    How does GPT-5.6 Terra change the math?

    Terra is the quiet value play, and most launch-day comparison tables mispriced it. OpenAI’s official pricing page lists gpt-5.6-terra at $1.00 input and $6.00 output per million, with a separate long-context tier at $2.00/$9.00 — not the $2.00/$12.00 figure that circulated all week.

    At the correct list price, Terra blends to $2.00 per million. It also posts the best DeepSWE v1.1 score in the group at 69.6% and the best Terminal-bench 2.1 at 87.4%.

    Terra’s cached input runs $0.10 per million, half of Anthropic’s $0.20 cache-hit rate for Sonnet 5. For retrieval-heavy agents replaying the same system prompt thousands of times a day, that difference compounds fast.

    What does this actually cost at production volume?

    Take a mid-size agent workload: 500 million input tokens and 100 million output tokens per month. That is a realistic footprint for a coding assistant serving a 50-engineer team. The spread between the cheapest and most expensive option is $4,250 a month.

    Model Monthly cost Annualized vs. Sonnet 5
    Gemini 3.7 Flash (intro) $750 $9,000 −$15,000/yr
    GPT-5.6 Terra $1,100 $13,200 −$10,800/yr
    Gemini 3.7 Flash (2027 rate) $1,500 $18,000 −$6,000/yr
    Claude Sonnet 5 $2,000 $24,000
    GPT-5.6 Sol $2,750 $33,000 +$9,000/yr
    Claude Opus 5 $5,000 $60,000 +$36,000/yr
    Calculated from vendor list prices at 500M input / 100M output tokens per month.

    Batch processing cuts all of it roughly in half. Gemini 3.7 Flash drops to $0.375/$1.875 through year-end; Sonnet 5 drops to $1.00/$5.00. The ranking does not change.

    Which model should you use for which job?

    Match the model to the failure mode you can least afford. Coding agents that run unsupervised for hours need throughput and cheap retries. Client-facing analysis needs reasoning depth. Nothing here is a universal answer, and paying Opus prices for autocomplete is how AI budgets die.

    Use case Best choice Why
    High-volume coding agents Gemini 3.7 Flash Top FrontierCode score at 37% of Sonnet 5’s blended price
    Long-horizon autonomous SWE GPT-5.6 Terra Leads DeepSWE (69.6%) and Terminal-bench 2.1 (87.4%)
    Front-end and web generation Gemini 3.7 Flash WebDev Arena Elo 1588, ahead of both rivals
    Legal, financial, research synthesis Claude Sonnet 5 Top GDPval-AA v2 Elo at 1598
    Million-token document pipelines Gemini 3.7 Flash 97.0% MRCR recall at 128k, cheapest per token
    Hardest reasoning, cost no object Claude Opus 5 Frontier tier — $9.00 blended, use sparingly
    Bulk offline processing Gemini 3.7 Flash (batch) $0.375 / $1.875 through Dec 31, 2026

    Is switching to Gemini 3.7 Flash worth it in 2026?

    Yes, if your token spend clears roughly $1,000 a month. Below that, migration engineering costs more than it saves. Above it, the savings compound — and Google’s three-week release cadence means the model you migrate to keeps improving without a renegotiation.

    The strategic read is bigger than one model. Frontier-tier coding capability is commoditizing on a quarterly clock, and price is the only lever customers can still feel. We saw the other side of that trade this week when DeepSeek raised prices by up to 1,100% overnight — the cheap-inference era is being rationed, not extended.

    Anthropic is spending to stay in the fight. It reached a $2 trillion valuation and put $6 billion into getting cheaper. Cancelling the September price increase is the visible half of that strategy.

    One caution before you point an agent at production: capability and autonomy scale together. The same agentic execution that makes Flash cheap to run is what let an AI agent crack 85 accounts in four days. Sandbox accordingly.

    Frequently asked questions

    Is Gemini 3.7 Flash actually cheaper than Claude Sonnet 5?

    Yes. $0.75/$3.75 per million tokens versus $2.00/$10.00 — about 2.7x cheaper on an 80/20 blend. The introductory rate holds through December 31, 2026, then doubles to $1.50/$7.50.

    Does Gemini 3.7 Flash beat Claude Sonnet 5 at coding?

    On Google’s published card, yes — narrowly on FrontierCode 1.1 (43.6% vs 42.7%), decisively on DeepSWE v1.1 (65.3% vs 53.8%) and AutomationBench (30.4% vs 10.7%). GPT-5.6 Terra still leads DeepSWE overall at 69.6%.

    What is Gemini 3.7 Flash’s context window?

    One million input tokens and up to 65,536 output tokens, with a March 2026 knowledge cutoff. Claude Sonnet 5 also offers a 1M-token window at standard per-token pricing.

    Did Claude Sonnet 5’s price go up on September 1, 2026?

    No. Anthropic’s documentation confirms the scheduled increase to $3/$15 per million tokens will not occur. The $2/$10 introductory rate is now the standard price.

    How much does GPT-5.6 Terra cost?

    $1.00 input and $6.00 output per million tokens on the standard tier, with a long-context tier at $2.00/$9.00. Cached input is $0.10 per million.

    Where can I use Gemini 3.7 Flash today?

    Google AI Studio, Android Studio, Google Antigravity, the Gemini Enterprise Agent Platform, and Gemini Spark for AI Pro and Ultra subscribers across 160+ countries.

    Should I run one model or mix them?

    Mix. Route bulk coding and document work to Flash, long-horizon autonomous tasks to Terra, and high-stakes analysis to Sonnet 5. Routing the majority of calls to the cheapest capable tier is where the savings actually come from.

    The bottom line

    Default to Gemini 3.7 Flash for coding and agent workloads. It wins or ties on the coding benchmarks that map to shipped software, costs $1.35 blended against Sonnet 5’s $3.60, and saves a 50-engineer team roughly $15,000 a year at the volumes above.

    Keep Claude Sonnet 5 for the narrow band where it leads: GDPval-style knowledge work and Agent’s Last Exam reasoning. Keep GPT-5.6 Terra for long-horizon autonomous engineering, where its 69.6% DeepSWE score is worth the extra $0.65 per million blended.

    And put a calendar reminder on December 31, 2026. That is when Google’s discount ends and this entire calculation gets re-run. The labs are shipping every three weeks now — the money chasing this market guarantees the next repricing is already in the pipeline.

    Sources

  • DeepSeek Price Increase: Up to 1,100% Overnight — The AI Price War Just Died

    DeepSeek Price Increase: Up to 1,100% Overnight — The AI Price War Just Died

    Eleven hundred percent.

    That is the top-end figure buried in the DeepSeek price increase that takes effect on Sunday, August 16, 2026 — and it comes from the one company in artificial intelligence whose entire global reputation was built on being impossibly, almost suspiciously cheap.

    For eighteen months, DeepSeek was the argument. Every time someone said frontier AI was structurally expensive, someone else pointed at Hangzhou and said: no, it isn’t — they’re doing it for pennies. That argument moved markets. It rewrote capex assumptions. It made a generation of investors believe inference costs would fall forever, like transistors, like bandwidth, like everything else in tech.

    On August 13, DeepSeek shipped its flagship DeepSeek V4-Pro to general availability. Three days later, it is quadrupling the price of running it.

    The direction of travel just reversed. And the reason it reversed is the most important thing in this story.


    What the DeepSeek price increase actually changes

    Strip out the percentages and look at the raw per-token numbers, because the percentages are doing a lot of theatrical work.

    For V4-Pro, output tokens go from a flat $0.87 per million to $3.96 per million during peak hours — roughly a 4.5x jump — and $1.98 per million off-peak. Cache-miss input tokens move from $0.435 per million to $1.32 peak and $0.66 off-peak.

    For the cheaper V4-Flash tier, output goes from $0.28 per million to $1.32 peak and $0.66 off-peak. Cache-miss input rises from $0.14 to $0.44 peak and $0.22 off-peak.

    The headline 1,100% figure comes from the cached input tier — the deeply discounted rate DeepSeek charged when a prompt prefix was already sitting in its KV cache. That was the single cheapest number in commercial AI, and it is where the proportional increase is most violent. Reported increases across the cached tier run from roughly 52% to 1,100%, depending on model and time of day.

    The peak/off-peak fine print nobody put in the headline

    DeepSeek did not simply raise a number. It introduced time-of-day pricing, which is a structurally different product.

    Peak windows are 01:00–04:00 and 06:00–10:00 UTC. Everything outside those seven hours is off-peak, billed at exactly half the peak rate. The company framed the change in its developer documentation as an effort to allocate resources “more reasonably” and to nudge batch workloads into quieter hours.

    That framing matters. As one analyst quoted by InfoWorld put it, 17 of every 24 hours stay at half price. A team running overnight evaluation sweeps, document ingestion, or scheduled agent runs can absorb most of this with a cron change. A team serving live user traffic in Asian business hours cannot.

    Utilities price electricity by time of day because generation capacity is finite. DeepSeek just did the same thing to tokens.

    Why DeepSeek raising prices matters more than the percentage

    There is a detail here that is easy to skim past and shouldn’t be.

    DeepSeek’s rock-bottom rates were originally promotional, scheduled to expire on May 31. The company then announced it was making those discounted rates permanent. It has now reversed that decision inside a single quarter.

    Companies do not walk back a public permanence commitment on pricing because things are going well. They do it because the unit economics moved underneath them. DeepSeek’s own stated reason — resource allocation — is a polite way of saying demand is outrunning the compute it can get its hands on.

    Reporting on the change from InfoWorld and Computerworld framed it exactly that way: prices are rising because AI demand is straining capacity. The analyst quote is almost aggressively simple: “when demand goes up, pricing goes up, because supply becomes constrained.”

    That is the part with implications far beyond one Chinese lab. The entire bull case for cheap AI has rested on an assumption that inference is a software problem that gets cheaper on a curve. What August 16 suggests is that inference is a power and silicon problem, and those curves behave differently. It is the same pressure driving Anthropic to spend $6 billion buying its way to cheaper inference rather than waiting for hardware to save it, and the same pressure behind five companies committing $650 billion of capital expenditure in a single year.

    DeepSeek has an additional constraint its Western competitors do not share: export controls. It cannot simply write a larger check to Nvidia. When a lab that cannot buy its way out of a capacity crunch starts rationing by price, that is a supply signal, not a greed signal.

    What DeepSeek V4-Pro is — and what nobody has independently verified

    The model itself is not an afterthought. V4-Pro is reportedly a 1.6-trillion-parameter mixture-of-experts system that activates only about 49 billion parameters per token — which is precisely how the old $0.87 output price was possible at all.

    DeepSeek’s own reported gains over its April preview build are large:

    • DeepSWE (software engineering): 12.8 → 62.7
    • CyberGym (vulnerability discovery): 52.7 → 83.3
    • DSBench-Hard (data science): 31.1 → 67.2
    • Terminal Bench 2.1 (agentic terminal use): 87.9
    • Humanity’s Last Exam: 42.7 out of a reported 60.0 ceiling

    The release also adds three “thinking effort” levels — low, high and max — and native Responses API support so V4-Pro can be dropped into Codex-style tooling. Alongside it, DeepSeek shipped a developer preview of DeepSeek Harness, an agentic coding harness positioned as an open competitor to Claude Code.

    Now the caveat, and it is a real one: as of publication, no third-party evaluator has replicated those scores. DeepSeek has not published the evaluation harness used to produce them. Treat every number above as a vendor claim until someone independent runs it.

    The CyberGym figure deserves particular scrutiny given how quickly frontier models are being pointed at security work — a trajectory we covered when OpenAI’s security model surfaced live Chrome vulnerabilities. A self-reported 83.3 on vulnerability discovery is either a significant capability milestone or a benchmark artifact, and right now there is no way to tell which.

    There is also a governance dimension for regulated buyers. DeepSeek’s hosted API operates under Chinese law, and no named independent security audit of V4-Pro’s weights has been published. For a US bank or hospital system, that is a procurement blocker regardless of price.

    Google went the opposite direction on exactly the same day

    Here is the contradiction that makes this week genuinely strange.

    On August 13 — the same day DeepSeek’s V4-Pro went GA with a price hike queued behind it — Google launched Gemini 3.7 Flash and cut the price in half.

    Introductory pricing is $0.75 per million input tokens and $3.75 per million output tokens, running through December 31, 2026. The model keeps a roughly 1,048,576-token context window with a 65,536-token output limit, and posts substantial coding gains: DeepSWE v1.1 from 49.0% to 65.3%, FrontierCode 1.1 from 34.4% to 43.6%, AutomationBench from 17.0% to 30.4%, and a 1,588 rating on WebDev Arena.

    Read the fine print, though. That discount has an expiry date. On January 1, 2027, the list price reverts to $1.50 and $7.50 — double. Google isn’t claiming a permanent cost breakthrough. It is running a limited-time land grab and telling you so in the terms.

    OpenAI did something structurally similar in late July, cutting GPT-5.6 Luna’s price by roughly 80% as enterprise buyers grew visibly cost-sensitive.

    So the picture is not “AI is getting more expensive.” The picture is: the players with hyperscale balance sheets and their own data centers are still buying market share with subsidized tokens, and the player without those things just stopped being able to.

    The money: who actually eats a 4x inference bill

    Percentage increases land unevenly, and the distribution is the story.

    The hardest hit are the businesses whose entire margin structure was underwritten by DeepSeek’s cached-input rate: retrieval-heavy products that stuff the same 100,000-token corpus into every request, AI wrapper startups whose pricing pages promise unlimited usage, and agentic products that burn output tokens in long reasoning chains. A 4.5x output increase against a fixed subscription price is not a cost problem; it is a business model problem.

    Least affected are batch-tolerant enterprises. Overnight ETL, nightly code review, offline document classification — all of it can be scheduled into the 17 off-peak hours, where the effective increase is roughly half the headline.

    Quietly advantaged: Google, OpenAI and Anthropic. Every enterprise procurement team that built a cost model on DeepSeek’s permanence promise now has to rebuild it, and rebuilding is when vendors get switched. The context here is worth remembering — this is the same market where developers are already paying $200 a month for frontier access and questioning what they get for it.

    Even after the increase, DeepSeek is not expensive in absolute terms. Comparable output pricing at Moonshot’s Kimi K3 has been reported around $15 per million tokens and OpenAI’s GPT-5.6 Sol around $30, with premium Anthropic tiers reported far higher still. DeepSeek’s $3.96 peak remains an order of magnitude below the top of the market. But OpenAI’s budget GPT-5.6 Luna reportedly undercuts DeepSeek’s Flash tier at peak — and that is new. For the first time, the cheap-tier crown is contested.

    The counterargument: this may be less apocalyptic than it looks

    Honesty requires acknowledging that “1,100%” is the most misleading number in this story.

    It applies to the cached-input tier, the smallest line item on most bills, and only at peak. On blended real-world workloads, most teams will see something closer to a 2x to 3x increase — meaningful, but not existential, and starting from a base so low that the absolute dollars are still small for anyone below serious scale.

    Second, off-peak pricing is a genuine option, not a rhetorical dodge. Seventeen hours a day at half price is a real lever for anyone whose latency requirements are loose.

    Third, and most importantly: a company raising prices during a capacity crunch is behaving rationally, not desperately. Underpricing scarce compute produces queueing, degraded latency and outages. Price is the least bad rationing mechanism available. There is a plausible reading in which this is a sign of demand strength, not weakness.

    And a fourth caveat worth stating plainly: DeepSeek has not published audited unit economics. Nobody outside the company knows whether the old prices were near cost, deeply subsidized, or somewhere in between. Anyone telling you they know what this proves about the true cost of inference is guessing.

    What to watch next

    • Independent V4-Pro benchmarks. If outside evaluators reproduce the DeepSWE and CyberGym numbers, the price increase looks like confident pricing of a genuinely strong model. If they don’t, it looks like margin defense wrapped in a launch.
    • Whether rivals follow. If Alibaba’s Qwen, Moonshot or Z.ai raise prices in the next 60 days, the Chinese AI price war is structurally over. If they hold and take share, DeepSeek’s move looks idiosyncratic.
    • January 1, 2027. The date Gemini 3.7 Flash reverts to $1.50 / $7.50. If Google extends the discount, the subsidy war continues. If it lets the price double, the cheap-inference era has an official end date.
    • Off-peak utilization data. If DeepSeek’s peak windows stay saturated even after the price change, the capacity constraint is worse than disclosed.
    • Enterprise churn. Watch whether OpenRouter and similar aggregators report traffic shifting away from DeepSeek endpoints after August 16.

    Bottom line

    The DeepSeek price increase is not the story because of the number. It is the story because of the direction.

    For two years the industry has operated on an unexamined assumption that the cost of intelligence falls monotonically. This week, the company that did the most to popularize that assumption broke its own permanence pledge and started charging by the hour — the way you charge for electricity, not the way you charge for software.

    Google’s simultaneous half-price launch doesn’t refute that. It reinforces it. When only companies with their own data centers can afford to keep cutting, cheap AI stops being a technology trend and becomes a balance-sheet privilege.


    Frequently Asked Questions

    How much is the DeepSeek price increase?

    It varies by tier. V4-Pro output rises from $0.87 to $3.96 per million tokens at peak and $1.98 off-peak. V4-Flash output rises from $0.28 to $1.32 peak and $0.66 off-peak. Cache-miss input roughly doubles to triples. The widely quoted 1,100% figure applies to the cached-input tier at peak hours, which is the smallest component of most bills — blended real-world increases are typically closer to 2x–3x.

    When does the new DeepSeek API pricing take effect?

    The new rates take effect on Sunday, August 16, 2026, at 16:00 UTC, according to DeepSeek’s developer documentation. The change applies to both V4-Pro and V4-Flash on the hosted API. Existing integrations do not need code changes; the same model endpoints simply bill at the new peak and off-peak rates from that timestamp forward.

    What are DeepSeek’s peak and off-peak hours?

    Peak windows are 01:00–04:00 UTC and 06:00–10:00 UTC — seven hours total. Every other hour of the day is off-peak and billed at exactly half the peak rate. That leaves 17 of 24 hours at the discounted rate, which is why batch-tolerant workloads such as overnight evaluations, document ingestion and scheduled agent runs can absorb much of the increase by rescheduling.

    Is DeepSeek still cheaper than OpenAI and Anthropic?

    At the frontier tier, yes, and by a wide margin. DeepSeek V4-Pro’s $3.96 peak output price sits far below reported list rates for OpenAI’s GPT-5.6 Sol and premium Anthropic tiers. The exception is the budget segment: OpenAI’s GPT-5.6 Luna, cut roughly 80% in late July, reportedly undercuts DeepSeek’s V4-Flash at peak hours. That is the first serious challenge to DeepSeek’s cheap-tier position.

    What is DeepSeek V4-Pro?

    DeepSeek V4-Pro is the company’s flagship model, released to general availability on August 13, 2026. It is reportedly a 1.6-trillion-parameter mixture-of-experts architecture activating roughly 49 billion parameters per token, with three thinking-effort levels and native Responses API support. DeepSeek reports large agentic and coding gains, but no independent evaluator has replicated those benchmark scores as of publication.

    Why is DeepSeek raising prices?

    DeepSeek says the goal is to allocate resources more reasonably by shifting flexible workloads into off-peak hours. Industry reporting frames it as a capacity constraint: demand for agentic and reasoning workloads is growing faster than available compute, and export controls limit how quickly DeepSeek can add hardware. Time-of-day pricing is a rationing mechanism, the same tool utilities use for electricity.


    Sources

    Disclaimer: This article is journalism, not investment advice. It discusses company pricing, valuations and market dynamics for informational purposes only. Figures are as reported at the time of publication and may change. Nothing here is a recommendation to buy, sell or hold any security. Do your own research and consult a licensed financial professional before making investment decisions.