DeepSeek V4.1 Flash Enters a Two-Day API Beta: New Architecture, Native Multimodal, and an Expiry Date in the Model Name
By the Deep Seek AI editorial desk · September 8, 2026 · 6 min read
DeepSeek did what it usually does before an announcement: it dropped the model into the live API. Around 15:00 Beijing time on September 8, 2026, the team told its official community groups that an "intermediate version" — deepseek-v4.1-flash-expires-on-0910 — was open for limited testing. The trailing 0910 is the whole story: this build is scheduled to go offline around September 10.
The 60-second version
- Model ID:
deepseek-v4.1-flash-expires-on-0910. The base URL does not change — swap the model string only. - New architecture with native multimodal support, per DeepSeek's own description: images and text handled inside one model instead of via a separate vision extension.
- Billing matches
deepseek-v4-flashduring the test — $0.14 / 1M input (cache miss), $0.0028 on a cache hit, $0.28 / 1M output. - 20 concurrent requests per account. That is the hard ceiling for any benchmark you run.
- Not a launch. No model card, no technical report, no changelog entry. The public Models & Pricing page still lists only V4 Flash, V4 Pro and V4-Flash-Vision-Exp.
What DeepSeek actually claimed
The official wording is short. V4.1 Flash is an intermediate checkpoint that uses a new model architecture with native multimodal support, and DeepSeek claims it is stronger, faster and cheaper than V4 Flash. That is a vendor claim in a community-group post accompanied by a feedback form, not a benchmark table — there are no published scores to check it against yet.
Note what is not claimed: nothing about V4 Pro, nothing about the consumer app, and no new price. If you were waiting for the official V4-Pro release promised when V4-Flash went GA on July 31, this is not it.
Why "native multimodal" is the real change
Until now, mixing images and text on the Flash line meant reaching for a separate vision model — deepseek-v4-flash-vision-exp. That approach runs the image through its own encoder and splices the result into the text sequence. It works, but the conversion step costs latency and loses information at the seam.
Native multimodality means images and text are trained and served inside the same architecture. On a product line whose entire reason to exist is low latency, that is a directional decision rather than a feature bullet: it suggests the cheap tier, not the premium tier, is where DeepSeek wants vision to live. If it holds, "add an image to your existing Flash call" becomes the default rather than an experimental detour.
How to test it before it disappears
from openai import OpenAI
client = OpenAI(
api_key="YOUR_DEEPSEEK_API_KEY",
base_url="https://api.deepseek.com",
)
resp = client.chat.completions.create(
model="deepseek-v4.1-flash-expires-on-0910", # expires 2026-09-10
messages=[{"role": "user", "content": "Summarise this in one line."}],
)
print(resp.choices[0].message.content)Three things worth measuring while the window is open, because nobody has published them yet:
- Time to first token vs
deepseek-v4-flashon identical prompts, single-threaded, so the 20-request cap cannot distort the result. - Image-token accounting. Vision-Exp bills images at a capped token budget; check what the new architecture reports in
usagefor the same image. - Cache-hit behaviour on repeated prefixes — cache pricing is where the Flash tier gets genuinely cheap, and a new architecture can change hit rates.
Do not pin this in production
The expiry is inside the model ID. Any deployment calling deepseek-v4.1-flash-expires-on-0910 after September 10, 2026 fails on an invalid model name — not gracefully, and not with a fallback. Keep production on deepseek-v4-flash, which DeepSeek keeps pointed at the newest stable build, and gate the beta ID behind an environment flag in a test path only.
What it signals about pricing
Billing during the beta matches V4 Flash exactly, so nothing changes on your invoice today. But "lower cost" is one of the three claims, and DeepSeek has form here: the V4-Pro rate cut became permanent, and a peak-hour surcharge remains announced but not active. Our DeepSeek pricing page tracks the official rate card and is checked weekly, so any V4.1 tier will appear there the week it lands.
The safe read: this is an architecture preview, priced as its predecessor to remove any reason not to test it. Judge the cost claim when a rate card exists.
Frequently asked questions
What is the DeepSeek V4.1 Flash model name?
The test model ID is deepseek-v4.1-flash-expires-on-0910. The base URL stays https://api.deepseek.com — only the model string changes. The trailing 0910 is the expiry: the ID stops serving after September 10, 2026.
Is DeepSeek V4.1 Flash an official release?
No. DeepSeek described it in its official community groups as an intermediate version (中间版本) opened for limited testing inside the live API. There is no model card, no technical report and no changelog entry, and the public Models & Pricing page still lists only DeepSeek V4 Flash, DeepSeek V4 Pro and DeepSeek-V4-Flash-Vision-Exp.
How much does DeepSeek V4.1 Flash cost?
Billing matches deepseek-v4-flash during the beta: $0.14 per 1M input tokens on a cache miss, $0.0028 on a cache hit and $0.28 per 1M output tokens. DeepSeek claims lower cost for the new architecture, but no new rate card has been published.
What are the rate limits on the V4.1 Flash beta?
Each account is capped at 20 concurrent requests during the test. That cap is the practical constraint on benchmarking: throughput measurements taken above it reflect queueing, not model speed.
Does V4.1 Flash replace DeepSeek-V4-Flash-Vision-Exp?
Not yet, but that is the direction. Vision-Exp is a separate experimental vision model layered onto the Flash line; V4.1 Flash is described as handling image and text input natively inside one architecture, which removes the separate encoder step.
Should I put the V4.1 Flash beta in production?
No. The expiry date is written into the model ID, so any production call pinned to deepseek-v4.1-flash-expires-on-0910 breaks after September 10, 2026. Keep production on deepseek-v4-flash and use the beta ID only in a test path.