DeepSeek-V4-Flash-0731

Updated
21.08.2026
Thinking
Tools
Reasoning
Code
Multilingual
Web

DeepSeek V4 Flash 0731 is the official V4 Flash release: 284B MoE with 13B active, a 1M context and MIT weights.

At a glance

  • License: MIT
  • Parameters: 284B total, 13B active per token
  • Context length: 1,048,576 tokens
  • Reasoning: effort levels low, high and max
  • Minimum hardware: about 96 GB of memory at AD-IQ1_M

Overview

DeepSeek-V4-Flash-0731 is the official release of DeepSeek V4 Flash, published on July 31, 2026 and superseding the preview. It keeps the structure of the preview and adds a speculative decoding module to the same checkpoint, with the agentic training that shows up across the benchmark table below.

SpecificationDeepSeek V4 Flash 0731
Total parameters284B
Active parameters13B per token
ArchitectureMixture of experts, 256 routed experts with 6 active, 1 shared
Layers43
Context window1,048,576 tokens
ModalitiesText input, text output
ReasoningEffort levels low, high and max
Speculative decodingDSpark module attached to the checkpoint
Release dateJuly 31, 2026
LicenseMIT

The routing is what makes a 284B model tractable: six of 256 experts run per token, so generation costs about what a 13B model costs while all 284B parameters stay resident in memory. The million-token context is the other headline, and it is the reason this model gets used on whole repositories rather than single files.

DeepSeek V4 Flash 0731 benchmarks

DeepSeek's launch numbers, from the model card, compare the 0731 release with the two V4 previews, with GLM-5.2 and with Claude Opus 4.8:

V4 Flash 0731V4 Flash (Preview)V4 Pro (Preview)GLM-5.2Claude Opus 4.8
Terminal Bench 2.1
Agentic terminal-use tasks
82.761.872.181.085.0
NL2Repo
Repo-level code generation
54.239.438.548.969.7
Cybergym
Security and exploit reasoning
76.738.752.7-83.1
DeepSWE
Agentic coding
54.47.312.846.258.0
Toolathlon-Verified
Long-horizon tool use
70.349.755.959.976.2
Agents' Last Exam
Frontier agentic tasks
25.215.816.523.825.7
AutomationBench
Office automation tasks
25.110.812.812.927.2

The gains over the preview are large enough to change what the model is for: DeepSWE goes from 7.3 to 54.4. It also clears V4 Pro (Preview) on every row here while activating fewer parameters. Opus 4.8 stays ahead across the board, closest on Agents' Last Exam.

DeepSeek V4 Flash 0731 hardware requirements

The system requirement to check is memory. We quantized the model from the original weights and published the builds as AtomicChat/DeepSeek-V4-Flash-0731-GGUF.

MemoryBuild to pickFile size
96 GBAD-IQ1_M70.2 GB
128 GBAD-IQ2_S93.4 GB
192 GBAD-IQ3_S130.8 GB
256 GB and upAD-MXFP4154.5 GB

These sizes put the model on a large Mac Studio or a multi-GPU box rather than a laptop. On a PC you can keep the attention layers on a 24 GB card and offload the experts to system RAM, which works here because only 13B parameters are active per token. Holding the full 1M context needs room for the KV cache on top of the weights.

How to run DeepSeek V4 Flash 0731 in Atomic Chat

Atomic Chat is a free local app for macOS, Windows and Linux. It includes a Hugging Face model browser and a built-in chat, with no manual llama.cpp build required.

  1. Download Atomic Chat for your platform and open it.
  2. Search for DeepSeek-V4-Flash-0731 in the model browser and open Download Options.
  3. Pick the build that fits the memory you have, then start a chat.

The full walkthrough, with the quant table and the llama.cpp commands, is in our guide to running DeepSeek V4 Flash locally.

For the rest of the lineup see every DeepSeek model you can run locally, including DeepSeek-V4-Pro and the earlier V4 Flash preview.

License

DeepSeek-V4-Flash-0731 is released under the MIT license. It permits commercial use, modification, redistribution and private deployment as long as the copyright and license notice stay with the code.

Get the weights from Hugging Face

huggingface-cli download deepseek-ai/DeepSeek-V4-Flash-0731
# our GGUF build:
huggingface-cli download AtomicChat/DeepSeek-V4-Flash-0731-GGUF --include "AD-IQ2_S/*"
curl http://localhost:8000/v1/chat/completions \
  -H "Content-Type: application/json" \
  -d '{
    "model": "DeepSeek-V4-Flash-0731",
    "messages": [{"role": "user", "content": "Port this service from Flask to FastAPI."}],
    "temperature": 1.0,
    "top_p": 0.95
  }'
# The 0731 release ships encoding scripts instead of a Jinja chat template.
from encoding_dsv4 import encode_messages
import transformers

tokenizer = transformers.AutoTokenizer.from_pretrained("deepseek-ai/DeepSeek-V4-Flash-0731")
messages = [{"role": "user", "content": "Explain the DSpark decoding path."}]
prompt = encode_messages(messages, thinking_mode="thinking", reasoning_effort="max")
tokens = tokenizer.encode(prompt)
import OpenAI from "openai";

const client = new OpenAI({ baseURL: "http://localhost:8000/v1", apiKey: "local" });
const res = await client.chat.completions.create({
  model: "DeepSeek-V4-Flash-0731",
  messages: [{ role: "user", content: "Audit this dependency tree for known CVEs." }],
});
console.log(res.choices[0].message.content);
Desktop
macOS
(M1 or better)
Download
Windows
(x64)
Download
Linux
(x86_64)
Download

Frequently asked questions

It is the official release of DeepSeek V4 Flash, published on July 31, 2026. The model is a 284B mixture-of-experts with 13B active parameters per token, a 1,048,576-token context window and MIT-licensed weights.

Same structure, much stronger agentic behaviour. On DeepSeek's own table it goes from 7.3 to 54.4 on DeepSWE and from 61.8 to 82.7 on Terminal Bench 2.1, and it now beats the V4 Pro preview on every listed benchmark.

Our smallest build, AD-IQ1_M, is 70.2 GB, so about 96 GB of memory is the practical floor. AD-IQ2_S at 93.4 GB suits a 128 GB machine, and AD-MXFP4 at 154.5 GB is the near-reference build.

Only with offloading. Keep the attention layers on the card and push the experts to system RAM: because just 13B parameters are active per token, that stays usable, though generation is slower than an all-GPU setup.

Yes. The weights are MIT-licensed, so commercial use, modification and redistribution are allowed with no fee.