A million-token context window used to sound like a luxury feature. DeepSeek just tried to make it the default.
That is why the reaction on r/LocalLLaMA is worth taking seriously. The headline is DeepSeek-V4: new open weights, a Pro model with 1.6T total parameters, a Flash model with 284B total parameters, and a claimed one-million-token context length. The real issue is sharper: if long context becomes cheap enough, the center of gravity moves from "can the model remember this?" to "who can serve it, audit it, and pay for it?"
DeepSeek is not presenting V4 as a small checkpoint refresh. It is presenting it as a preview of a new operating assumption for agents: giant memory windows, lower serving cost, OpenAI-compatible and Anthropic-compatible APIs, open weights, and model variants tuned for coding-agent workflows.
Some of that is verified. Some of it is still vendor math. The distinction matters.
What DeepSeek actually shipped
DeepSeek's official announcement says the DeepSeek-V4 preview is live on the web, app, and API, and that the model family is open-sourced. The Hugging Face collection is also live, with model pages for DeepSeek-V4-Pro and DeepSeek-V4-Flash.
The model card says the family includes:
- DeepSeek-V4-Pro: 1.6T total parameters, 49B activated parameters.
- DeepSeek-V4-Flash: 284B total parameters, 13B activated parameters.
- Context length: 1M tokens for both.
- License: MIT, according to the Hugging Face model metadata and repository card.
- Precision: mixed FP4 and FP8 for the instruct models, with MoE expert parameters using FP4 and most other parameters using FP8.
DeepSeek's API pricing page lists both deepseek-v4-flash and deepseek-v4-pro under the same base URL, with OpenAI-format and Anthropic-format endpoints. It also lists 1M context and a maximum output of 384K tokens. The published prices are striking: Flash at $0.14 per 1M cache-miss input tokens and $0.28 per 1M output tokens, Pro at $1.74 per 1M cache-miss input tokens and $3.48 per 1M output tokens. Cache-hit input is cheaper.
The old API names are also on a clock. DeepSeek says deepseek-chat and deepseek-reasoner will be deprecated in the future, and the Chinese announcement gives a date: 2026-07-24. For now, those names map to non-thinking and thinking modes of V4 Flash.
The architecture claim is about serving cost
The technical report and model card frame V4 around long-context efficiency. DeepSeek says the system combines compressed sparse attention and heavily compressed attention. In the 1M-token setting, the company claims V4-Pro uses only 27 percent of DeepSeek-V3.2's single-token inference FLOPs and 10 percent of its KV cache.
That is the claim to watch. A huge context window is not useful if every request turns into an infrastructure bill. The model card is arguing that V4 changes the economics of keeping far more text in the active working set.
DeepSeek also says it uses Manifold-Constrained Hyper-Connections, the Muon optimizer, and more than 32T pretraining tokens, followed by a post-training pipeline that trains domain experts and then consolidates them through on-policy distillation. Those details are interesting, but the market reaction is likely to care less about the names and more about whether the model can make long-context agents affordable in practice.
That is still not independently proven. DeepSeek's efficiency numbers are vendor-reported. The weights exist, the API docs exist, and the model cards exist. Real-world serving behavior across vLLM, llama.cpp-style local stacks, cloud endpoints, and agent tools will take longer to settle.
Why Reddit reacted so fast
The hottest r/LocalLLaMA thread linked directly to the Hugging Face collection. The early comments did what that community usually does: they moved past launch language and started arguing about hardware.
One user wrote that this was the most annoyed they had been at themselves for not buying more RAM. Another pointed out that a 284B model with 13B active parameters is not going to fit casually into 128GB. Others immediately started discussing 256GB machines, multiple RTX 3090s, quantization, DDR5 stability, and whether consumer platforms are still the right place to run models at this scale.
That is a useful correction to the hype. "Open weights" does not mean "laptop model." V4 Flash may be much smaller than V4 Pro, but it is still a large MoE system. The open-source question is no longer only whether the weights are downloadable. It is whether the community can build a practical serving stack around models whose headline numbers assume serious memory and bandwidth.
Another Reddit thread focused on the 384K maximum output limit. The post was more demo than benchmark: the user asked the model to generate a large single-file HTML "web OS" and said it produced about 100KB of HTML. The comments were appropriately skeptical about what that proved. A browser inside a browser is not a browser engine. A large output is not the same as reliable long-horizon reasoning.
Still, the reaction captured something real. Developers are starting to test models not just by whether they can answer hard questions, but by whether they can stay coherent while producing long, structured artifacts.
The agent angle is not subtle
DeepSeek's Chinese announcement says V4 was adapted and optimized for agent products including Claude Code, OpenClaw, OpenCode, and CodeBuddy. It also says V4 has become the company's internal agentic coding model, with internal feedback placing the experience above Sonnet 4.5 and close to Opus 4.6 non-thinking mode, while still behind Opus 4.6 thinking mode.
That is a vendor claim, not an independent benchmark. It is also a revealing claim. DeepSeek is not only competing on chatbot benchmarks. It is aiming at the workflow where a model reads a repository, edits code, writes docs, calls tools, and keeps state across a long session.
Public reaction outside Reddit lined up with that angle. DeepSeek's own X post announced V4 as open-sourced with cost-effective 1M context. vLLM posted day-zero support for V4 Pro and Flash and described it as built for tasks up to 1M tokens. Artificial Analysis said V4 Pro ranked as the top open-weights model on its GDPval-AA agentic real-world work evaluation. Those signals do not settle quality, but they show where the ecosystem is looking first: agentic work, long context, and serving support.
What remains uncertain
The biggest uncertainty is capability. DeepSeek's model card contains many benchmark tables, including comparisons against closed and open models. Until third-party evaluators and everyday users test the release across messy coding tasks, benchmark claims should stay in the "vendor-reported" bucket.
The second uncertainty is operating cost. DeepSeek's API prices are low on paper, especially for Flash. But long-context workloads are sensitive to caching, throughput, latency, rate limits, and output length. A cheap per-token price can still become expensive if agents shovel whole repositories into context by default.
The third uncertainty is local practicality. The weights are open and MIT-licensed, but V4 is not small. The Reddit hardware discussion is the sober part of the story: running the model outside DeepSeek's API may require workstation-class memory, careful quantization, and serving software that can handle the new attention design.
The fourth uncertainty is trust. DeepSeek is making strong claims about internal use, agent performance, and closed-model comparisons. Those claims may be directionally right, but the public evidence is still early. The open weights help because they let the community inspect, run, and benchmark the model. They do not remove the need for skepticism.
The practical takeaway
DeepSeek-V4 matters less as a single release than as a pressure test for the next year of AI tooling.
If one-million-token context becomes normal, developers will stop treating memory as a premium feature and start treating it as a budget line. Tooling will need better context selection, better audit logs, better caching, and better defaults. Agents will be able to carry more state, but they will also have more room to hide mistakes, stale assumptions, and accidental data exposure.
The Reddit reaction gets this better than the launch copy. People are excited, but they are also asking the right low-level questions: how much RAM, which serving stack, what price, what latency, what does the model actually do after 200K tokens, and what breaks when it is asked to produce 100K-token artifacts?
That is the interesting part. DeepSeek did not just ship a bigger model. It put a price tag on long memory and dared the rest of the stack to catch up.
Sources
- Reddit: Deepseek V4 Flash and Non-Flash Out on HuggingFace
- Reddit: Takeaways & discussion about the DeepSeek V4 architecture
- Reddit: DeepSeek-v4 has a comical 384K max output capability
- DeepSeek announcement: DeepSeek-V4 preview announcement on WeChat
- DeepSeek API docs: Models & Pricing
- Hugging Face: DeepSeek-V4 collection
- Hugging Face: DeepSeek-V4-Pro model card
- Hugging Face: DeepSeek-V4 technical report PDF
- X public metadata: DeepSeek V4 announcement
- X public metadata: vLLM day-zero support
- X public metadata: Artificial Analysis on GDPval-AA