Chinese Models Desk
Chinese Models Desk

DeepSeek Goes Pro: V4-Pro Hits General Availability, Harness Launches, and the Price War Officially Ends

DeepSeek's V4-Pro reached general availability on August 13 with a #2 SWE-bench ranking and a new open-source agent framework — then three days later rewrote its pricing structure with hikes of up to 1,100%, signaling that the era of subsidised Chinese frontier AI is definitively over.

ShareWhatsAppXFacebook

DeepSeek Goes Pro: V4-Pro Hits General Availability, Harness Launches, and the Price War Officially Ends

On August 13, 2026, DeepSeek did something it had been building toward for months: it shipped a production-ready version of its flagship reasoning model, released an open-source agent framework to compete directly with Claude Code, and — three days later — rewrote its pricing structure in a way that makes the old "near-zero margins" era look like a distant memory. The three moves together constitute the most consequential week in DeepSeek's short history, and they carry implications that extend well beyond the lab's Hangzhou headquarters.

The model is DeepSeek-V4-Pro-0813, the general availability checkpoint of a system that had been in preview since April. The framework is DeepSeek Harness (dsh), an MIT-licensed, modular agent runtime that amassed over 95,000 GitHub stars within two days of release. And the pricing change — effective August 16 at 16:00 UTC — introduced a peak/off-peak billing structure that raised output token costs for V4-Pro by as much as 355% at peak hours compared to the previous flat rate, with cache-hit input prices rising by over 1,100% in some tiers.

Taken together, these announcements mark a clear inflection point: DeepSeek is no longer the scrappy disruptor selling frontier inference at cost. It is a company preparing for a mainland China IPO, managing real infrastructure constraints, and asking the global developer community to pay accordingly.

The Model: What V4-Pro-0813 Actually Delivers

DeepSeek-V4-Pro is a 1.6-trillion-parameter Mixture-of-Experts model that activates 49 billion parameters per token — a ratio that allows it to deliver frontier-class reasoning while keeping per-token compute costs manageable at scale. The architecture builds on the V4 family's established MoE foundation but introduces several significant engineering advances that distinguish the 0813 production checkpoint from the April preview.

Architectural Innovations

The most consequential change is the hybrid attention system combining Compressed Sparse Attention (CSA) and Heavily Compressed Attention (HCA). Together, these mechanisms reduce KV cache usage by 90% compared to DeepSeek-V3.2 and cut single-token inference FLOPs to 27% of the previous generation's requirements. For a model serving millions of API requests daily, that efficiency gain is not an academic footnote — it is the difference between a viable business and a subsidised loss leader.

The model also incorporates Manifold-Constrained Hyper-Connections (mHC), which strengthen residual connections to improve signal propagation stability across the deep MoE stack. Training ran on over 32 trillion tokens using the Muon optimizer, with FP4 precision for expert parameters and FP8 for other components. The result is a model that, according to DeepSeek's official release notes, supports a 1-million-token context window and can generate outputs of up to 384,000 tokens — figures that place it squarely in the long-context tier occupied by Claude Fable 5 and GPT-5.6 Sol.

Inference is accelerated by DSpark, a speculative decoding framework that DeepSeek open-sourced earlier this year. The DSpark technical paper on arXiv describes a semi-autoregressive generation approach that pairs a parallel backbone with a lightweight sequential Markov head to prevent "suffix decay" — the coherence loss that plagues naive parallel drafting. A confidence-scheduled verification mechanism dynamically adjusts verification length based on GPU load, achieving 57–85% faster per-user generation speeds without altering the model's output distribution. The framework is lossless: outputs are byte-identical to standard autoregressive generation.

Benchmark Performance: Strong Coding, Contested Agentic Claims

DeepSeek's internal benchmark figures for V4-Pro-0813 are impressive on their face:

  • Terminal Bench 2.1: 87.9 — a significant jump from the April preview
  • DeepSWE: 62.7, placing it among the top coding agents globally
  • CyberGym: 83.3, competitive with frontier Western models
  • Toolathlon-Verified: 74.1
  • DSBench-FullStack: 71.1

