DeepSeek V4 Flash is the lightweight variant of DeepSeek's V4 family, released April 24, 2026. It's a 284B parameter mixture-of-experts model that activates only 13B parameters per token — making it fast, cheap, and surprisingly capable. At $0.14/1M input and $0.28/1M output, it's one of the most cost-efficient frontier-class models available.
DeepSeek shipped V4 as a two-tier release on the same day:
| V4 Flash | V4 Pro | |
|---|---|---|
| Total parameters | 284B | 1.6T |
| Active parameters per token | 13B | 49B |
| Context window | 1M tokens | 1M tokens |
| Input price (per 1M) | $0.14 | $0.435 |
| Output price (per 1M) | $0.28 | $0.87 |
| Thinking mode | Yes | Yes |
| License | MIT | MIT |
| Self-hostable | Yes (1-2x A100 80GB) | Yes (8x H100) |
Flash is the practical choice for most teams. V4 Pro delivers higher quality on the hardest tasks but costs 3x more per token and requires significantly more hardware to self-host.
V4 isn't just more parameters than V3 — it's a new architecture with three key changes:
| Benchmark | V4 Flash | V4 Pro | GPT-4o | Claude Sonnet 4.6 |
|---|---|---|---|---|
| MMLU | ~87% | ~90% | 88% | 90% |
| HumanEval | ~84% | ~91% | 90% | 87% |
| AIME 2026 (math) | 96.7% | ~98% | ~76% | ~78% |
| Context window | 1M | 1M | 128K | 200K |
The AIME math score is the standout — V4 Flash scores higher on advanced math than GPT-4o or Claude Sonnet, reflecting DeepSeek's continued investment in reasoning.
If you're using the old deepseek-chat or deepseek-reasoner endpoint names, they now map to deepseek-v4-flash (non-thinking and thinking modes respectively). Both legacy names will be fully retired after July 24, 2026. Update your code to use deepseek-v4-flash directly.
The DeepSeek API is OpenAI-compatible, so Tokoscope wraps it with no changes:
from tokoscope import wrap
from openai import OpenAI
client = wrap(OpenAI(
base_url="https://api.deepseek.com/v1",
api_key="YOUR_DEEPSEEK_KEY"
), api_key="ts_live_...")
response = client.chat.completions.create(
model="deepseek-v4-flash",
messages=[{"role": "user", "content": "Hello"}]
)
| Use case | Recommendation |
|---|---|
| Cost-sensitive production at scale | V4 Flash — 34x cheaper input than Claude Opus |
| Long context (200K+ tokens) | V4 Flash or Gemini 2.5 Flash (1M context both) |
| Math and reasoning tasks | V4 Flash with thinking mode enabled |
| Highest quality, cost no object | V4 Pro or Claude Opus |
| Privacy / self-hosted | V4 Flash on 2x A100 80GB |
Tokoscope works with the DeepSeek API out of the box. Free to start.
Get started free →