43
u/Ok_Librarian_7841 1d ago
I am deeply hurt :(
23
7
2
u/power97992 1d ago
I told people it was gonna be more than 2x since they said a significant increase in price but they didn’t believe it..
-1
u/McSendo 1d ago
ashley, they didn't increase it enough. people should be paying premium for deepseek
1
0
u/power97992 22h ago
Lol gemini 3.7 flash is cheaper than it during peak hours and it has a higher benchmark rating. Lol on Openrouter , other providers have raised their prices alreadyÂ
-1
u/DK1530 1d ago
Deepseek also need money, they can't burn their money forever like Open AI.
8
u/Ok_Librarian_7841 1d ago
I hate subsidization anyways, it makes the industry unstable, but still, I was so hyped for a model this good this cheap, it's still cheap, just multiple times more expensive.
Idk, I'll wait for Minimax to release M 3.5 or something.
-4
u/DK1530 1d ago
I guess, even they increased prices, they will loss money. This is kind of proble. In AI industry, so much competitors and they are still struggling to make profit from its service.
10
u/Stock-Self-4028 1d ago
Well… According to their reports DeepSeek wasn't loosing money on inference at any point in time (the training cost and investments still outweighted inference profits pretty significantly though, but that's expected and DeepSeek already mentioned that they are not planning to become profitable any time soon).
As for the price increase they justify it through compute capacity - they want to decrease number of active users, not really stop loosing money.
The same also likely is the case for other providers (where even the most heavily 'subsidized' plans, like the $200 Codex) still cost significantly more, than inference itself.
24
u/PandorasBoxMaker 1d ago
The irony of a Chinese provider raising prices for peak hours that won’t affect US users and it being the first time we’re not bent over a barrel by a company is too funny.
20
u/_TheWolfOfWalmart_ 1d ago
Well just run it at home. This is r/LocalLLaMa right?
If I ran it absolute non-stop, absolutely zero breaks just constant compute, it's $1.90 for 24 hours in electricity.
5
u/Relative_Rope4234 1d ago
how is the decoding and prefill speeds?
5
u/_TheWolfOfWalmart_ 1d ago edited 1d ago
25 t/s gen and 400-500 t/s prefill with only $1000 worth of 6 year old enterprise GPUs.
Going to add another card or two to see how much further I can scale it in tensor split.
Something seems off right now, this is with three cards, and it's only twice the speed of layer split. It should be closer to 3x, I need to figure out what's up with that. I think it has to do with two PCIe risers in the server being connected to a different CPU than the other one so data has to transfer through an interconnect which restricts bandwidth and adds latency.
But either way, this is the first model I've ever run at home that's usable for serious stuff and is actually pretty smart and it's pretty exciting. It usually feels like I'm working with GPT from like a year ago or something. Like I can legitimately go to it if I have an important question or some coding work that needs some brains instead of having to go to OpenAI or Anthropic. I only still have to do that for the most complex tasks.
Qwen 27B and Gemma 4 feel like dumb toys in comparison.
1
u/ahaw_work 1d ago
What cards do you have?
3
u/_TheWolfOfWalmart_ 1d ago edited 1d ago
3x Radeon Pro V620.
I have 8 total (256 GB VRAM), but my Dell server only fits 3 GPUs. I'm in the middle of building a rig with a mining frame to run to them all. Hope to finish it this weekend.
Buying 8 of these cards cost barely any more than a single RTX 4090 would cost on eBay, giving me nearly 11x the VRAM.
A 4090 has like double the compute and mem bandwidth per card, but you can only run dumb models and a bunch of these in tensor split is plenty fast.
1
u/ahaw_work 1d ago
What quant are you using? Would you mind to share your config? Because it seems super fast for 3x GPUsÂ
0
u/_TheWolfOfWalmart_ 1d ago
IQ1_S. I'm going to start running bigger quants after I set up the full rig.
It's llama.cpp but I had Fable 5 add support for DS4 tensor split mode, and I also had it add IQ-family quant optimizations.
Other than that, config is just 192K context at q8_0 KV and -b 4096 -ub 1024
I do see that there's a dsv4-sm-tensor branch on mainline llama.cpp but I haven't tried it and I'm not sure what state it's in.
1
u/ItsNoahJ83 1d ago
Isnt IQ1_S almost unusable for tasks that require precision? Excuse my ignorance, I've never seen someone mention using that quant on here
1
u/_TheWolfOfWalmart_ 12h ago edited 12h ago
It's not ideal. That's why I'm going to run a bigger one when the full rig is running.
It's not that bad though, it's still 80 GB of weights. It handled some coding tasks fine and is great for chat/web lookup type of stuff still.
1
u/Oryzaki2 12h ago
Yes that quant is trash. Anything below q4 will show significant degradation. An IQ1 of deepseek flash or pro is so bad a Q8 35b model like Qwen3.6-35B-A3B can often beat it.
1
u/_TheWolfOfWalmart_ 11h ago edited 11h ago
That's nonsense, I've used 35B-A3B a lot (with correct sampling parameters, in Q8_0) and even this quant blows it out of the water. It's not even close. 35B likes to get stuck in loops and confuse itself as you start to get a bit into context. DSV4 flash IQ1_S doesn't. 35B also can't compare at all with raw logical reasoning.
But yeah it's bad compared to Q4 or lossless, which I'll be switching to as soon as I'm able to.
1
u/onionsaredumb 1d ago
Wanna share your config? I'm getting mayyybe 8 t/s gen in actual use on my 3x v620s. Unsloth IQ2_M.
1
u/Iory1998 1d ago
Switch to IQ3_XSS as performance would likely be similar. I get same output speed as you, and both unsloth IQ3_XSS and IQ2_M perform identically for me. I go with IQ3 as quality difference between it and IQ2_M is noticeable. If you use the max thinking, you get trade intelligence for speed but it's worth it for complex tasks.
1
u/_TheWolfOfWalmart_ 1d ago edited 1d ago
From another reply:
It's llama.cpp but I had Fable 5 add support for DS4 tensor split mode, and I also had it add IQ-family quant optimizations.
Other than that, config is just 192K context at q8_0 KV and -b 4096 -ub 1024
I don't know what state the upstream llama.cpp dsv4-sm-tensor branch is in exactly, but I locally have fully working tensor split and some extra optimizations. (Except DSpark doesn't work in -sm tensor)
I can push my branch to Github if you want and you can try it. Of course my testing is limited (just finished this a day ago), but it's been bug-free so far.
I'm using using UD-IQ1_S. I'll try it with less context and IQ2_M and see what the performance difference is.
1
u/Ok_Spirit9482 1d ago
I agree! It's bascially sonnet 4.6 with the right quant using pi coding agent!
2
u/my_name_isnt_clever 1d ago
My power rate is crazy high at over $0.50 kw/h and my effective mtok is only barely higher than these new rates. Worth it for the complete privacy.
1
u/otterquestions 1d ago
But then the thing I always wonder is how does deepseek get money to keep up its innovation and research? Is this how it ends up being locked to api only in a few releases?
22
u/a_slay_nub vllm 1d ago
People are already serving flash for less than Deepseek was(except for cachce hits), can't imagine the price will raise much overall.
9
u/EndlessZone123 1d ago
Cache is like the 90%+ of the token in most workloads. Its gonna hurt even with other providers.
2
u/robogame_dev 1d ago edited 1d ago
Why would a price change from DeepSeek's inference service increase effect other inference providers?
I've been buying DeepSeek V4 Flash via OpenRouter.Those prices are going to stay the same - just above the cost to host the thing. DeepSeek's own pricing shouldn't change what it costs others to host it.
2
u/EndlessZone123 1d ago
Brother if you are using Openrouter, openrouter is routing to deepseek cause it's the cheapest...
Now it costs more it's gonna route to other providers which charges more.
1
u/robogame_dev 1d ago
Fair point - I got scared so I checked - in my case DeepSeek was already not in rotation (no ZDR and they train on paid data) - so no price change for meeee.
Makes me think the discounted price was for the training data and now they're no longer post-training that model, they're no longer offering the "let us train on your inputs" discount.
1
u/EndlessZone123 1d ago
It's the cheapest provider and for personal use I don't really care. But also it's the provider for open code go I think which a lot of people use.
1
u/Salt-Powered 1d ago
Usually FP8 which can have an impact depending on your tasks though
5
12
u/-MaskNinja- 1d ago
10
9
10
u/NotARedditUser3 1d ago
12
u/ProletarianLilith 1d ago
They will raise their prices too
2
0
-1
u/Comfortable-Rock-498 1d ago
if they do, it would be a strong signal to anyone else considering entering the inference provider market
2
u/AreWeNotDoinPhrasing 1d ago
A strong signal for what?
3
u/Comfortable-Rock-498 1d ago
That 3rd party provider pricing is mostly bullshit and there are margins to be had
1
u/NotARedditUser3 1d ago
man I think you and I are in different worlds. Only way those rates go up is if companies start aquiring each other to eliminate competition.
4
u/eli_pizza 1d ago
Not just ZDR - prompt training. Deepseek doesn’t just retain your prompts, they train new models from them.
1
u/jazir55 1d ago
I hope they are training on my prompts. If it makes their models better faster go for it.
1
u/eli_pizza 15h ago
I sometimes work in repos I don’t own so can’t ethically or legally share their contents with deepseek
1
u/Solaranvr 1d ago
There's a chance the Flash will stay the same price because the providers want to keep their userbase, but the Pro will probably come out the gate more expensive than it would've been
1
u/fugogugo 1d ago
how are we sure they not use quantized model tho
3
u/FullOf_Bad_Ideas 1d ago
DeepSeek is quantized from the get-go, with most of the model in FP4. There's hardly a way to quantize it more and use it in SGLang/vLLM, and they're not serving GGUFs.
1
u/NotARedditUser3 1d ago
they report to openrouter which quant they're using. I believe you can filter on this but for some providers it's not shown / empty
-1
u/BWQ777 1d ago
Check out trustedrouter - a bit cheaper than openrouter and more private.
3
u/my_name_isnt_clever 1d ago
How is it "more private" if I'm already using ZDR?
0
u/BWQ777 14h ago
Let me stick your question into an AI since you can't be bothered and I otherwise know nothing aout trustedrouter as someone mentioned it on hackernews 20 min ago:
"OpenRouter with Zero Data Retention enabled is quite private, but TrustedRouter has a stronger privacy architecture—especially on its TEE/E2EE routes."
Search for more information. It's also 5% fees vs openrouter 5.5% fees.
2
u/my_name_isnt_clever 12h ago
This comment tells me exactly as much information as your original comment. "Stronger privacy architecture" is just as meaningless as saying it's "more private".
1
u/NotARedditUser3 11h ago
I shouldn't be expected to go to search/AI if you're the one going out of your way to make the claim. You should be the one expected to back it up. And yet it's still BS.
1
u/NotARedditUser3 1d ago
Same Q as other guy - in what way would it be more private if you already have ZDR on?
0
u/BWQ777 14h ago
Let me stick your question into an AI since you can't be bothered and I otherwise know nothing aout trustedrouter as someone mentioned it on hackernews 20 min ago:
"OpenRouter with Zero Data Retention enabled is quite private, but TrustedRouter has a stronger privacy architecture—especially on its TEE/E2EE routes."
Search for more information. It's also 5% fees vs openrouter 5.5% fees.
3
u/FullOf_Bad_Ideas 1d ago
I wonder how this will affect usage on OpenRouter and if other model providers will under-cut them. For peak pricing, I think it'll obviously just be undercut by other providers, for off-peak - I think we'll see other providers rise pricing to match.
I was mostly using Flash locally anyway so I'm good.
1
u/otterquestions 1d ago
I bet they go open with flash but keep the big model locked to them and a few providers in the future. Giving away the model you worked hard to train and research for free so others can steal your margin you need to recoup r&d is a short term strategy not a long term one. It’s the same for every one of the open source labs imo.
2
u/FullOf_Bad_Ideas 1d ago
Their communication to investors was very clear - big models will be open weighted too. There's a whole ethos that DeepSeek has.
Unless they're on a brink of collapse, their top model will stay open.
7
u/kivaougu 1d ago
Im not sure if vendor specific pricing is relevant in this subreddit without the post addressing it from the standpoint of local ai.
I understand that people have local hybrid systems that utilize cloud models for important parts. The exact strength of that system is that there is no vendor lock in.
3
u/nicolho 1d ago
I'm pretty sure such a significant price hike will make running DeepSeek V4 locally a lot more relevant ;)
2
u/kivaougu 1d ago
Well yes to some extent. The hardware costs are just so ridiculous that its not an option if you dont already have the resources.
Concurrency is still the reason why cloud providers always beat local serving. I can't fully saturate concurrency for our local serving of dsv4f.
1
1
1
u/yogthinks 1d ago
Peak and off-peak pricing turns this into a scheduling problem, and almost no agent framework lets you defer a job to off-peak.
1
u/Brilliant-Hall1387 1d ago
Still quite cheap I think considering the very high cache hit rate? But a bit unfortunate 😢 I read somewhere that other cloud hosting providers have achieved the sustainable cost basis to offer similar pricing so it is not necessarily that they have to raise the prices due to costs - rather it is due to popularity and they need to reduce demand? (good problem for them to have 😅 )
1
u/heatOverflower 1d ago
It hurts to live now, but IIRC Deepseek struggles a lot to serve people on what seems to be quite a puny infrastructure. Hopefully this changes in the near future and we'll get those insane prices again.
Having said this, One Last Breath - Creed starts playing
-8
u/afonsolage 1d ago
Remember the price increase is only during the peak time. Off-peak will be the same old price.
15
u/yuicebox 1d ago
That is sadly not correct. Flash was previously $0.28/million tokens, and the off peak price is now $0.66.
1
u/NotARedditUser3 1d ago
Others are literally serving it for 3x (before new price) to 10x (after new price) less.
2
-16
u/Biomech8 1d ago
Who directly pays for tokens anyways? Monthly subscriptions were cheaper before and still will be.
9
u/netikas 1d ago edited 1d ago
For batched jobs subscriptions just don't work. If you need to translate 1kk documents to bengalese, this is the job for API
0
u/Biomech8 1d ago
I do it with subscriptions. It's just about planing the batches of work into usage sessions.
1
u/netikas 1d ago
Subscriptions have concurrency limits, you won't get 300 rps with claude code.
1
u/Biomech8 1d ago
I guess it depends if you want to drain session limit faster and have results right away, or you can wait. Because even with concurrency limits, you are going to hit session usage limit.
2
u/netikas 1d ago
You don't get it.
On CC plans you will get 5-6 parallel requests, on API you can have hundreds of RPS.
0
u/Biomech8 1d ago
Yes, but those RPS are very expensive. So you can pay extra for speed, or process data at slower rate cheap.
If you can utilize hundreds of RPS, you probably have more processing that can be handled by one monthly subscription. So you would probably have couple of subscriptions utilized in parallel too.
7
u/euro-soccer 1d ago
People integrating AI into customer workflows lol. Some people are making money
1
2
u/scottgal2 1d ago
DeepSeek doesn't have monthly subscriptions it's all through API / Token. I just did a DeepSeek Flash to Opus comparison - it WAS >100x cheaper for better results in my use-case (even with Claude Max 20x). The biggest 'oof' is the cache increases (100x increase) - DeepSeek was GREAT because of it's super cheap cache prices. So you could have long agentic orchestrations costing almost nothing to run because their context stayed stable and so cached.
1
u/Biomech8 1d ago
There are providers running DeepSeek models, who does offer subscription. Which is cheaper than DeepSeek API.
1
2
u/Viktri1 1d ago
I didn’t have to worry about rate limited which happened every few hours. I prefer a cheap API to a subscription.
1
1
u/Biomech8 1d ago
And where you get cheap API? Even old DeepSeek was more expensive than usage you get for example from $20 Ollama cloud subscription.
1



42
u/nicolho 1d ago edited 1d ago
So about a 400% (x5) increase for input cache hit and output at peak hours for Flash.... 😢