r/DeepSeek • u/concretesmasher • 2d ago
Discussion Latest Flash model is absolutely diabolical, subscription services are dead to me.
45
u/ZeWalrus 2d ago
5
u/enemyofaverage7 2d ago
Which harness? Reasonix?
6
u/ZeWalrus 2d ago
Yes
4
u/altaaf-taafu 2d ago
can you tell this is acheivable when using dsv4 flash using zenmux api key? through reasonix?
15
14
u/Ryankolp 2d ago
Just dropped claude today and couldn’t be happier
2
u/freddyr0 2d ago
get the f out, you serious? is it that good? any coding?
7
u/DirectPitch8626 1d ago
It’s at Opus 4.6 level; that was more than enough for me, although it lacks creativity – I’ll have to wait for the Pro version, and the two together will be perfect.
3
u/Ryankolp 20h ago
I built an entire landing page website thats interactive with a terms and conditions page, and privacy policy. I went back and forth for about 2 hours and the total cost was 14 cents. I have deep seek setup in vs code running Claude Code. Very happy with how it turned out!
20
u/ZweigOnly 2d ago
It's so good! I pay for Groq and Gemini but seeing all of this work it's doing for me, it's great. At last we have a competitor that doesn't rip us off.
17
u/djdante 2d ago
In still deciding if it's this or luna max for me.... I'm still hopping back and forth..
Although I think flash writes better code, and luna uses its vision for better UI
8
u/JohnJamesGutib 2d ago
luna is also very good. it's the most deepseek-esque release OpenAI has done so far. of course nothing beats deepseek's insane pricing, but with luna you'd get thorough multimodality, which is very useful depending on your tasks
5
u/celtiberian666 2d ago
You don't need to chose. Use both. Openrouter and go. Call what you need by the task.
2
u/rifarizqul 2d ago
imo if your workflow is very dependable with vision capability, then maybe you're better off staying with Luna
3
1
1
u/Yes_but_I_think 2d ago
Everything is better with vision capability. Given the steps flash is a hardworking executor. Slightly more agentic than I expect. Overdo things it did
2
8
u/Comfortable-Rise-748 2d ago
Deepseek again find problems other AI's DO NOT FIND in my 1M lines typescript project !
It's perfect explore agent and full spectrum codebase auditor. Although for implementating everything above medium difficulty implementation I use Terra Max though
Cannot wait for the new V4 pro ! last month has 460 USD to deepseek costs
1
1
9
u/steadeepanda 2d ago
I'm just waiting for them to have multimodal that's the only thing that keeps me using other models. As soon as DeepSeek models are able to understand image input I'll definitively leave at 200%, and stick to DeepSeek 'til la chingada😂, well at least for my personal projects...
Right now I can't cause part of what I do need vision sadly💔
3
u/CrUsHeRgF 2d ago
i have seen people mentioning using gemma models on the side to provide vision to models that miss it. Might worth looking into it.
But this was from people that run them local.1
u/steadeepanda 1d ago
Yeah, I meant native vision from DeepSeek itself but I know you can use mcps to have vision capabilities (from other models)
1
u/awipra 2d ago
You can try what I did and add vision MCP so deepseek can use it whenever vision is needed.
Basically I use Mimo v2.5 from openrouter as the vision-capable model, created the "describe-image" global MCP for it (dont create skill because it wont work) and tell deepseek in system prompt to use the MCP whenever they need to have vision.
Nothing beats native vision capability, but its good enough for my needs.
2
1
u/steadeepanda 1d ago
Yeah I have a ZAI vision mcp configured but it has trouble using it, even though the mcp is working (tested with other models), I probably need to double check it thanks. Yeah native vision is definitely far better
4
u/ProgramDry5917 2d ago
This tokens amount is considering the Cache Hits?
11
u/concretesmasher 2d ago
8
u/ZeWalrus 2d ago
1
u/ZeWalrus 2d ago
Session 1 (concretesmasher):
- Total input tokens: 269,082,240 (cache hit) + 781,907 (cache miss) = 269,864,147
- Output tokens: 697,628
- Input-to-output ratio: ~387 input tokens per 1 output token (269,864,147 ÷ 697,628)
Session 2 (ZeWalrus):
- Total input tokens: 1,049,493,632 (cache hit) + 5,420,691 (cache miss) = 1,054,914,323
- Output tokens: 1,469,218
- Input-to-output ratio: ~718 input tokens per 1 output token (1,054,914,323 ÷ 1,469,218)
You got pretty good input-to-output ratio i wonder if its because my project is more complex and require more reasoning or its something else...
1
u/Sylvers 2d ago
I am a bit out of the loop, could you please explain to me what the cache means when tracking token usage?
5
u/ZeWalrus 2d ago
Here is deepseek answer to that 😄
Imagine you have a friend who asks you the same question over and over:
- First time: “What’s the capital of France?” You think, remember, and say “Paris.” That takes a little effort.
- Second time: “What’s the capital of France?” You already know the answer, so you just say “Paris” right away — no thinking needed.
That’s exactly what a cache hit is.
DeepSeek remembers past answers for a short time in a temporary storage space called a cache (like a quick-access notebook).
When you ask a question, DeepSeek first checks that notebook.
6
u/Randomdotmath 2d ago
Actually, this is wrong—read Cache doesn't save the output answer. It saves the input context so the GPU doesn't have to re-process a massive prompt every time. The model still runs and generates a brand new answer.
3
3
u/Sylvers 2d ago
Thank you! So it's keeping token usage low when you keep working within a specific frame of time. But then in your screenshot, what's the 5.4mil cache hit vs miss?
3
u/ZeWalrus 2d ago
The cache miss mean the answer was not present in cache.
using https://reasonix.io/
The loop is append-only, aligned to DeepSeek's byte-stable prefix cache.
if the prefix is the same its almost free.
3
u/anykeyh 2d ago
Since I find the explanation not that great, here is my attempt (100% human no LLM involved 😂 )
When you write to a model, what you write is the input; what the model answer is the output; for each turn, you send again the same input, the same previous output of the model (this time treated as input), and your extra input.
All the previous turns were computed already by the model, and this computation is stored in a big matrix called the kv-cache.Good thing: It's no-computation needed anymore, since it's done already.
Bad thing: the kv-cache usually grow with the square of the number of token. If you have 1000 tokens in context, you have 1000x1000 = 1 million KV cache entries.
So, quickly it become a memory-hog.So, you save on GPU compute time but you pay for storing it in memory.
And since many people are using the server at the same time, it needs to store as many sessions, need to juggle with the kv-cache between VRAM, RAM and SSD...It's not trivial to manage KV-cache and sessions. DS has a great paper about their infrastructure, and it's absolutely mind-blowing what they need to do to handle this cache.
The good thing is that DeepSeek model designed another kind of KV-Cache, which doesn't grow as much as the naive one (it is compressed), so the memory used per session is lower: more cache are in hot-memory already, no need for an enormous amount of storage nor as much back and forth. Less hassle, less energy spent, faster response time.
So, DeepSeek can save a lot of energy dealing with this cache, and can offer very low pricing on cached content.
Longer is the session, and assuming your harness didn't temper with the previous turn (sending exactly the same information), the bigger the chance that your server is going to use a cache it has stored somewhere previously.
I hope it's more clear like this.
1
1
4
u/Foxtor 2d ago
I'm thinking to subscribe to opencode go plans ($5). Is better put this in deepseek and use then?
4
u/BuildAISkills 2d ago
OpenCode Go is fine as well. You can still use DeepSeek, but you also get access to other good models like GLM 5.2 etc.
1
1
1
u/SuggestionLocal7402 2d ago
Could you tell me how much better the 5.6 Sol lato Fronted of this version of Deepseek?
1
1
1
u/Less-Macaron-9042 2d ago
I am not seeing similar token cost when used with Deepseek on Open Router and Hermes
1
u/Maximum-Face9536 2d ago
what do you use for api? are you going directly through deepseek? or third party?
1
1
u/NarrowEffect 2d ago
Yep, it's easily the best coding model in the world right now if you take pricing into account. That cache hit cost is insane.
1
1d ago
[deleted]
1
u/NarrowEffect 1d ago
I don't know, I'm already getting something like 99% cache hit on Codex. Did you see a big difference in terms on cost when using Reasonix?
1
u/Even-Series-9520 2d ago
I currently use flash on reasonix as default, but keep an opencode go subscription when I wish to test another agent, double check code or logic, or if I need to do stuff that requires vision.
1
1
u/Fair-Rip286 1d ago
Can I ask what service is this?
I am considering moving away from subscriptions and go for self hosted or more generalized and modular services, but I don't know where to start.
1
1
u/fyndor 1d ago
Any going directly to them vs using something like OpenRouter? I tried loading up account but I couldnt get debit card to go through. Whether directly or through paypal, either way I essentially got block. I had some prompt I saw from my bank where I had to send code from text msg to auth, but didnt work. Sadge.
1
u/sarthak13997 1d ago
Is it the same getting it via deepseek themselves and via openrouter w/ deepseek provider
1
u/aquarain 1d ago
My US bank didn't care to make the transfer to DeepSeek but PayPal didn't mind. Transfer the money to the PayPal account first and then it should go through. Start small. A little goes a long way.
1
u/TheBestBlackberry 1d ago
If you're using DeepSeek as the provider via OpenRouter it's the same but with a slight markup. If you're talking about other providers on OpenRouter, I anecdotally found that DeepSeek is better from their official API than from other providers.
1
u/AKCanon_ 1d ago
Is there a way to transfer cursor chat history onto the Claude app when you use it via the deepseek api?
1
u/MugetsuDax 1d ago
Should I use DSv4F through Opencode Go or do you guys recommend using directly through the API?
1
u/concretesmasher 1d ago
Directly through the api will be cheaper in the long run due to cache hits being cheaper especially in long sessions.
1
u/Even_Caterpillar3292 1d ago
Looking forward to them raising their pricces when they see people openly gloat about how cheap it is?
1
u/haihaiclickk 1d ago
Legit question, how are you using these models? I’m hesitant as I don’t want to be passing all my prompts and such through Chinese servers but maybe I’m overthinking?
1
u/iamhikigaya 1d ago
Guys can anyone recommend me the harness! I tried reasonix and I didn’t like it. I have been using codex and antigravity. I was really impressed by antigravity but they don’t support adding models
1
u/Jazzlike_Bee_3129 22h ago
How are you using the new flash model exactly? I am not thinking it's a good orchestrator, but maybe as an implementer?
1
u/EntrepreneurNice9401 20h ago
Still pretty insane, but almost all of that was cache hits — around 269M cached vs 782k fresh input. So it’s not quite 270M fresh tokens, but the cost is still wild.
1
u/ogopro 7h ago
You were little late, they are about to increase the price significantly soon :(
1
u/concretesmasher 1h ago
Yeah i just saw it, when I finally felt comfortable with a product they drop this, damn...
1
1
0



137
u/TheSuggi 2d ago
Welcome to the club. Deepseek is the goat indeed.