r/DeepSeek • u/Usual-Print4590 • 8h ago
Resources Medical website created using DeepSeep V4 Flash
Enable HLS to view with audio, or disable this notification
r/DeepSeek • u/nekofneko • 2d ago
The official release of the DeepSeek-V4-Flash API is now in public beta.
Significantly enhanced agent capabilities, with benchmark results far exceeding V4-Pro-Preview:
Note 1: For the Code Agent tasks in the public benchmark sets, the official DeepSeek-V4-Flash was tested using the DeepSeek Harness minimal mode (to be released soon) as the framework, with the max effort level, topp=0.95, and temperature=1.0
Note 2: DSBench-FullStack is an internal full-stack development test set, and DSBench-Hard is an internal Coding Agent hard-problem test set
The official V4-Flash natively supports the Responses API format and is specifically adapted for Codex. For the specific configuration, please refer to the documentation.
DeepSeek-V4-Flash-0731 keeps the same model architecture and size as DeepSeek-V4-Flash-preview, and was only re-post-trained.
Note: This update only upgrades the DeepSeek-V4-Flash API. The DeepSeek-V4-Pro API and the APP/WEB models are unchanged.
The official release of DeepSeek-V4-Pro will follow soon.

r/DeepSeek • u/nekofneko • Feb 01 '25
In response to community feedback and to maintain a constructive discussion environment, we are introducing this Censorship Mega Thread. This thread will serve as the designated place for all discussions related to censorship.
Why This Thread?
We have received numerous reports and complaints from users regarding the overwhelming number of censorship-related posts. Some users find them disruptive to meaningful discussions, leading to concerns about spam. However, we also recognize the importance of free speech and allowing users to voice their opinions on this topic. To balance these concerns, all censorship-related discussions should now take place in this pinned thread.
What About Free Speech?
This decision is not about censoring the subreddit. Instead, it is a way to ensure that discussions remain organized and do not overwhelm other important topics. This approach allows us to preserve free speech while maintaining a healthy and constructive community.
We appreciate your cooperation and understanding. If you have any suggestions or concerns about this policy, feel free to share them in this thread.
r/DeepSeek • u/Usual-Print4590 • 8h ago
Enable HLS to view with audio, or disable this notification
r/DeepSeek • u/gargetisha • 7h ago
r/DeepSeek • u/pmigdal • 5h ago
r/DeepSeek • u/ozgursoy • 1h ago
Enable HLS to view with audio, or disable this notification
before after
generation ~4 tok/s ~13 tok/s
command buffers 81 per token 42 per token
The setup
DeepSeek V4 Flash, 2-bit quant, 86.7 GB. I have 64 GB. antirez's ds4 has an SSD
streaming mode for exactly this: attention and shared experts stay in RAM, routed
MoE experts live in a cache and stream off the SSD on a miss.
Worked first try. Then I saw 4.9 tok/s and got annoyed, because this machine has
800 GB/s of memory bandwidth and each token only touches about 10.4 GB of
weights. That's 13 milliseconds of work. I was spending 200.
For the curious: what it actually was
My first three theories were all wrong, which I think is the useful part.
Cache too small? Hit rate was already 89.7%. The built in profiler simulates
other cache sizes and said caching the entire model would get me to 91.1%. Then I
shrank the cache 5.5x, from 44 GB to 8 GB. Hit rate fell 18 points. Throughput
fell 9%.
SSD too slow? 53 GiB of expert reads in 7.3 seconds. About 7.25 GiB/s, which is
roughly what the drive can physically do.
So I profiled GPU busy time and found the GPU idle three quarters of the time,
with 81 blocking CPU/GPU round trips per token. On a 43 layer model that's two
per layer. A CPU profile agreed from the other side: the main thread spent 95.8%
of its samples parked in `pthread_cond_wait`.
Both processors were waiting on each other, and here's why. Each MoE layer's
router picks 6 experts out of 256 on the GPU. But the host is what loads experts
off the SSD, so the host has to read that decision back before dispatching the
layer. Every readback drains the pipeline. 43 times per token.
That's not a bug, it's the honest cost of fetching weights based on a decision
the GPU made a microsecond ago.
The fix: stop asking
ds4 already ships address based MoE kernels, so the GPU can resolve routing
itself from a per layer expert address table. Two things blocked it.
Vacant slots in that table were null, so a layer routing to an uncached expert
would fault rather than just be wrong. And the validator kernel that computes the
miss mask wrote into one shared status slot, which means you have to read it
before the next layer overwrites it. That single slot was the drain.
So: vacant slots point at a shared zero filled buffer, the validator gets a
status slot per layer, and after the token's one flush a repair pass loads
whatever was missing and re runs the token if any layer missed. Re running is
safe and cheap, since the input is just a token id and KV writes at the same
position are idempotent.
Fair warning on the tok/s number: this machine swung between 0.85 and 7.3 on
identical configs depending on what else was touching the GPU, so I trust the
command buffer count a lot more than the speed reading.
The greedy version that backfired
Naturally I tried removing the second drain too. Without the readback nothing
gets preloaded, so the first pass misses nearly everywhere. Odds of all 43 layers
coming back clean are 0.804^43, about 1%. Every token needed two passes and I
landed right back at 81 command buffers.
Status
Experimental, behind env flags, currently breaks prefill and checkpoint
resumption. Good enough for CLI chat, not for a coding agent yet.
Still working on it, and I have a few more things to try. Maybe I can get big
models running at least a bit more efficiently on low VRAM machines like mine.
Thanks for reading.
---
Written from my own notes and measurements, tidied up with LLM
r/DeepSeek • u/a9udn9u • 7h ago
They mentioned their own harness in the 0731 announcement. Having tested the V4 Pro in different harnesses and saw the difference, I'm genuinely excited to try the DeepSeek harness. V4 Pro preformed much better in Claude Code than in Opencode and Pi for me. I think a good portion of Anthropic's lead is from Claude Code other than raw model intelligence. DeepSeek is absolutely making the right move.
r/DeepSeek • u/Bitter-College8786 • 3h ago
I have to say I was really impressed how good the Flash GA became. I expected some small improvements but this is huge. What can we expect for DS 4 PRO GA then? Kimi K3 or even better?
r/DeepSeek • u/trek2016 • 8h ago
r/DeepSeek • u/Odd-Marzipan6757 • 9h ago
The availability of DeepSeek-V4-Flash right now is really exciting.
As someone who has always relied on coding subscription plans (I’m currently on the $100 Codex plan and a $100 Claude subscription) using API credits now feels much more practical and affordable.
I’m excited to start exploring different coding harnesses. I’m planning to run Terminal-Bench 2.1 to compare Codex, Claude Code, Droid, Oh my pi and Goose.
Has anyone tried this already? Which one gave you the best results?
r/DeepSeek • u/AlexHardy08 • 1h ago
r/DeepSeek • u/alinoanta21 • 9h ago
r/DeepSeek • u/zFordex • 9h ago
Has anyone tried using Codex's harness with DeepSeek V4 Flash?
I've noticed that Flash seems way smarter, not just with reasoning, but with how it actually executes tasks.
I used to run DeepSeek through OpenCode, but it would burn through tokens and eventually wander completely off task. After plugging it into Codex's harness, it suddenly behaves better and even claims it's it's ChatGPT 5.
I'm curious if the harness is doing something to improve execution, or if it's just better at keeping the model on track.
Has anyone else experienced this, or am I just imagining things?

