
TL;DR
DeepSeek V4 Flash routed to Novita on Vercel AI Gateway is 90% off for Pro customers through August 11, dropping the effective rate to $0.014 input / $0.028 output per million tokens. Here is the verified before/after math, the provider-pinning setup, and what a 10x cheap agent loop means for routing decisions.
DeepSeek V4 Flash is 90% off on Vercel AI Gateway when you route through Novita, for Pro customers, through August 11, 2026. The official changelog, dated August 4, landed with no fanfare: pin Novita first with the order option and the effective rate drops from $0.14 to $0.014 per million input tokens, and from $0.28 to $0.028 per million output, against DeepSeek's official list prices verified today.
That is a tenth of the list price on the model this site's own agent stack runs on. V4 Flash is the 284B-parameter MoE (13B active per token) with a 1M-token context window that DeepSeek made the official API release on July 31 as build DeepSeek-V4-Flash-0731 - we covered that release and the OpenCode setup in our 0731 guide. The discount is a limited-time promo, not a price cut, which changes the calculus: it is a window to re-benchmark how much agent work you route to the cheap tier.
| Rate | DeepSeek list | Novita via AI Gateway | Change |
|---|---|---|---|
| Input /1M tokens | $0.14 | $0.014 | -90% |
| Output /1M tokens | $0.28 | $0.028 | -90% |
| Cached input /1M tokens | $0.0028 | unchanged | - |
List prices verified against the DeepSeek pricing page on August 5, 2026. The discounted rate matches what Vercel's AI Gateway model page currently displays for the model (Input 0.014/token, Output 0.028/token, in their per-token notation). The changelog does not state whether the discount applies to cached input, so the math below counts cache at the standard rate. The discount's center of gravity is fresh input and output - exactly where agent workloads spend most tokens anyway.
Three conditions matter before you build around this:
order. Set the model to deepseek/deepseek-v4-flash or deepseek/deepseek-v4-flash-0731 and put Novita first in the gateway order option. The changelog's example:import { streamText } from 'ai';
const result = streamText({
model: 'deepseek/deepseek-v4-flash', // or 'deepseek/deepseek-v4-flash-0731'
prompt: 'Fix the failing tests in this repo.',
providerOptions: {
gateway: {
order: ['novita'],
},
},
});
From the archive
Aug 5, 2026 • 7 min read
Aug 4, 2026 • 7 min read
Aug 4, 2026 • 6 min read
Aug 4, 2026 • 7 min read
Take the workload V4 Flash is built for: a background agent inner loop - classification, extraction, retrieval synthesis - running 40 turns, call it 2M cumulative input tokens (1.5M fresh after cache reuse settles) and 60K output tokens per task.
At DeepSeek list price: 1.5M input at $0.14 ($0.21) + 0.5M cached at $0.0028 ($0.0014) + 60K output at $0.28 ($0.0168) = about $0.23 per task.
At the Novita rate through August 11: 1.5M input at $0.014 ($0.021) + 0.5M cached at $0.0028 ($0.0014) + 60K output at $0.028 ($0.0017) = about $0.024 per task.
Run that loop 10,000 times a month and the bill drops from roughly $2,300 to $240. This is the strongest counterexample yet to the AI affordability crisis worry that agent costs only ratchet upward: at these rates the question stops being "can we afford the fan-out" and becomes "why are we still paying for the frontier tier on this workload."
The honest caveat: list price is not cost per task. V4 Flash is 79-class on agent benchmarks per DeepSeek's 0731 release notes, not 80-plus-class like V4 Pro, and if the cheap model needs more retries or more turns on your workload, the 10x sticker advantage shrinks. The deal is worth exactly what your own evals say - but a two-week window at 90% off is the cheapest possible time to run them. Our V4 economics post has the full Flash-vs-Pro routing framework.
A 90% off window on the cheapest competent agent model does two things to the market.
First, it moves the default routing conversation. The standard cost-control pattern is router-heavy: easy calls to a cheap model, hard ones escalate. During this window, the "easy" lane gets so cheap that the escalation threshold moves up - more workloads qualify for the cheap lane, which is the argument behind our LLM router comparison and the AI Gateway guide.
Second, it pressures the other cheap-access routes. GLM-5.2 and Kimi K3 both compete for the "free and cheap access" lane, and our GLM-5.2 access post and Kimi K3 access post track those routes. A two-week 90% off on V4 Flash is a promotional shot across that lane: anyone on the budget tier should re-measure V4 Flash against their current cheap route before August 11, not after.
And it is worth stating what it is not. This is a promo, not a price war - the DeepSeek list price is unchanged, and the fallback rate after the window is the standard one. Compare that with OpenAI's GPT-5.6 Luna 80% cut, which was permanent. The durable signal is distribution, not price: Vercel making its gateway the place where cheap models get cheaper, Novita buying volume through the fallback lanes. If you already pin providers, this is a no-op config change worth $2,000 a month on a real workload; if not, it is a cheap reason to learn the pattern before the window closes.
Read next
DeepSeek shipped the official V4 Flash release on July 31, 2026. The re-post-trained 0731 build beats V4-Pro-Preview on agent benchmarks at $0.14/$0.28 per million tokens. Here is what changed and how to run it through OpenCode today.
7 min readDeepSeek V4 Pro lands an 80.6 on SWE-bench Verified in Max reasoning mode at $0.435/$0.87 per million tokens, and Flash runs agent inner loops for cents. Here is the worked cost math, the Flash-vs-Pro split, and a clear guide on when to route to DeepSeek instead of a frontier model.
9 min readGLM-5.2 ships under an MIT license, so it is hosted everywhere - and a few places run it for free or nearly free right now. Here is every way to access Z.ai's open-weights coding model, from OpenCode Go referral credits and Devin to the cheapest per-token routes on OpenRouter, Fireworks, and DeepInfra, plus local Ollama.
10 min readTechnical content at the intersection of AI and development. Building with AI agents, Claude Code, and modern dev tools - then showing you exactly how it works.
Open-source reasoning models from China. DeepSeek-R1 rivals o1 on math and code benchmarks. V3 for general use. Fully op...
View ToolDeepSeek's open-weights frontier family, previewed April 24, 2026. V4-Pro is 1.6T total / 49B active params; V4-Flash is...
View ToolFastest inference for open-source models. 200+ models via unified API. Ranks #1 on speed benchmarks for DeepSeek, Qwen,...
View ToolOpen-source terminal agent runtime with approval modes, rollback snapshots, MCP servers, LSP diagnostics, and a headless...
View ToolA complete, citation-backed Claude Code course with setup, prompting systems, MCP, CI, security, cost controls, and capstone workflows.
ai-developmentA practical walk-through of how to design, write, and ship a Claude Code skill - from choosing when to trigger, through allowed-tools, to the steps the agent will actually follow.
Getting StartedAutomatic reuse of cached context for substantial cost reduction.
Claude Code
DeepSeek V4: 1M Context, 10x KV Cache Savings, and Ultra-Low Pricing DeepSeek released V4, highlighting major long-context efficiency gains: at a 1M-token context, V4 Pro uses 27% of FLOPs and 10% of...

In this video, we delve into the latest release of DeepSeek, version R1 0528. Despite the absence of an official model card or announcement, we cover the key features and benchmarks of this...

In this video, I'll dive into the latest update of DeepSeek's V3 model, recently released on Hugging Face. This model stands out for its impressive performance benchmarks, outclassing even...

DeepSeek shipped the official V4 Flash release on July 31, 2026. The re-post-trained 0731 build beats V4-Pro-Preview on...

DeepSeek V4 Pro lands an 80.6 on SWE-bench Verified in Max reasoning mode at $0.435/$0.87 per million tokens, and Flash...

GLM-5.2 ships under an MIT license, so it is hosted everywhere - and a few places run it for free or nearly free right n...

Vercel AI Gateway gives you one API key and string model ids like moonshotai/kimi-k2.5 for hundreds of models. Here is h...

DeepSeek V4 splits into Flash and Pro, ships a 1M context window, and undercuts every closed model on price. Here's how...

AI Gateway spend budgets now scope to teams and projects, with hard dollar limits that reject requests, email alerts at...

New tutorials, open-source projects, and deep dives on coding agents - delivered weekly.