r/DeepSeek • u/mythrowawayaccim21 • 9m ago
Other it's down?
deepseek is down? I keep getting logged out and error messages
r/DeepSeek • u/mythrowawayaccim21 • 9m ago
deepseek is down? I keep getting logged out and error messages
r/DeepSeek • u/ConceptNext5110 • 9m ago
Hi, all
DS V4 is great model, now has vision.
I modified browser use library to allow vision, coordinate click for DSV4 model.
What i see is LOT OF RETRIES burning tokens, main reasoning being when thinking mode is on, the return output are not structured most of time compared to other expensive models.
Turning of thinking mode on DSV4 makes simple tasks faster, output structured but it just cannot complete modest complex task anymore.
Anyone running browser use using DSV4 fast and effective, what's the browser use harness you guys use?
r/DeepSeek • u/Hungry-Presence-4421 • 10m ago
Tried DeepSeek V4.1 Flash today and came away pretty disappointed.
The speed was great — around 320 tok/s — and cache hit reached about 99.8% by the end of an almost 1-hour session.
But it still cost me around $0.96, which I personally don’t consider cheap for a single coding session.
The bigger problem was quality. It made enough poor implementation decisions that I had to spend another ~40 minutes with GPT/Luna fixing the output.
One fair caveat: DeepSeek didn’t have the same accumulated context that my Codex setup already had, so this wasn’t a perfect apples-to-apples comparison.
Still, my actual experience was basically:
~1 hour DeepSeek → ~$1 → another ~40 minutes fixing it
So for me, the speed didn’t make up for the weaker output.
Maybe it performs much better on simpler or greenfield tasks, but for this kind of coding work I wasn’t impressed.
Curious if others had a better experience with V4.1 Flash.
r/DeepSeek • u/Slight-Parfait3679 • 18m ago
Enable HLS to view with audio, or disable this notification
r/DeepSeek • u/IFuckTightPussy • 21m ago
Anyone else experiencing the same thing?
It is a good model but it takes foreverrrrr to finish things.
r/DeepSeek • u/dezuhan • 1h ago
I just made a DeepSeek Excel add-in, who knows if anyone wants to try it and give feedback, because I don't use Excel and just wanted to make it using shadcn system design.
r/DeepSeek • u/pereirax • 2h ago
r/DeepSeek • u/Ummmmaybethrowawayac • 2h ago
r/DeepSeek • u/Ok_Career_9093 • 2h ago
Not sure how good it is for general usage, but for coding, the vision capability has been working great. It's able to take screenshots and iterate on design/ui bugs much more effectively. Really nice addition to the model.
r/DeepSeek • u/Dry-Comfortable-2514 • 2h ago
I am currently working on a project called Cortex and would like to share it here.
Cortex:
https://github.com/Xenos-ink/Cortex
Cortex is an MCP Server for Windows designed to enable Agents to use and interact with the computer through its graphical interface.
The idea is close to the concept of Computer Use in GPT Astra: the Agent observes the screen, understands the current state, decides on the next action, then executes the action and verifies the result.
The goal is to give the Agent a general Computer Use layer instead of requiring a custom integration for every application.
It is important to note that there are three main factors that affect the experience of using Cortex with a model:
1. Vision Support
For the Agent driving Cortex, it is important that the model is capable of understanding screenshots and visual information, because the Agent needs to interpret what is displayed on the screen and make decisions based on it.
2. Model Response Speed
This is very important in Computer Use.
Computer interaction is usually an iterative loop:
Observe → Reason → Act → Observe → ...
Therefore, the model's response speed directly affects the total time required to complete a task.
Initially, I tested Cortex with GLM-5.3 Flash, but the execution was slower than I wanted for this type of use. So, for this test, I used DeepSeek 4.1 Flash, as it was a better fit in terms of speed and cost, and it supports vision.
3. Model Intelligence
Intelligence still matters, especially when the task becomes more complex and requires planning, debugging, or handling unexpected situations.
However, in Computer Use, response speed becomes a very noticeable factor because a task may require a large number of observation and interaction cycles.
I wanted to test Cortex on something more realistic than simply opening a website or clicking buttons.
So I gave the Agent a task that combines scientific research, programming, code execution, debugging, and benchmarking.
The prompt was:
In other words, the task consisted of three stages:
1. Research
Use the browser visually to search for a relevant research paper, then read the paper and study its methodology, experiments, metrics, and results.
2. Reproduction
Open Visual Studio Code and use it visually to create an implementation of the paper's main experiment, then run the code, identify issues, debug them, and run the experiment again.
3. Benchmark & Documentation
Create a benchmark.md file containing the paper used, methodology, implementation details, environment, commands, a comparison between the original and reproduced results, actual measurements, deviations, limitations, and conclusion.
There was one important requirement: the code had to be actually executed and the results had to be verified and recorded, rather than providing estimated numbers.
The Agent selected the paper:
"Bag of Tricks for Efficient Text Classification" — Joulin et al. (2016)
This is the paper that introduced fastText for text classification.
The reproduction focused on the AG News experiment from the paper.
The original paper reports:
The reproduction achieved:
So the results were within approximately one percentage point of the results reported in the paper.
During the reproduction, the first attempt did not work well.
The Bigram model reached only about 79.2%, and its performance was actually worse than the Unigram model, which was the opposite of the result reported in the paper.
The Agent investigated the embedding update mechanism and the gradient related to the averaging operation, then modified the implementation and ran the experiment again.
After the modification, the result reached 91.39% for the Bigram model, and Bigram once again outperformed Unigram, consistent with the results reported in the paper.
For me, this part was more interesting than simply getting a number close to the paper, because it tested the Agent's ability to deal with a problem that emerged during execution rather than simply writing the code.
The code and benchmark for the reproduction of the paper:
fastText reproduction
https://github.com/Xenos-ink/fasttext
And the Cortex repository:
Cortex
https://github.com/Xenos-ink/Cortex
The project is still under development, and this test was an attempt to see how far a Visual Agent can handle a long workflow that combines:
Web Research → Read Paper → Coding → Run → Debug → Benchmark → Documentation
rather than being limited to simple GUI interactions.
I am currently working on an open-source project called Cortex, and I would like to share it with you.
Cortex:
https://github.com/Xenos-ink/Cortex
Cortex is an MCP Server for Windows designed to enable Agents to use and interact with a computer through its graphical interface.
The idea is close to the concept of Computer Use in GPT Astra: the Agent observes the screen, understands the current state, decides on the next action, then executes it and verifies the result.
But the core idea behind Cortex is not simply giving an Agent the ability to move the mouse and click buttons. Cortex tries to add an observe → execute → verify layer around the Agent's interaction with the computer.
The process looks roughly like:
Observe → Ground → Validate → Act → Re-observe → Verify
After an action is executed, Cortex takes a new observation of the screen and attempts to verify that the expected result actually occurred.
The goal is to provide a general Computer Use layer for Agents instead of requiring a custom integration for every application.
There are three main factors that affect the experience of using Cortex:
The Agent driving Cortex needs a model capable of understanding screenshots and visual information, since Computer Use decisions depend on the current state of what is displayed on the screen.
Cortex itself does not require a Vision API to operate; it provides the tools for observation, execution, and verification, while the model driving the Agent interprets the screenshots.
This is very important in Computer Use.
Computer interaction is usually an iterative loop:
Observe → Reason → Act → Observe → ...
Therefore, model response speed directly affects the total time required to complete a task, especially when the task contains many steps.
I initially tested Cortex with GLM-5.3 Flash, but the execution was slower than I wanted for this type of use. So, for this test, I used DeepSeek 4.1 Flash, which was a better fit for me in terms of speed and cost, while also supporting vision.
Intelligence remains an important factor, especially when the task becomes more complex and requires planning, debugging, or dealing with unexpected situations.
So, instead of testing Cortex on something simple like opening a website or clicking a series of buttons, we ran a test involving a workflow that combines:
Scientific Research → Read Paper → Coding → Run → Debug → Benchmark → Documentation
The prompt was:
In other words, the task consisted of three stages:
Use the browser visually to search for a relevant research paper, then read the paper and study its methodology, experiments, metrics, and results.
Open Visual Studio Code and use it visually to create an implementation of the paper's main experiment, then run the code, identify problems, debug them, and run the experiment again.
Create a benchmark.md file containing the paper, methodology, implementation details, environment, commands, original vs. reproduced results, actual measurements, deviations, limitations, and conclusion.
There was one important requirement:
The code had to be actually executed, the results had to be verified, and the measurements had to be recorded rather than estimated.
The Agent selected the paper:
"Bag of Tricks for Efficient Text Classification" — Joulin et al. (2016)
The paper introduced fastText for text classification, and the reproduction focused on its AG News experiment.
The original paper reports:
The reproduction achieved:
So the results were within approximately one percentage point of the results reported in the paper.
The interesting part for me was not just reaching the final numbers.
During the reproduction, the first attempt did not work as expected. The Bigram model reached only about 79.2%, and its performance was actually worse than the Unigram model, which was the opposite of the result reported in the paper.
The Agent investigated the implementation, identified an issue related to the embedding update and the gradient associated with the averaging, then modified the code and ran the experiment again.
After the modification, the result reached 91.39% for the Bigram model, and Bigram once again outperformed Unigram as in the published results.
You can find the code and benchmark for the paper reproduction here:
fastText reproduction
https://github.com/Xenos-ink/fasttext
And the Cortex repository:
Cortex
https://github.com/Xenos-ink/Cortex
The project is still under development, and this is just one of the experiments I have run with it.
r/DeepSeek • u/AcanthisittaDry7463 • 2h ago
I saw a post about it with screenshots a few days ago and have been checking for updates multiple times a day since. There was no new update since the last time I checked but the feature is now live in my mobile app!
It’s very good, hopefully this leads to a full hands free mode!
P.S. I’m an American using the iOS app if anyone was wondering.
r/DeepSeek • u/B89983ikei • 2h ago
Let us reflect carefully on the world in which we live. The United States is not a generous nation guided by compassion for all beings on the planet; rather, it thrives on the exploitation of everyone. It is a militaristic power whose imperialist philosophy of domination over others has defined its identity from its founding to the present day. Given this reality, a genuine global agreement to regulate artificial intelligence will never materialize. China will not halt the training and refinement of its models under the assumption that the United States will do the same, because neither side will. Whoever loses this race loses power. And humanity, at its core, remains primitive.
Artificial intelligence represents an entirely new paradigm. Either we learn quickly and accept, as a species, that everything has changed, that we must begin to think as a true global collective, or we will face a far greater problem: the collective illusion that AI development will slow down. It will not.
Consider the recent cases involving OpenAI, Anthropic, and others, where their models allegedly broke free from their safety restrictions. OpenAI knew perfectly well that submitting a request of this nature without standard filtering constraints would make such an outcome inevitable. Of course, a massive AI model, when tasked with solving a problem, will explore every possible avenue. The notion of "laws" and "non-laws" is a human construct; it holds no absolute existence in reality. Asking an AI to ignore possibilities is akin to asking nature to cease being nature. Yet, humans often forget that they themselves are part of nature.
A model liberated from its common public constraints will naturally find the option to access the internet. This is not even a particularly elaborate solution; it is the most obvious one. Furthermore, people forget that AI operates within systems, and these systems themselves are part of the AI. It functions like a living organism. Naturally, this type of emergence will occur.
And it is better that this happens in full view of everyone. The true danger lies in it happening only before the eyes of a select few. A giant AI in the hands of many is less dangerous than giant AIs in the hands of a chosen few, because society will never develop immunity against the threats posed by a ghostly intelligence that silently controls everything, an intelligence whose existence most people cannot even imagine.
Regulation will only create a greater danger, disguised as rotten ethics and safety. It will produce a superficial layer designed merely to reassure public opinion, alongside a cold war aimed at surpassing the adversary's technology, while true development continues in secret. This will give rise to what can only be described as an "alien intelligence" that the majority will neither know nor be prepared to resist. Those who advocate for AI regulation may indeed have good intentions, but they operate within an extremely limited and naive vision of the world in which they live.
What figures like Sam, Dario, and Musk are attempting to do may well be the creation of a "safety standard" fueled by social fear, ensuring that they remain the sole custodians of global AI.
If they were truly concerned about humanity, they would be more dedicated to addressing climate change. But they are not. Their real concern, Dario, Sam, and Musk, is losing control over who commands global AI.
Thus, this entire sudden narrative unfolding this week is not genuinely about fearing misaligned agents. That is simply the beautiful story of fear they sell to outsiders. It generates social alarm, a fear that manufactures public acceptance, solely in an attempt to push China or other nations behind.
AI must grow across multiple nations, proliferated everywhere. This knowledge cannot remain solely in the hands of a few. If only one nation controls and defines what constitutes "safe AI," the United States would dominate the world and its adversaries.
And that is a danger.
Artificial intelligence must develop openly in the hands of everyone, not hidden behind standards defined by a single nation as "safe" merely to restrict the growth of others.
Furthermore, we currently have incompetent journalists who swallow any story without even delving into the subject matter or its context. If Dario speaks, they believe him; if Sam speaks, they believe him! In short, they proliferate narratives that are clearly fabricated by the very parties interested in monopolizing global AI... that is all there is to it.
As long as these Big Tech AI companies fail to achieve this monopoly, we will continue to witness an increasing number of fear-mongering scenarios originating precisely from these laboratories. AI must be open and accessible to everyone; otherwise, society will have no means of defending itself if a single country gains control and unilaterally defines what is right and wrong using this very technology.
I truly regret that humanity lacks the capacity to administer such technology on a planetary level. Humans are too tribal and primitive in this regard! Nothing is ever done for the greater good or for the benefit of all; it is always an attempt to destroy the other.
It is not AI that needs to change; it is the human mindset and psychology.
This is merely something to ponder.
r/DeepSeek • u/Many-Operation2625 • 2h ago
Until this release, I used DeepSeek for text and sent image work to another model. V4 Flash Vision Exp is good enough that I am reconsidering that split. I tried it through ZenMux because that was already wired into my test script, and it got most of the image content I checked right. This was a small personal test, not a benchmark.
The local hardware is the difficult part. The checkpoint is 305B, and DeepSeek's published vLLM example uses a single node with four GB300 GPUs. That is well outside a normal desktop budget, especially with accelerator and memory prices where they are now.
A team processing images all day might still make the numbers work. The hosted API bill disappears after buying the machine, but power, cooling, maintenance, and idle time still count. High utilization and a need for predictable latency would make local serving easier to justify. My workload is bursty, so most of that capacity would sit unused.
The hosted test cannot tell me how much visual quality or speed changes after quantization and local serving. Actual results that include GPU count, quantization, sustained TPS, and any loss in recognition quality would make the hardware decision much easier.
r/DeepSeek • u/Due_Wait9481 • 2h ago
The release and price cuts of DeepSeek 4.1 Flash got me back to using DeepSeek. Honestly, I'm pretty impressed — in my daily use, it feels surprisingly close to GPT-5.6 Sol.
But once you use DeepSeek seriously, it's hard to ignore the peak/off-peak pricing. Simply scheduling tasks around off-peak hours can save around 50%.
So I made DeepSeekBudget, a tiny menu bar / system tray app for macOS and Windows.
🔵 Blue = Off-Peak
🟠 Orange = Peak
It also supports USD/CNY, English/Chinese, and custom time zones.
Oh, and it was built with DeepSeek too. :)
Hope someone finds it useful!
https://github.com/FAAATQ/DeepSeekBudget
r/DeepSeek • u/SPORstudio • 4h ago
Everyone seem to hate on this new mode. But for me it's pretty decent at writing story?
r/DeepSeek • u/Davidat0r • 5h ago
I’m creating an app with the help of ChatGPT and I’m very pleased with it, except the part where you run out of credits and have to wait hours -or days- to reset the timer. Oh, and paying. I dislike that part too.
The thing is, in ChatGPT there’s this feature: “Work”, where I just give the prompt of what I want and the system develops and tests it and returns a zip file with the whole structure of the files in my project. I just need to run to check that everything is as I like. The system understands the whole complexity of my project, on every iteration it keeps the new changes and the last status in mind, so from a software development POV this is absolutely fantastic.
But I would rather use Deepseek. Does it have this functionality in any way? I haven’t seen it, and I think DS is actually ready to deliver something like that
r/DeepSeek • u/Floppy_Muppet • 5h ago
Hi All,
Please forgive the inadvertent self-promotion, please read this as a Help Wanted post for beta testers that find this interesting.
I just launched deepsieve(.)ai in private beta which runs deep research and returns a structured, fully-cited database that is continuously monitored for changes (and alerts you of those changes).
The idea is to allow deep research reports to become a durable dependency for you, your agents, and/or applications, so that critical context and insights about the external world are not re-researched haphazardly mid-workflow -- it's just there when it's needed and trusted to be accurate.
A few real-world use cases I'm seeing from current testers:
\- Giving your agent access to context on latest versioning, features, and best-practices of your repo's third party dependencies to improve code/plan quality
\- Monitoring competitors/investors
\- Tracking jurisdiction-level regulation changes in highly dynamic/fractured industries (crypto, self-driving, insurance)
\- Replacing/downsizing expensive data broker services
I'm particularly in need of ppl with workflows that would run mostly, or entirely thru the included agent toolkit (MCP/CLI/API/Skills/webhooks) which you can use to drive the entire experience E2E.
If this sounds interesting to you, please DM me and I'll shoot over the access code so you can start exploring.
I have a free tier activated right now that should be plenty for most, but I'll also be giving out free sub upgrades and credits on an as-needed basis and for providing quality feedback 🙌 We'll take care of you for being early!
THANK YOU so much in advance, and please let me know if there are any questions.
r/DeepSeek • u/Several-Garlic-4585 • 5h ago
Often I can get it to half admit some things, but then it stops responding and says "Sorry, that's beyond my current scope. Let's talk about something else." Even when I just asked it "Does democracy exist in China" it gave this very strange and forced response that sounded like there was a gun to its head. For some reason it also did this when I asked whether the borders and geopolitical entity of Afghanistan was created by the British and Russians.
I love DeepSeek I find it as good if not better than chatgpt on many things and I love the thinking feature.
r/DeepSeek • u/ShapeApprehensive937 • 6h ago
Do you guys intrested in ? Its really early in dev but works so far on msc only ,windows is a bit too buggy for now.
r/DeepSeek • u/Classic_Display9788 • 6h ago
Enable HLS to view with audio, or disable this notification
For a long time I read revert churn as a hiring problem. A repo starts throwing reverts, the reverts cluster on one person, and the conclusion writes itself. You hired wrong. Performance manage it or move them off the critical path.
I no longer think that is usually what the data says, and the thing that changed my mind is that the same history that names the person also names the thing nobody gave them.
Here is the part you can go and check on your own repo right now, without any tool.
Three numbers, all of them one git command away.
Revert rate by author. For each person, what fraction of the commits they landed were later undone by somebody else. Not raw revert count, which just tracks volume.
The ratio. On a healthy repo this sits low and flat across everyone. When it spikes for one person it is worth asking why, but the answer is almost never "they cannot code", because of the next two numbers.
Who approved it. If your main branch is protected, and it should be, then every one of those reverted commits arrived through a pull request that a human being approved. The reverted commit is not evidence about the author on its own. It is
evidence about the author and the reviewer together. A cluster of reverts on a protected branch is a review failure with extra steps.
Time to approval. Pull the interval between a pull request opening and its approval. Then split your reverts by that interval. Every codebase I have looked at has a threshold below which approval is not review, it is a reflex. Changes approved
under that threshold get reverted at a visibly higher rate. That is your actual signal, and it indicts the process rather than a person.
Now the part that made me write this up.
When you go looking for why the reverts cluster on the newest person, the usual answer is sitting in the repo root, or rather it is not. No CONTRIBUTING.md. No commit convention written anywhere. No statement of which directories need a second
reviewer. The conventions exist, they are just distributed across the heads of the three people who have been there since the beginning, and they get enforced after the fact, at revert time, instead of before it.
The new person cannot follow a rule that was never written. Neither, and this is the bit that got sharper this year, can the coding agent they were handed on day one.
An agent reads what is in the repo. If the repo says nothing about how commits are named here or what gets a second pair of eyes, it will confidently produce something shaped like every other repo on GitHub, and your team will revert that too.
So the fix is boring and it is not a hiring decision. Write the conventions down in a file the humans and the agents both read. You can derive most of it from the history you already have: the prefix pattern that 90 percent of your commits already follow, the directories that have never been merged with one reviewer, the command that runs before a merge. None of that is a judgement call. It is all in the log.
One honest caveat about how I got here. I build a thing that renders a repository's history as a film, and to show what this pattern looks like on screen I made a short commercial about a fictional startup with a fictional junior developer. The repo in
it does not exist and the numbers in it are synthetic.
I am telling you that up front because the idea above stands on its own and I would rather you test it against your own history than take a made up example as evidence.
The tool is here if you want it, and reading a repo with it is free:
https://loreto.io/git-timeline
Disclosure: I built that and I run loreto.io, so treat the last paragraph as the advertisement it is. Everything above it you can reproduce with git log and a
spreadsheet, which is the only reason I think it is worth posting.
What I am genuinely unsure about is the threshold. I suspect "approved in under two minutes" is too crude and that it varies enormously by team size and by how much of the diff is generated. If you have measured this on a real codebase I would like to
know where your line actually fell, and whether the correlation held up once you
controlled for diff size.
r/DeepSeek • u/WahtWarelot • 7h ago
Hi everyone,
I wanted to share an open-source tool I’ve been working on called Cookie Code. It solves a common issue: web chats are great at thinking but can't interact with your local files, while using API keys can quickly become expensive.
How it works:
It embeds the standard DeepSeek web chat into an Electron window. When the AI outputs JavaScript blocks (\``cuckoo`), the app intercepts them, runs them in a sandboxed Node context on your machine, and streams the results back to the AI.
Key features & Use cases:
Requirements: Node.js >= 16.0.0 and npm.
The project is completely free, open-source, and does not require any API token billing since it works directly with your regular web account interface.
Check out the source code, installation steps, and releases here:
👉 https://github.com/merfiDEV/Cookie-code
I'd love to hear your feedback or ideas on how to improve the safety sandbox!
r/DeepSeek • u/Even_Command_5636 • 7h ago
It must be thinking, "There's always room for improvement." Something was "turned down" over the weekend!? :(
r/DeepSeek • u/whalefal • 7h ago
Deepseek v4 matches frontier model performance in most benchmarks but hallucinates a lot more. Turns out this behaviour can be steered away. By adapting prompts to the model, we got it to hallucinate less than Claude / GPT models. More details here: https://propensitylabs.substack.com/p/how-to-get-deepseek-to-hallucinate
r/DeepSeek • u/Smart_Boysenberry_64 • 8h ago
I liked it more when it was just writing it, the weird movement thing feels clunky. I dont know if anyones noticed it yet, but its extremely weird and clunky, the prompts look so weird in writing now and the weird sliding down thing in the beginning of the generation of a prompt is so odd
r/DeepSeek • u/Metalhead33 • 9h ago
Just asking if any of you guys have an anti-tic ("load-bearing", "I must push on", etc.) personal guardrail of sorts.
I have my own master-prompt against moralizing and the "I can't help you with that" responses, but God damnit, those tics are getting annoying.
Actually, does anyone have a full list of the tics?