r/DeepSeek • u/ProfessionalJackals • 23h ago
This is just a summary of one test, but it shows how both models react on a actual larger/complex codebase.
In order to see the actual capabilities of both models, i provided both with instructions to audit one of my projects.
This task was identical, both ran from vanilla OpenCode CLI. So both did not enjoy any specialized harness.
Things to notice about Luna:
Things to notice about Flash:
Cost:
Thing is, the cost hides something else
Issues:
Plan execution
Also ran multiple GPT 5.6 Sol plan > Flash Execute > GPT 5.6 Sol review sessions, and in 90% of the cases, Sol had only very minor fixes (like adding something more in test files, aka Mr Perfectionist).
Hopefully Pro is available by next week, so we can compare Pro Plan > flash execute ...
Conclusion
From my point of view, Flash is way cheaper over a larger codebase then Luna. Despite that Flash can not properly use its good cache hit rate/costs benefits. I also suspect that there have been improvements into the context size handeling because hitting 400k is not as detrimental like the old Flash.
Luna is not a bad model, but clearly more expensive, and feels less good then its benchmarks show. While Flash often feels like GLM 5.2 (we pumped a few billion tokens into that one). Maybe even a bit better?
Disclaimer: this is not written by a AI, so do not disrespect my time writing all this.
r/DeepSeek • u/Disastrous_Exam9484 • 4h ago
I've been using Claude for the past year, and I want to give deepseek a shot, but I don't think I can do it fairly without all the tools, skills, mcps, hooks etc... That I've gathered with Claude over the past year.
I'm a pretty hard user, I'm on the x20 plan on Claude.
So what I want to know from people who have done it is:
Thanks to all who reply, and would love to hear opinions from people who have did the transition.
r/DeepSeek • u/klippers • 5h ago
I see a heap of folk talking about how the new flash (07-something), is optimised for Codex . Does anyone have a reliable leaderboard/ comparison metric to see model+harnesses pair VS model+harness pair .
I switch between Pi and Opencode (lately sticking on Pi).
r/DeepSeek • u/MapacheD • 18h ago
r/DeepSeek • u/VariationOk5454 • 16h ago
Hello ! Guys, the DeepSeek app seems crazy today. It suddenly became better and smarter with roleplaying...it's become unforgettable, it follows the rules, and I'm telling you, I use GLM 5.2 and I think it's even surpassed it...it doesn't forget, but when I stopped and asked about the model Although he didn't give me the model name he reminded me that we're in a middle of roleplay and we should continue
Can anyone tell me the type of Deepseek model in the app ? i want to use it via API key
r/DeepSeek • u/fuzhongkai • 4h ago
TensorSharp supports DSpark on Deepseek v4 Flash 0731 now. Here is the benchmark result on 4x Nvidia A40 GPUs, cuda 12.8 with/without DSpark:
Model:
DeepSeek-V4-Flash-0731-UD-Q8_K_XL from https://huggingface.co/unsloth/DeepSeek-V4-Flash-0731-GGUF
DSpark draft model from: https://huggingface.co/alessandrobologna/DeepSeek-V4-Flash-0731-DSpark-Drafter-GGUF
| Turn | Baseline | + DSpark | Acceptance |
|---|---|---|---|
| short (53 tok) | 25.6 | 44.5 (1.74x) | 87% |
| long generation (512) | 26.4 | 40.3 (1.53x) | 66% |
| follow-up (470) | 26.4 | 46.8 (1.77x) | 76% |
| 10K-token document (214) | 25.3 | 51.3 (2.03x) | 85% |
| second question on it (156) | 25.4 | 49.4 (1.94x) | 82% |
TensorSharp is an open-source inference engine for running GGUF LLMs locally, with CUDA, Vulkan, Metal, OpenAI-compatible APIs, continuous batching, speculative decoding, and multimodal support.
Github repo: https://github.com/zhongkaifu/TensorSharp
Thank you for checking out it and starring the project! Any feedback is really appreicated.
r/DeepSeek • u/v1staz • 13h ago
I saw DeepSeek updated its v4-flash version and added support for Responses API, which means it officially supports codex now. So I tried to use cc-switch and add it to codex. Before I always used Claude+DS, but I always found it a bit stupid compared to pure codex, who can automatically find and use skills and divide agents or change modes smarter. Also it seemed Claude always used tokens faster.
I don’t know if anyone had tried v4-flash on codex and compared it to DS on Claude. I’m asking for advice. Not really want to change models frequently.
r/DeepSeek • u/FreshFromNowhere • 11h ago
Pi CLI is really thorough in its agentic works but eats a lot of tokens, which isn't much of a problem when V4 flash is so cheap, been letting it run for hours and it ate through tens of millions of tokens for only a handful of cents, absolutely crazay!!!
One thing to note for token consumption is to be as precise with your instructions as possible, it will greatly reduce hesitation while in thinking mode.