DeepSeek V4 Pro: open MIT frontier AI

24 April 2026 · 11 min · Model Profiles

An abstract diagram of a 1M-token context band feeding a sparse-expert reasoning core with mixed FP4 and FP8 weights
TL;DR DeepSeek V4 Pro is a 1.6-trillion-parameter MIT-licensed open model with 49B active per token, a native 1M context, and mixed FP4/FP8 weights. It is the cleanest legal profile on the frontier: full MIT, no revenue gates, no MAU triggers, no MaaS clauses. Regulated buyers can skip the license review. Reasoning is its strength. The max thinking mode is built for the hardest STEM, coding and agentic problems. Hardware is a cluster, not a workstation, but lighter than the 2.4T flagships and better served by the Ollama, vLLM and llama.cpp ecosystems at quantized sizes.

If your compliance team has ever turned white at the words "custom license with revenue triggers", DeepSeek V4 Pro is the release they were waiting for. This post is the practical brief: what the model is, why the MIT license actually matters, how much hardware it needs, and what it takes to run it in production, with the honest numbers where independent trackers provide them.

What is DeepSeek V4 Pro?

DeepSeek V4 Pro is the flagship of the DeepSeek V4 family [model card](https://huggingface.co/deepseek-ai/DeepSeek-V4-Pro) (P1): 1.6 trillion total parameters, 49 billion active per token in a mixture-of-experts layout, a native 1-million-token context window, and text-only input. It ships with mixed FP4 and FP8 weights, which keeps the practical deployment footprint lower than the parameter count suggests. It was released in production on April 24, 2026 [DeepSeek announcement](https://api-docs.deepseek.com) (P3), with later checkpoint updates such as the 0813 production update that refine serving behaviour without touching architecture.

It is the text-only workhorse of the flagship tier. If you do not need images, and you need the strongest open reasoning and coding "per legal warrant", V4 Pro is the current default answer alongside Kimi K3.

How does it work?

V4 Pro keeps one design idea that is worth knowing: hybrid attention that blends compressed sparse attention and heavily compressed attention (report (P1)). The effect matters at the 1M-token context: long-context compute and KV-cache drop sharply compared with the prior generation, which is precisely what makes a one-million-token work session practical instead of academic. It also ships several reasoning modes, from a fast non-thinking mode to high and max thinking effort, so a deployer can trade depth against latency per request.

That same architecture and the plain-text payload mean it behaves predictably under load. A cluster of 80 GB GPUs serving FP8 tokens has been the normal configuration in the community guides we now rely on (P3).

Why people adopt it anyway

The classic objection to open models disappears with V4: the license. DeepSeek has published the full MIT license for both Pro and Flash (P1). MIT is the simplest document in the open-software family. You can use it commercially, modify it, distribute it, host it and fine-tune it, and there are no revenue or MAU triggers. For the enterprises that run regulated lists and air-gapped environments, that single fact removes a desk review and a vendor conversation, a point the community explains in the earlier post on [what open-source AI means after license shifts](https://dintechnologies.com/blog/what-open-source-ai-means-after-2025-license-shifts).

What is it good at?

Independent indexes put V4 Pro's agentic, STEM and deep-reasoning results at or near the open frontier [Artificial Analysis](https://artificialanalysis.ai) (P2), [BenchLM](https://benchlm.ai) (P2). Concretely: long coding tasks where the model plans across a large repository, mathematical and scientific reasoning with the max-thinking mode on, and multi-step agent loops where a wrong intermediate step is expensive. Deployed privately, all of that runs with data inside your boundary.

What hardware does it take?

V4 Pro is a cluster model, but a smaller one than the 2.4T flagships. The FP4/FP8 mixed weights, once imported, fit better than the raw token count suggests, and the family has strong community coverage in Ollama, vLLM, llama.cpp and LM Studio at quantized sizes [Quantization guide](https://huggingface.co/docs). Realistic serving tiers:

The memory guide for planning this yourself is in the earlier post on [hardware tiers for local AI inference](https://dintechnologies.com/blog/2026-hardware-tiers-local-ai-inference).

What does it take to run it?

The deployment path is well worn:

1. Pull the FP8 or a GGUF quant of the checkpoint from the catalog.

2. Serve with vLLM for production, or Ollama and LM Studio to prototype fast.

3. Pick the reasoning mode per route: external in the router for quick responses is fine, but the strengths live in high and max thinking. Budget the longer time those modes take.

4. For the long-context routes where a 1M-token window matters, validate throughput at your real token length before promising service levels.

5. Run it inside your network so the private deployment stays private. The same logic is unpacked in the post on [running open models privately](https://dintechnologies.com/blog/running-open-models-privately).

The serving stack comparison is handled in [local AI runtimes compared](https://dintechnologies.com/blog/2026-inference-runtimes-local-ai-tooling-maturity).

What does it cost vs the API?

DeepSeek's hosted API is cheap relative to the closed frontier, and the open weights remove the per-token risk. The decision rule from the community's [cost reality check](https://dintechnologies.com/blog/mid-year-cost-reality-check) holds: self-hosting wins only once sustained utilisation covers the cluster's amortised cost (P3). For batch-heavy or regulated workloads, that point arrives quickly; for bursty low-volume apps it may never.

When is Pro the wrong choice?

Where this leaves you

If a clean MIT license, a 1M context and frontier reasoning are the three things you cannot compromise, today DeepSeek V4 Pro is the safest open-weight flagship to design against. Start your evaluation on the API, spin a quantised copy on your own hardware for a private pilot, and only then size the full cluster. Re-check the current model card and the license file at the top of the pilot.

References

  • DeepSeek (2026) 'DeepSeek V4 Pro model card and technical report'. Hugging Face. Available at: https://huggingface.co/deepseek-ai/DeepSeek-V4-Pro (Accessed: 17 August 2026).
  • DeepSeek (2026) 'DeepSeek V4 series release announcement'. DeepSeek. Available at: https://api-docs.deepseek.com (Accessed: 17 August 2026).
  • Artificial Analysis (2026) 'Open-weight model intelligence index'. Artificial Analysis. Available at: https://artificialanalysis.ai (Accessed: 17 August 2026).
  • BenchLM (2026) 'Public model and benchmark tracker'. BenchLM. Available at: https://benchlm.ai (Accessed: 17 August 2026).