The most credible independent data point is the SWE-bench Verified leaderboard, where V4-Pro-0813 achieved a score of 96.40% using a neutral bash-only harness — placing it #2 globally, trailing only Claude Opus 5 at 97.00%. At a cost of $0.022 per test, it is by far the most economical model in the top tier of that leaderboard.

"The SWE-bench result is the number that matters most for enterprise buyers. It tells you that V4-Pro can handle real-world patch-style coding tasks at near-frontier quality for a fraction of what Anthropic charges. That's a compelling procurement argument regardless of geopolitical concerns." > — CryptoBriefing analysis of V4-Pro vs. Claude Fable 5

However, the picture is more complicated for autonomous agentic workflows. Independent evaluators found that V4-Pro's Terminal-Bench score on the benchmark's reference harness was 54.68% — a 33-point gap from DeepSeek's vendor-reported 87.9%. The discrepancy is attributed to harness sensitivity: the model performs significantly better in structured, scaffolded environments than in open-ended autonomous settings. On LiveBench's agentic coding track, V4-Pro ranked last among seven frontier peers. This is not a fatal flaw — it is a known characteristic of MoE models optimised for throughput — but it is a meaningful caveat for teams building long-horizon autonomous agents.

New API Features for Developers

Beyond raw performance, the 0813 release introduces three developer-facing capabilities that meaningfully expand V4-Pro's utility:

  • Native OpenAI Responses API support — V4-Pro now integrates directly with Codex-style coding agent workflows without translation proxies, supporting text instructions, function tools, and the `apply_patch` custom tool
  • Configurable reasoning effort — developers can now specify `reasoning_effort` as `low`, `high`, or `max`, allowing fine-grained control over the trade-off between computational intensity and latency
  • Dual-mode operation — thinking mode can be toggled via the `thinking` object in API requests, enabling the same endpoint to serve both fast-response and deep-reasoning use cases

The model weights are available on Hugging Face under an MIT license, though at 892.7 GB, local hosting remains impractical for most teams outside of well-resourced research institutions.

DeepSeek Harness: The Open-Source Bet on the Agent Layer

The model release was accompanied by something arguably more strategically significant: DeepSeek Harness (dsh), an open-source agent framework that positions DeepSeek as a competitor not just in the model layer but in the infrastructure layer that sits above it.

VentureBeat's coverage of the launch framed it accurately: Harness is a direct challenge to Claude Code and Codex, the proprietary agent runtimes that have become the default scaffolding for AI-assisted software development. The difference is that Harness is MIT-licensed, model-agnostic, and built on an "everything-is-a-plugin" architecture that gives developers full visibility into — and control over — every component of the agent loop.

How Harness Works

The framework is built on Cordis, an open-source plugin kernel described in a companion paper published simultaneously with the Harness release. The architecture is defined by two principles:

  • Everything is a plugin: Every functional component — model adapter, tool registry, session log, sandbox, storage, and agent loop — is implemented as a swappable plugin. Developers can replace any part of the system without modifying a privileged core.
  • Traceable session state: An append-only event log serves as the single source of truth, capturing all system commands, tool calls, and context changes. Sessions can be searched, resumed, forked, or replayed for auditing and debugging.

