All posts

At $0.87/M Output Tokens, DeepSeek V4-Pro Just Repriced Your Agent Architecture

DeepSeek made the 75% discount on V4-Pro permanent in late June. Not a promo extension, not a trial period. They called it an "efficiency gain being p…

A brass balance scale with a glowing crystal on one side balanced by a single coin on the other

DeepSeek made the 75% discount on V4-Pro permanent in late June. Not a promo extension, not a trial period. They called it an "efficiency gain being passed through." That framing matters. It means the new price floor is structural, not a marketing play designed to flip later.

The numbers: $0.435/M input, $0.87/M output, and cache hits at $0.003625/M. For context: GPT-5.5 sits at $5/M input and $30/M output. Claude Fable 5 is $10/M and $50/M. DeepSeek V4-Pro is roughly 34x cheaper per output token than GPT-5.5. At that delta, you're not comparing pricing tiers anymore. You're looking at different economic regimes.

What Actually Changed

V4-Pro was already a serious model before the cut. It's a 1.6 trillion parameter MoE with 49B active params, a 1M token context window, and MIT-licensed. It scores 80.6% on SWE-bench Verified, the highest open-weights entry, tied with Gemini 3.1 Pro. The price cut didn't change the model. It changed what's economically viable to run against it.

At $3.48/M output (the pre-cut price), you thought carefully about where you used the model. A multi-step agentic loop with 4 reasoning hops and a long context? You'd route some of that to a cheaper model, or cut the number of iterations. At $0.87/M output, that same loop costs a quarter as much per run. Suddenly the math flips on workflows you'd written off as too expensive.

The Cache-Hit Number Is the Buried Lede

The stat that's getting less attention: cache-hit pricing at $0.003625/M. That's under half a cent per million tokens from cache. If you're running agents with repeated system prompts, long tool definitions, or any retrieval-augmented pattern where chunks of context repeat across requests, you're going to hit that cache constantly.

Run the math for a simple document-analysis pipeline: a 50k-token prompt (mostly retrieved context plus system instructions), repeating across 1,000 user requests per day. At $0.003625/M from cache, that's less than $2/day in prompt costs. You'd spend more on the coffee you drink while watching the dashboards.

This is what makes agentic patterns viable at scale: not the per-request cost in isolation, but what happens when the bulk of your context is cached and the active work is the incremental generation. V4-Pro's cache pricing makes long-context agents cheap enough to run continuously, not just in demo environments.

The Trade-Off You Need to Be Honest About

The quality gap is real. On aggregate benchmarks, Fable 5 scores around 95 and DeepSeek V4-Pro around 83. That's not a rounding error. On hard reasoning, long-horizon planning, and tasks that require subtle judgment, the gap shows up in production.

So the question isn't "is V4-Pro good enough?" It's "for which tasks in my system is it good enough, and where does the quality delta actually hurt me?"

For extraction, summarization, structured output from well-specified schemas, and code generation in established patterns: V4-Pro competes well. These are tasks with clear success criteria where you can catch failures. For open-ended reasoning chains that need to stay on track over many steps, nuanced instruction-following, or tasks where a subtle error compounds into a broken outcome: the frontier models still earn their price.

I've been routing tasks across models in a few production systems. The rough heuristic I've landed on: if I can write a unit test for the output (structured, verifiable), V4-Pro handles it. If the failure mode is "the answer is slightly off in a way a domain expert would catch but a regex won't," I pay for the more capable model.

What This Means for Model Routing

The price cut reshapes routing logic. Before, a three-tier setup (a cheap model for classification, a mid-tier for most tasks, a frontier model for hard cases) made economic sense. At $0.87/M, V4-Pro slots into that mid-tier and starts encroaching on the cheap tier too. If your current budget model costs $0.10/M input and V4-Pro costs $0.435/M input, that's a 4x premium for a dramatically more capable model. Depending on your task mix, collapsing two tiers into one might be net positive.

The 1M context window at this price is also relevant. Tasks that needed chunking and multiple calls because you couldn't fit everything in context (and couldn't afford to) can now go in one shot. Fewer calls, less orchestration complexity, lower latency from multi-call overhead.

I haven't run this at full production scale with the new pricing yet, so I can't give you specific numbers on cost savings. But the math is simple enough that you can model it against your own token usage in about 10 minutes.

A Practical Starting Point

If you're evaluating V4-Pro for your stack, pick two or three representative task types where you're currently paying GPT-5.5 or Fable 5 rates. Run 100-200 examples through V4-Pro and score them against your current output quality. Don't just look at the average. Look at the failure tail. That's where the quality gap bites.

It's MIT-licensed, so self-hosting is an option if compliance requirements push you there. At 49B active parameters, inference is more tractable than the 1.6T total parameter count suggests. You're not serving a 1.6T model at runtime.

The permanent nature of the cut is what I'd keep in mind when making architecture decisions. This isn't a number that's going to flip back in 30 days. DeepSeek framed it as operational efficiency improvements they're sharing. If that's true, and the model continues to improve, the price pressure on the rest of the market is going to be sustained.