On July 31, 2026, DeepSeek promoted deepseek-v4-flash to an official public API build (V4-Flash-0731): same 284B-parameter architecture as April's preview, only post-training changed. It now beats DeepSeek's own larger V4-Pro preview on agent benchmarks at roughly 1/36 to 1/179 of Claude Opus 4.8's list price. This piece is for developers evaluating DeepSeek API migration and Chinese open-weight LLM economics. It covers the April–August timeline, pricing tables, architecture notes, comparisons with Kimi K3 and Qwen3.8-Max, Harness benchmark caveats, and the Chinese dev community's "kill line" framing. The flagship V4-Pro GA and in-house Harness agent framework remain unreleased as of August 5.
SECTION 01 Why V4-Flash headlines confuse production teams
- "Official" is not a new model: 0731 is identical in size and structure to the April preview; gains come from a fresh post-training pass, not scaling up;
- V4-Pro GA still missing: only the April preview API exists; changelog says "as soon as possible" with no date; rumored August 10–20 windows are not confirmed by DeepSeek;
- Agent scores are harness-dependent: Terminal Bench 2.0 figures use unreleased Harness "minimal mode"; DeepSeek's own changelog warns scores are extremely sensitive to harness choice;
- Legacy aliases are dead:
deepseek-chatanddeepseek-reasonerretired July 24; unmigrated production calls break; - API-only rollout: July 31 update is API-only; consumer app and web chat were untouched as of publication;
- Not #1 on independent indices: Artificial Analysis Intelligence Index puts V4-Flash at ~50, below Kimi K3 (~57) and GLM-5.2 — DeepSeek is optimizing for "good enough + rock-bottom price," not leaderboard crowns.
Bottom line: a 284B/13B active model now beats a 1.6T/49B preview from the same family on multiple agent tasks — post-training quality in late 2026 is competing with raw parameter count.
SECTION 02 Timeline and vendor pricing snapshot (Aug 5, 2026)
- April 24, 2026: V4 preview ships — V4-Pro (1.6T/49B active) and V4-Flash (284B/13B active), 1M context, MIT open weights;
- July 24, 2026: Legacy aliases retired; traffic routes to V4 naming;
- July 27, 2026: Moonshot AI open-weights Kimi K3 (2.8T), tightening competitive pressure;
- July 31, 2026: V4-Flash-0731 public API beta; MIT weights on Hugging Face; changelog names Harness agent framework "to be released soon";
- August 5, 2026: V4-Pro GA still unconfirmed; some Chinese outlets cite unnamed sources for internal testing and an August 10–20 window — treat as rumor until DeepSeek confirms.
| Model | Status | Total / active | Input ($/M, miss / hit) | Output ($/M) |
|---|---|---|---|---|
| V4-Flash-0731 | Official | 284B / 13B | $0.14 / $0.0028 | $0.28 |
| V4-Pro | Preview only | 1.6T / 49B | $0.435 / $0.003625 | $0.87 |
| Kimi K3 | Open weights (Jul 27) | 2.8T / ~104B (community est.) | $3.00 / $0.30 | $15.00 |
| GLM-5.2 | Open (June 2026) | ~744B / ~40B | Not verified here | Not verified here |
| Qwen3.8-Max | API GA (Aug 2); weights pending | 2.4T / 95B | $2.00 / ~$0.17–0.25 | $6.00 |
| Note | All vendor list prices; DeepSeek announced future 2x peak-hour surcharge (Beijing 9am–12pm, 2pm–6pm) with no effective date yet | |||
SECTION 03 Same architecture, new training: CSA+HCA, mHC, Muon, and Harness
V4-Flash-0731 is identical in parameter count and structure to April's preview. DeepSeek states the agent benchmark jump came entirely from re-running post-training. The technical report "DeepSeek-V4: Towards Highly Efficient Million-Token Context Intelligence" describes three architectural changes carried from preview:
- Hybrid attention (CSA + HCA): marketed as DSA sparse attention to cut compute and memory at long context;
- Manifold-Constrained Hyper-Connections (mHC): residual connection enhancement;
- Muon optimizer: faster convergence and training stability.
Vendor-reported efficiency (no independent reproduction seen): at 1M tokens, V4-Pro needs 27% of V3.2 per-token FLOPs and 10% KV cache footprint.
July 31 also marked the first official mention of DeepSeek Harness — an in-house agent framework positioned against Claude Code. Prior agent work relied on Claude Code and OpenCode. Published agent scores (Terminal Bench 2.0, Toolathlon) used Harness minimal mode (max effort, top_p 0.95, temperature 1.0) before public release. DeepSeek's changelog: agent scores are "extremely sensitive to harness choice."
| Model | Intelligence Index | Avg. cost / task | Cost vs. V4-Flash |
|---|---|---|---|
| V4-Flash-0731 | 50 | $0.03 | 1× |
| Kimi K3 | 57 | $0.86 | ~29× |
| GPT-5.6 Sol | 9+ pts higher | $1.86 | ~62× |
| Claude Fable 5 | 9+ pts higher | $3.15 | ~105× |
| Takeaway | Not the smartest score, but the cheapest per task — built for high-volume agent and batch workloads | ||
SECTION 04 Benchmark caveats and six-step API migration checklist
Separate these from the marketing narrative:
- Harness lock-in: V4-Flash-0731 Terminal Bench 2.0 at 82.7 (vs. V4-Pro preview 67.9) used unreleased Harness minimal mode — do not port blindly to Claude Code or Cursor;
- Usability complaints: 21st Century Business Herald, citing overseas dev feedback, reported low input cache-hit rates and occasional safety-classifier timeouts on the official build;
- Funding/IPO rumors: outlets cite ~$7.4B round at ~$48.7B valuation from unnamed sources — not confirmed by DeepSeek or regulatory filings.
- Verify model name: production should call
deepseek-v4-flash(routes to 0731); retiredeepseek-chat/deepseek-reasoner; - Check SDK compatibility: OpenAI ChatCompletions and Anthropic-format endpoints work without structural code changes;
- Optimize caching: cache-hit input is $0.0028/M — monitor hit rates (community reports may be low);
- Plan around peak pricing: announced 2x weekday surge hours in Beijing time — batch jobs off 9am–12pm and 2pm–6pm;
- A/B on your workload: blind-test against Kimi K3 and Qwen3.8-Max; do not trust vendor Harness scores alone;
- Split API vs. consumer: July 31 touched API only — validate end-user app experience separately.
# OpenAI-compatible — deepseek-v4-flash points to 0731 official build
from openai import OpenAI
client = OpenAI(
api_key="YOUR_DEEPSEEK_API_KEY",
base_url="https://api.deepseek.com"
)
response = client.chat.completions.create(
model="deepseek-v4-flash",
messages=[{"role": "user", "content": "Summarize V4-Flash-0731 vs preview."}]
)
print(response.choices[0].message.content)
SECTION 05 The Chinese "kill line," citeable facts, and sourcing
- 284B / 13B active, MIT weights: 0731 official weights on Hugging Face, commercial fine-tune and redistribution allowed;
- vs. Claude Opus 4.8 list price: 21st Century Business Herald cites ~36× cheaper on cache-miss input, ~179× on cache-hit, ~89× on output (vendor prices, not audited);
- Seven weeks atop OpenRouter: preview V4-Flash reportedly led usage rankings seven straight weeks — market proof of the "good enough + cheapest" strategy;
- "Kill line" (斩杀线): Chinese dev slang for DeepSeek's price-performance bar — competitors must clearly beat capability or undercut price; helps explain GPT-5.6 Luna's 80% price cut in the same window;
- Muted chip reaction: Nvidia, Broadcom, AMD barely moved July 31 — markets now treat "DeepSeek efficiency" as normal engineering, unlike the 2025 R1 selloff.
Before 0731 shipped, forums mocked founder Liang Wenfeng as "Liang Baikai" (empty promise) over slipped V4-Pro targets; after the Flash build beat expectations, nicknames flipped back to "Liang Sheng" (the sage) — a quick sentiment barometer.
Official and third-party sources — verify after any upstream update:
DeepSeek official API docs and changelog
Hugging Face: deepseek-ai/DeepSeek-V4-Flash model card
Artificial Analysis: independent Intelligence Index
Agent pipelines built on DeepSeek V4 still need stable macOS CI for Xcode builds, Metal, and iOS automation. Virtualized Mac environments add hypervisor overhead and compatibility risk. For production teams that need zero-loss native Apple silicon, stable iOS CI/CD, and 24/7 Agent automation, MACNOX dedicated physical Mac nodes are usually the better fit: genuine Apple hardware, full root, no hypervisor tax, flexible daily/weekly/monthly terms. See also DeepSeek V4 GA pricing and architecture and OpenRouter July rankings analysis.
SECTION 07 FAQ
What changed from V3.2 to V4?
Native 1M-token context with much lower long-context compute and memory (vendor data: V4-Pro at 1M tokens uses 27% of V3.2 FLOPs and 10% KV cache). V4 adds agent-focused training and works with Claude Code, OpenCode, and similar tools.
V4 Flash or V4 Pro for daily use?
For chat, batch jobs, or high-volume low-cost agents, V4-Flash-0731 official is the better value and already beats V4-Pro preview on agent scores. For deepest world knowledge and complex reasoning with budget to spare, V4-Pro preview is an option until official GA.
Is V4-Pro GA available yet?
Not as of August 5, 2026. Only V4-Flash-0731 is official, API-only. V4-Pro GA and Harness are "as soon as possible" with no confirmed date; August 10–20 rumors are unverified.
Can I trust DeepSeek's benchmark numbers?
Partially. Widely adopted third-party benchmarks like SWE-bench Verified carry more weight. Agent scores (Terminal Bench 2.0, etc.) used unreleased Harness — wait for independent reproduction with Claude Code, Cursor, or other harnesses.
What does this mean for my API integration?
OpenAI and Anthropic-format clients need no code changes — deepseek-v4-flash auto-updates to 0731. If you still call retired deepseek-chat or deepseek-reasoner, migrate immediately (retired July 24).