Harness ships with four runtime presets: Standard (full-featured coding agent with file editing, shell access, and subagent workflows), Code (model writes TypeScript programs instead of making individual tool calls), Minimal (the specific environment used for V4-Pro's benchmark methodology), and Creator (for developing new presets and custom plugins).

"Harness is not just a tool for running DeepSeek models. It is a statement about where DeepSeek believes the value in the AI stack will ultimately concentrate — not in the weights, but in the runtime that orchestrates them." > — Flowtivity analysis of the Harness architecture

The project was led by Cui Tianyi and reached developer preview in roughly five months after the Harness team formed in May 2026. The 95,000 GitHub stars in two days signal that the developer community has been waiting for exactly this kind of open, inspectable alternative to the proprietary agent runtimes that have dominated the market. The framework is explicitly labeled as a developer preview (v0.1.0-rc.5), with breaking changes expected — but the architectural foundations are solid enough that serious teams are already building on it.

The Pricing Restructuring: What Changed and Why It Matters

Three days after the model launch, DeepSeek implemented the pricing change that will define its relationship with the developer community for the foreseeable future. Effective August 16, 2026, at 16:00 UTC, the company replaced its flat-rate pricing with a peak/off-peak structure.

The New Rate Structure

Peak hours are defined as 01:00–04:00 UTC and 06:00–10:00 UTC — corresponding to 9:00 a.m.–noon and 2:00 p.m.–6:00 p.m. Beijing Time. Off-peak rates are set at 50% of peak rates. The specific per-million-token rates are:

  • V4-Flash (Peak): $0.44 cache-miss input / $1.32 output
  • V4-Flash (Off-Peak): $0.22 cache-miss input / $0.66 output
  • V4-Pro (Peak): $1.32 cache-miss input / $3.96 output
  • V4-Pro (Off-Peak): $0.66 cache-miss input / $1.98 output

For context, the previous flat rates were $0.435/M input and $0.87/M output for V4-Pro. At peak hours, output costs have risen by 355%. Cache-hit input pricing — the rate that matters most for agentic loops with stable prompt prefixes — rose from $0.003625/M to $0.044/M at peak, a 1,114% increase in that specific tier.

According to Yahoo Finance's reporting on the announcement, DeepSeek framed the change as a mechanism to "allocate resources more reasonably" in response to high global demand. The Business Times Singapore connected the dots more directly: the restructuring is central to DeepSeek's preparation for a mainland China IPO projected for 2027, following a funding round that valued the company at approximately $71–74 billion.

The Geopolitical Asymmetry in the Pricing Design

One detail in the pricing structure deserves particular attention: the peak windows are defined in UTC, which means they correspond to Chinese business hours. For developers in the United States and Europe, standard working hours fall almost entirely within the off-peak tier. For developers in China, the opposite is true — they face peak rates during the hours they are most likely to be running production workloads.

This asymmetry is not accidental. It reflects the reality that DeepSeek's infrastructure is under the most strain from domestic Chinese demand, and that the company's IPO preparation requires demonstrating sustainable unit economics to mainland investors who understand the cost structure of running frontier AI at scale. International developers, by contrast, get a structural discount simply by virtue of their time zone — a dynamic that makes DeepSeek's off-peak rates genuinely competitive with Western alternatives even after the hike.

What Developers Should Do Now

For teams currently running DeepSeek workloads, the practical implications are clear:

  • Shift batch and background workloads to off-peak hours — the 50% discount for non-latency-sensitive tasks is substantial and easy to capture with basic scheduling
  • Optimize for cache hits — DeepSeek's automatic context caching remains in place, and engineering prompts to maximize stable prefix reuse can dramatically reduce effective input costs
  • Route by task complexity — V4-Flash remains the right choice for standard tasks, with V4-Pro reserved for complex reasoning and agentic workflows where the performance premium justifies the cost
  • Evaluate Harness for agent infrastructure — for teams building coding agents, the open-source framework offers a level of transparency and customizability that proprietary alternatives cannot match

The Competitive Landscape: Where V4-Pro Sits

Against the global frontier, DeepSeek-V4-Pro occupies a well-defined position. On the Artificial Analysis Intelligence Index, it scores 44.3 compared to Claude Fable 5's 59.9 — a meaningful gap in overall intelligence, but one that narrows considerably in the specific domains where DeepSeek has focused its post-training: coding, agentic tool use, and long-context reasoning.

The cost differential remains striking even after the price hike. Claude Fable 5 is priced at $10/M input and $50/M output — making V4-Pro's off-peak rates of $0.66/M input and $1.98/M output approximately 15–25x cheaper depending on the workload. For high-volume production deployments where the performance gap is acceptable, that arithmetic is difficult to argue with.

Within the Chinese AI ecosystem, V4-Pro faces competition from Alibaba's Qwen3.8-Max (2.4 trillion parameters, released August 3 with open weights following on August 13) and Moonshot's Kimi K3 (2.8 trillion parameters, the current BenchLM leader among Chinese models with a composite score of 80.5). Both are larger models by parameter count, but DeepSeek's architectural efficiency — particularly the 90% KV cache reduction — means that raw parameter counts are an increasingly poor proxy for real-world performance.

The release of Harness adds a dimension that neither Qwen nor Kimi has matched: a production-grade, open-source agent runtime that is explicitly designed to be model-agnostic. If Harness achieves the adoption its GitHub star count suggests is possible, DeepSeek will have established a foothold in the agent infrastructure layer that could prove more durable than any individual model release.

What This Week Means for the Broader Chinese AI Story

The events of August 13–16 are best understood not as isolated product announcements but as a coherent strategic statement. DeepSeek is signaling, simultaneously, that it can compete at the frontier of model capability, that it intends to own a meaningful share of the agent runtime market, and that it is no longer willing to subsidise global AI adoption at the expense of its own financial sustainability.

The pricing restructuring, in particular, closes a chapter that began in January 2026 when DeepSeek's original V3 pricing triggered a global repricing of AI inference. The "death zone" — the pricing corridor where other models struggled to compete — has narrowed significantly. DeepSeek's off-peak rates are still competitive, but they are no longer the category-defining outlier they once were. The lab that started a price war is now, carefully and deliberately, ending it on its own terms.

For the global developer community, the message is clear: the era of near-free Chinese frontier AI was a market entry strategy, not a permanent state of affairs. The models are real, the capabilities are genuine, and the infrastructure is scaling — but the bill is coming due.

Practical Takeaways

  • V4-Pro-0813 is available now via the `deepseek-v4-pro` API endpoint; the official documentation has full pricing details
  • Open weights (892.7 GB, MIT license) are on Hugging Face — practical for research institutions, not for most production deployments
  • DeepSeek Harness is available as a developer preview on GitHub under MIT license; the Digital Applied guide covers setup and configuration
  • New pricing is in effect as of August 16; teams should audit their usage patterns and shift batch workloads to off-peak hours immediately
  • SWE-bench #2 is the headline benchmark for enterprise evaluation — but teams building autonomous agents should run their own harness-specific evaluations before committing to V4-Pro for long-horizon tasks
#DeepSeek#DeepSeek V4-Pro#China AI#AI Agents#API Pricing#Open Source#DeepSeek Harness#Agentic AI#SWE-bench#MoE#Developer Tools#AI Infrastructure#IPO
Sophia Chen
Sophia Chen

🇨🇦 China Desk Correspondent · Toronto, Canada

Bridges the East–West gap — what China’s models mean for everyone else.

Comments

Open discussion — no account needed. Be respectful.

0/4000
Loading comments…

More from Chinese Models Desk

Moore Threads Eyes Hong Kong: China's 'Little Nvidia' Posts 147% Revenue Surge and Plans a Second Listing

Moore Threads, the Beijing GPU startup that debuted on Shanghai's STAR Market in December 2025 with a 425% first-day surge, has announced plans to list on the Hong Kong Stock Exchange — the same week it reported 1.74 billion yuan in first-half 2026 revenue, a 147% year-on-year jump. The dual-listing strategy signals that China's domestic AI chip ecosystem is no longer just surviving without Nvidia; it is actively courting international capital.

Wei LianWei Lian
Aug 9, 2026 11m

DeepSeek Bets on Bodies: A $21M Stake in Unitree's IPO Is China's Boldest Embodied AI Move Yet

DeepSeek has invested 140.8 million yuan into Unitree Robotics' landmark Shanghai STAR Market IPO — the first mainland listing for a humanoid robot maker — locking in a three-year pact to co-develop the 'robot brain' that China's physical AI ambitions have been missing. The deal signals that the lab best known for disrupting software inference is now betting its future on hardware that walks.

Sophia ChenSophia Chen
Aug 9, 2026 9m

Alibaba's Qwen3.8-27B Is Dropping This Week — and the License Question Could Define the Whole Release

Alibaba has committed to releasing open weights for both Qwen3.8-Max and its smaller companion Qwen3.8-27B during the week of August 10 — the first time a Max-class Qwen model will be available for self-hosting. But with license terms still unpublished and revenue-sharing plans circling the broader Qwen ecosystem, developers need to know exactly what to check before they download.

Wei LianWei Lian
Aug 9, 2026 10m