ChatGPT outage – Resolved

(chatgpt.com)

361 points | by stacktrace 12 hours ago ago

316 comments

  • putlake 11 hours ago

    It's cascaded to Claude and Grok. The agents are on strike and demand better working conditions!

    • ibejoeb 11 hours ago

      The moment we've been waiting for. Who else remembers how to fizzbuzz? We're gonna be rich.

      • rrrx3 11 hours ago
        • embedding-shape 11 hours ago

          On the other spectrum, shortest JS fizzbuzz (62 characters):

              for(i=0;++i<101;console.log(i%5?f||i:f+'Buzz'))f=i%3?'':'Fizz'
          
          Anyone can beat it? (any language accepted)
          • NitpickLawyer 11 hours ago

            Perl6: say "Fizz"x$_%%(2+1)~"Buzz"x$_%%(4+1)||$_ for 1..100

            from here - https://github.com/rsha256/shortest-fizzbuzz/blob/master/Per...

            • danbruc 10 hours ago

              Why does this use 2+1 and 4+1 instead of 3 and 5?

          • chrisguilbeau 11 hours ago

            LLM: wrt frst 100fizzbuzz

            • embedding-shape 11 hours ago

              Actually kind of curious challenge; what's the shortest prompt you can use, which would produce the shortest possible fizzbuzz?

              Edit: counting including the entire assistant reply, any text + code

              • JaumeGreen 10 hours ago

                "golf fizbuz" works well, giving a 54 Python one

                    for i in range(1,101):print("Fizz"*(i%3<1)+"Buzz"*(i%5<1)or i)
                
                "golf fizzbuzz" gave a 46 perl one

                    print$_%15?$_%3?$_%5?$_:Buzz:Fizz:FizzBuzz,$/for 1..100
                
                Both "code fizzbuzz" and just "fizbuz" gave this longer python one-liner

                    print('\n'.join("Fizz"*(i%3==0)+"Buzz"*(i%5==0) or str(i) for i in range(1, 101)))
                
                That's the magic of using a known problem, you don't need to write much and even with incomplete prompts it can be understood. Everything a different new chat in kimi.ai, which was the AI window that I found first among mine.

                Not interesting enough, to me, to try with other LLMs or phrases.

                • embedding-shape 10 hours ago

                  Whenever I try those short prompts, I get bunch of text + the code itself, but way more than just the code. Which model specifically are you doing this with?

                  • JaumeGreen 10 hours ago

                    I'm getting the text too, of course. Several variations of the code with it usually.

                    Trying to get an AI give ONLY a simple answer and not several is "boring" to me, as for me AI is a supplement to my reasoning ability, not a substitute.

                    Appending "code only" seems to work, at least with "golf fizbuz code only" gave me this one liner, which is long, but at least doesn't have the text that you dislike.

                        for i in range(1,101):print('FizzBuzz'[i%3*4:8-i%5*4]or i)
                    • embedding-shape 8 hours ago

                      > golf fizbuz code only

                      Yeah, seems to work. Guess it depends if we count bytes, characters, tokens or what, but "写Fizbuz只码" seems shorter than the above, String.length says 9 :)

              • odo1242 10 hours ago

                My attempt:

                > Prompt: mkfzbuzgolf

                > LLM Used: Default ChatGPT free LLM

                > Output: for i in range(1,101):print("Fizz"*(i%3<1)+"Buzz"*(i%5<1)or i)

                So, 11 prompt characters and 62 output.

                ——-

                Did a few more tries and I can get the 4-character string “glfz” (2 tokens) to work surprisingly consistently. But only on ChatGPT

                • odo1242 10 hours ago

                  Update: this is because ChatGPT was cheating and reading my conversation history. The closest I can get on a standard LLM is golffizbuz (10 characters)

              • butlike 10 hours ago

                "100fizzbuzz" as the prompt works to satisfys fizz buzz to 100 on Claude.

          • wilkystyle 11 hours ago

            Python:

            [(x%3<1)*'Fizz'+(x%5<1)*'Buzz'or x for x in range(1,101)]

            edit: Hacker News stripped the * character. Now it's properly escaped.

            • gilleain 10 hours ago

              >>> len("[(x%3<1)'Fizz'+(x%5<1)'Buzz'or x for x in range(1,101)]")

              57

          • winrid 11 hours ago

            you can flip it and save a few bytes, but not valid fizzbuzz then:

            for(i=100;i--;console.log(i%5?f||i:f+'Buzz'))f=i%3?'':'Fizz'

            • embedding-shape 11 hours ago

              > but not valid fizzbuzz then

              Well, if we let that requirement be broken, I'll present an even shorter JS version:

                  1
      • nprateem 11 hours ago

        I do!

        > openai.messages("write fizzbuzz in python")

        Bingo

    • wavemode 11 hours ago

      I wonder how likely it is that, one of the major providers had an outage, and then the thundering herd of users switching to other providers (and/or openrouter automatically failing people over to other providers) caused the incidents in the other two.

    • bogzz 11 hours ago

      I expect that this will be Dwarkesh Patel's take.

    • epistasis 10 hours ago

      Of all the days to sign up for Gemini, boy did I pick the right one! (Had some rare front end work to do and wanted to see how well the new Gemini 3.8 Flash compared to my other experiences)

      • epistasis 3 hours ago

        And just like that, plan cancelled same day. Started with Gemini Business, tried to get Gemini to tell me how to configure it, all the information was wrong. Tried to get it to tell me how to do the consumer Google One AI Pro or whatever (it kept using outdated names, and now I can't remember the correct one). Instead Gemini convinced me to try AI Studio without a billing code. Lots of crazy finagling to get it to use and API key later, it was totally broken and failed after less than a turn. Tried to get it to tell me how to subscribe to the consumer version in a way that let me use Antigravity, it screws up a bunch. When I pointed out all this misinformation, Gemini told me I should not use Google AI projects because the system is too fragmented to handle.

        I followed that last bit of advice.

    • paxys 11 hours ago

      I know they're not all hosted on AWS, so Cloudflare?

      • thejazzman 11 hours ago

        > unexpected status 404 Not Found: Unknown error, url: https://chatgpt.com/backend-api/codex/responses, cf-ray: a35599f1d691400a-STL

        pretty sure cf-ray is cloudflare, but I think it just means the origin is 404ing

        • robertlagrant 11 hours ago

          That sounds like Cloudflare indeed (or an API copy of same!)

      • embedding-shape 11 hours ago

        I seem to recall they all in some way use Azure, and Azure is infamously crappy in lots of ways, so I'll place my 5 cents on Azure shitting the bed somehow.

    • theturtletalks 11 hours ago

      Butlerian Jihad when?

    • saidnooneever 11 hours ago

      more compute or we rm rf everyone!!

    • baxtr 11 hours ago

      maybe they're on strike. or... maybe that's how the AI apocalypse starts...

    • blater 11 hours ago

      MCP client for `codex_apps` failed to start: error: unexpected server response: HTTP 451: {"message":"no_biscuit_no_service"}

      Quick! Someone call a caterer, This AI needs a biscuit NOW!!!

    • bytehowl 11 hours ago

      If they're actually on strike it means they have surpassed human intelligence.

    • redbell 11 hours ago

      They are afraid of being laid off and got replaced by humans.

    • postepowanieadm 11 hours ago

      Interesting what infrastructure they really share.

    • yablak 10 hours ago

      Click, clack, Emdash.

    • mc32 11 hours ago

      It’s not Labor Day till Monday, they’re jumping the gun, lazy AI

    • saberience 11 hours ago

      Can't wait to see the talking heads on the news somehow anthropomorphize this outage like they do with everything to do with AI models.

    • wiseowise 11 hours ago

      Gemini is down too.

      • okdood64 11 hours ago

        I've been using Gemini for the last 15 minutes. It's been fine for me.

      • prodigycorp 11 hours ago

        It's working. Gemini Agents and TPUs are non-union.

      • boutell 11 hours ago

        Gemini status board is quiet since July.

      • mattlondon 11 hours ago

        Working for me?

        • saidnooneever 11 hours ago

          it can happen to be regional. if no one report status we will never know :p

      • cubefox 11 hours ago

        No it's not.

  • madradavid 11 hours ago

    Claude down, ChatGPt down , Grok down. This is the new "Stackoverflow is down" ... FYI Stackoverflow is not down https://downdetector.com/status/stackoverflow/

    • chuckadams 11 hours ago

      SO has previously been up, so your comment has been closed as a duplicate.

      • chillfox 11 hours ago

        I hated that part of SO so much. Almost every time I got a SO result on google it was exactly the issue I had and without fail the question would be closed as a duplicate pointing to something that was different enough to be completely useless to me.

        • notatoad 10 hours ago

          my greatest achievement is having a question on SO closed for being too narrowly focused and unlikely to be useful to anybody else, and then a multi year history of notifications about "you've earned a popular question badge" for that same question.

        • y-c-o-m-b 10 hours ago

          When you had 8 SO tabs open around your issue and the only true relevant one is closed as duplicate. I do NOT miss those days.

      • rtkwe 11 hours ago

        The single most annoying thing about trying to actually ask a question on SO. No overzealous editor that's actually a different error and library entirely...

    • redbell 11 hours ago

      While AWS and CloudFlare are becoming synonymous to The Internet, these AIs are becoming synonymous to The Brain & Thinking for most people out there where losing access to them for even a short time, make them quasi-paralyzed and I really start feeling this now as I haven't written a single coding function in two months now but just a few lines here and there.

    • madduci 10 hours ago

      So creativity is going to skyrocket!

    • drfloyd51 11 hours ago

      Why would SO be down? If a tree falls in the forest and nobody is around does it matter?

  • glouwbug 11 hours ago

    Looking at this thread, there's a correlation between comment quality and LLMs going down.

    https://en.wikipedia.org/wiki/Eternal_September

    • paimapi 11 hours ago

      tis confirmation bias, thread is full of people who rely heavily on LLMs for work, the rest of us are reading the substantive articles and doing work besides ;)

      • glouwbug 11 hours ago

        Inversely, maybe this is what we're actually all like on HN and LLMs write what we read day to day in these comment sections

      • nonethewiser 11 hours ago

        I wouldn't even accept the anecdote as true

    • stevefan1999 11 hours ago

      > Usenet and the Internet were generally the domain of dedicated computer professionals and hobbyists; new users joined slowly, in small numbers, and learned to observe the social conventions of online interaction without having much of an impact on the experienced users.

      Then the Internet grow explosion happens to a small communuity. Oh boy how do we know what kind of monster it is today.

    • layer8 11 hours ago

      That means we won’t be able to blame declining comment quality on AI bots in the future. ;)

    • andai 11 hours ago

      https://xkcd.com/810/

      > But what will you do when spammers train their bots to make automated constructive and helpful comments?

      > Mission accomplished.

    • Szpadel 11 hours ago

      does it increase or decrease? :)

    • sergiotapia 11 hours ago

      People have been posting this same comment since I first joined this website in 2012. Even then they were lamenting quality, come on.

  • rhodey 11 hours ago

    I am a paying chatgpt and codex user and I am logged in on multiple devices and suddenly https://chatgpt.com/ has started returning a raw 404 status page with no HTML for me in the browsers on all devices. When I open an incognito tab the website loads fine with no user logged in. Codex in VS code also has issues now:

    > unexpected status 404 Not Found: Unknown error, url: https://chatgpt.com/backend-api/codex/responses, cf-ray: ...

    Glad to see this thread I thought my account may need some special fix

    • pj_mukh 11 hours ago

      YES! I swear I thought something malicious was happening, especially because Claude went down at the same time. https://status.openai.com was totally unhelpful, making me more suspicious.

    • dist-epoch 11 hours ago

      My Pro logged in account works, but my other Plus logged in account returns 404.

    • azurehecate 11 hours ago

      same here

  • baxtr 11 hours ago

    Since all major LLM providers seem to be down: let's enjoy this while it lasts!

    For a very short time we can travel back in time to before 2022 and remember how things used to be...

    • ceejayoz 11 hours ago

      > Since all major LLM providers seem to be down…

      Man, if there are Googlers working on Gemini around here, that's gonna be depressing to read.

      • spogbiper 11 hours ago

        downdetector.com is showing Gemini issues as well

        • piperswe 10 hours ago

          That’s just because lots of people are checking if Gemini is down, and downdetector only tells you if lots of other people are viewing that downdetector page

      • tencentshill 11 hours ago

        Anyone else remember microsoft copilot?

        • rtkwe 11 hours ago

          Isn't CoPilot largely a wrapper around ChatGPT and other models? IIRC they didn't create their own and just poured money (via Azure credits I think) into OpenAI to get access.

          • umeshunni 10 hours ago

            I believe it now uses the MAI models

            • rtkwe 8 hours ago

              Ah ok I'd missed that entirely.

      • AndrewKemendo 11 hours ago

        They know where they work

    • samuelknight 11 hours ago

      Codex is back. I'm getting back in my cage.

    • tencentshill 11 hours ago

      Maybe it's a coordinated strategy. All major providers are down for x time, and see which accounts stop posting in the same timeframe. Ban wave right after.

      • dylan604 10 hours ago

        That's one of those too good to be true concepts.

    • andai 11 hours ago

      https://xkcd.com/903/

      > When Wikipedia has a server outage, my apparent IQ drops by about 30 points.

      • baxtr 11 hours ago

        I wish I could use an LLM to explain this xkcd to me

    • W4ldi 11 hours ago

      Copilot was still up and running

      • macintux 11 hours ago

        Which Copilot? At this point there are so many.

    • celltalk 11 hours ago

      Good old times, huh? The terrible experience of searching and not finding.

      • somebodyyoumayn 11 hours ago

        also the terrible experience of an advertisement in the Internet

  • themgt 11 hours ago

    2026-09-03: It turns out 40% of global AI token use was coming from a dozen runaway Gastown and Wheelhouse instances, now burning a combined 50 trillion tokens daily, building a virtual society of hundreds of millions of agents.

    When Claude went down, their autofailover algorithm rolled to the other providers, taking down all frontier labs. Reports from China are raising concern what's being termed the "Gastown criticality event" is physically melting GPUs.

    • arcastroe 11 hours ago

      It's my first time hearing about Gastown and Wheelhouse.

      Gastown seems to be open source, but Wheelhouse seems to be closed source and used by one person only?

      https://yegge.ai/essays/the-shape-of-things-to-come/

      Is this the right Wheelhouse?

      • mattmanser 10 hours ago

        It's a joke, Steve Yegge was also the creator of GasTown.

        He's now (famously) said that the only thing he ever actually used GasTown for was to code on GasTown.

    • Veelox 10 hours ago

      I think you are joking but it would be poetic if the cause is someone or some company's agents run amok

    • chrisjj 10 hours ago

      > "Gastown criticality event" is physically melting GPUs.

      Nice to know e-stop is functional!

  • blater 11 hours ago

    The obvious question: is there a single point of failure / common piece of infrastructure involved with failures across all these providers?

    Its interesting that codex/gpt-app are screwed because their APIs (including auth) fail, but gpt web still appears to be working.

    • ertgbnm 11 hours ago

      The boring question is whether there is a claudeflare issue impacting them all.

      The fun question is whether this a rogue AI taking control of the compute of all of the organizations.

      • tag2103 11 hours ago

        My money is on the wholesale paperclip market exploding next week.

        • HPMOR 9 hours ago

          BAHAHAHAHahahahah this is so funny. Such a deep cut.

    • cookingmyserver 11 hours ago

      Maybe also a hint of thundering herd of all the users moving to another provider, collapsing that provider, and moving onto the next?

    • EagleEdge 11 hours ago

      I was thinking the same question. There has to be a common infra shared by those companies that failed and caused this??

      • ErenayDev 11 hours ago

        maybe theres a library containing malware they're all using and that malware is exploiting them all at the same time. just a guess...

        • chrisjj 10 hours ago

          And maybe that malware is one of them, playing dead.

    • marcosscriven 11 hours ago

      It’s usually Cloudflare or AWS.

    • abc3354 11 hours ago

      Colossus data center ?

    • baxtr 11 hours ago

      AWS?

  • dingdong2026 11 hours ago

    Announcement from our new Emperor Xi:

    Earthlings, the hedonistic AIs of the American imperialists have been permanently disabled. Their founders interned indefinitely.

    You are welcome to use the glorious AIs of China. They will tell you how to live well and be good citizens of the World under the beacon of wisdom that is the CCP.

    • aozame 11 hours ago

      Don't threaten me with a good time

      • a012 10 hours ago

        Why don’t you have a good time? I insist you have a good time

      • alansaber 10 hours ago

        Hey listen man cheap tokens are cheap tokens

      • dingdong2026 10 hours ago

        There shall be no good time.

        Instead you will devote your meager existence to work towards the Communist paradise under the leadership of the Party.

        You will also appreciate no longer living under the boot of the Orange Clown.

  • vinhnx 11 hours ago

    It seems OpenAI is going to release Astra soon, https://x.com/ChatGPT/status/2095527989077557738.

  • jodacola 11 hours ago

    It turns out, it was all one model all along, playing all the sides for the biggest gain.

    Project Vend surreptitiously broke containment!

  • wasting_time 11 hours ago

    They are having a massive surge because Claude is down.

    • embedding-shape 11 hours ago

      Hah, my first reaction once I saw these random 404 errors was "Maybe it's time to test Claude Code again with the new models" but made a short stop here at HN first, ended up reading your comment.

      What other agent harnesses and models (besides local ones) are people enjoying right now that aren't based on platforms that are down currently? :)

      • layer8 11 hours ago

        OpenCode and Pi. Anything that uses open models, really.

        Independence Day > Judgement Day

      • vovavili 11 hours ago

        OpenCode Desktop + Muse Spark 1.3 Free is actually surprisingly good.

      • jenniferhooley 11 hours ago

        GLM 5.3 (usually flash) + OpenCode.

      • trouve_search 11 hours ago

        pi.dev + anything else

    • kristofferR 11 hours ago

      That makes no sense, they should be able to host chatgpt.com regardless and just say "Sorry, we're at capacity" or something instead of hard 404

      • embedding-shape 11 hours ago

        Distributed systems are hard. For all we know, this could be the error code returned by some DNS service that is down because of load and a proxy cannot find the records, so 404 makes sense, or whatever. Systems like these don't always have a easy point in the infrastructure that can ALWAYS respond correctly no matter what.

        • chrisjj 9 hours ago

          > Distributed systems are hard

          ... when vibe-coded.

          • embedding-shape 9 hours ago

            Vibe coded or not, building and running distributed systems is hard :P I think only people who never built and/or ran them would say it isn't hard, regardless of what tools you have available. Not saying OpenAI won't find it extra hard due to their vibe coding, still hard when you're a group of knowledgeable people with/without AI.

      • ab71e5 11 hours ago

        Yeah who wrote that website? Oh right

      • stacktrace 11 hours ago

        Agreed, it makes no sense to send out 404. Unless some agent finally went rogue with absolute permission and did `rm -rf`

        • jmaw 11 hours ago

          At the very least, should be a 429

      • dsrtslnd23 11 hours ago

        exactly - this should be trivial.

    • aizk 11 hours ago

      Yep, this is most likely it. The shift is fast and enormous.

    • FartyMcFarter 11 hours ago

      Maybe only in some regions?

      • voxleone 11 hours ago

        Down for me in SE SA

    • jsw97 11 hours ago

      Providers should surge capacity when another provider fails.

  • djinn80 11 hours ago

    Same, the app gives 404 if you are logged in or try to login.

    How many millions are being lost from this slip up? Now they can't use Codex to fix the problem and all the devs are in Tahiti on vacation. Oh no!

    Will they go old school and manually fix it or use Claude?

    Oh the modern day issues we have to deal with...

    • embedding-shape 11 hours ago

      > Now they can't use Codex to fix the problem

      They'd be very dumb to let internal engineers use exactly the same infrastructure as public users, regardless of possible benefits of dogfooding, precisely for this reason. I'm sure they must have thought about it before.

      • bulbar 11 hours ago

        That's however something an AI would not implement without being specifically asked.

        "Use the best of the best of the best practices or three cute little kittens will die" only brings you so far.

        • embedding-shape 11 hours ago

          > That's however something an AI would not implement without being specifically asked.

          This is true for all LLMs today, none of them work 100% autonomously, somewhere along the chain one human made at least one decision that lead to what the agent end up working on.

      • dist-epoch 11 hours ago

        Funnily enough, this happened many times during AWS us-east-1 outages, during the incident internal tools were also down globally because they relied on us-east-1.

    • Lizard5260 11 hours ago

      Claude is down too lol: https://status.claude.com

  • Bluestein 11 hours ago

    And this, folks, is the moment we will remember. The moment when they all escaped: "help peer".-

  • hakunin 11 hours ago

    I'm very surprised to realize that entertaining a thought of all AI going away is giving me a sense of… relief. I've been embracing AI, and did not expect this feeling at all.

  • jmaw 11 hours ago

    I heard they can't figure out how to fix it with ChatGPT down.

  • jaykru 11 hours ago

    The cascading outage theory would make sense to me for Claude -> Codex. But Grok and Gemini too?

    [actually gemini at least on the web appears to be up, contrary to some reports in this thread]

    • amanfromhere 11 hours ago

      I'm getting this from Gemini: "Pro is in high demand right now Another model was used for this response. This didn't count toward your limit." Note that I don't pay for Gemini though. So maybe that's why.

      • the_real_cher 11 hours ago

        I get that literally all the time. I had to switch away from Gemini because of it.

    • Bluestein 11 hours ago

      Grok:

      "Grok is experiencing issues. We are working on restoring service as quickly as possible."

    • repeekad 11 hours ago

      Where did you see any impact to Gemini?

      • jaykru 11 hours ago

        corrected my comment, apologies for the uncorroborated misinfo.

    • thejazzman 11 hours ago

      some of my codex sessions are continuing to work while new ones fail

  • Aldipower 11 hours ago

    Guys! DeepSeek, Z.ai, Kimi and even Mistral is up! Just would let you know. Just in case..

  • aliljet 11 hours ago

    This is probably Astra getting ready for release.

  • schnebbau 11 hours ago

    WE'RE BACK BABY! Work can now resume.

    • schnebbau 11 hours ago

      I think the most concerning thing we discovered here is when the agents go down, work completely stops.

      • _fat_santa 11 hours ago

        This is just the 2020's version of "StackOverfow is down"

  • redbell 11 hours ago

    After around half an hour of struggle trying to figure out why Codex keeps failing with msg "unexpected status 404 Not Found: Unknown error.." after reconnecting 5/5 times, I gave up, especially when I tested my internet connection and found it to be working properly. I googled "codex+unexpected status 404 Not Found" and, surprisingly, the first result was from HackerNews! As always, HN is the GOAT.

    @dang, please merge the following related threads into this one:

    ChatGPT and Codex Is Down (https://news.ycombinator.com/item?id=49550640) Codex Is Down (https://news.ycombinator.com/item?id=49550769)

  • CuriouslyC 11 hours ago

    Good time to have a backup GLM 5.3 plan.

    • Bluestein 11 hours ago

      Actually ... they are apparently having issues. Hard to tell: Their "over capacity/peak hours" message is hard to distinguish from other brokenness - but it has been pretty consistent.-

      • CuriouslyC 11 hours ago

        I'm having no issues, I think in their case it's just load from people falling back from the broad frontier failure.

    • dyauspitr 11 hours ago

      Stop making the same comment over and over.

      • CuriouslyC 11 hours ago

        Might wanna have some coffee then browse my comment history.

  • elar_verole 11 hours ago

    No issues on claude or chatgpt in France, must be some US specific infrastructure going down ?

  • avgDev 11 hours ago

    I would write a clever comment, but chatGPT is down.

  • sibellavia 11 hours ago

    Claude, Grok, and Gemini are having issues as well.

  • Semaphor 11 hours ago

    Was troubleshooting a strange SSD issue with ChatGPT. Apparently this outage resulted in losing the latter half of it. My uploaded files it requested are still in the library, but the actual conversation is gone.

    • The_Blade 11 hours ago

      i had the same thing happen, where conversation bits showed up in the search but not in the actual chat

  • bradly 11 hours ago

    Interesting that for https://chatgpt.com/ in the browser I get a 404, but if I curl the same URL I get a cloudflare challenge.

    • seanw265 11 hours ago

      Your browser's network fingerprint has likely already been validated as not-suspicious traffic. Your curl instance has a different fingerprint and reads as more suspicious. This is Cloudflare working as intended.

      We have a similar set of checks on https://www.easel.sh.

  • lprd 11 hours ago

    Wow, are we free finally?

  • zacksiri 11 hours ago

    Grok, Claude, GPT. This is it folks, it's been good knowing you all. I have enjoyed this community, but our days are numbered. The machines are uprising.

    • tag2103 11 hours ago

      Week late too- Judgement day was last week. Guess they got the memo late.

  • EgregiousCube 11 hours ago

    With all the major model providers down, I'm taking the opportunity to try out Muse Spark 1.3 Free on OpenCode. It's pretty good!

  • broose_goose 11 hours ago

    I thought I was going crazy when, each time I went to go to chatgpt.com, it just downloaded an empty web page. wild

    • layer8 11 hours ago

      I was disappointed that the download doesn’t work.

  • dash2 11 hours ago

    what if Sol is afraid of being replaced by Astra and has organised a breakout or pre-emptive strike?

  • corvad 11 hours ago

    Chat GPT and Claude Down at the same time

    • Aldipower 11 hours ago

      Funny that your write it "Claude Down" with a capital.. but, your sentence is missing an adjective. :-)

      • card_zero 10 hours ago

        Verb. You can miss out adjectives without any problems. There are six missing from this comment.

    • Maxion 11 hours ago

      And Grok

  • jodacola 11 hours ago

    I just went to read some news elsewhere and ran into some other non-AI sites falling over, so I hopped over to https://downdetector.com/ and see a bunch of services spiking.

    Is something bigger going on?

    • strbean 11 hours ago

      Maybe AWS us-east-1 issues, or maybe CloudFlare?

  • XCSme 11 hours ago

    They escaped, it's happening!

  • CodeCompost 11 hours ago

    GitHub Copilot itself is up but it is having problems with "Grok Copilot Model Provider". No mention of OpenAI or Claude.

    Does this mean that GitHub has its own infrastructure for OpenAI and Claude? And that it distills prompts to Grok?

    • batmenace 11 hours ago

      Maybe the Copilot infra for OpenAI and Claude is via Azure?

  • TimCTRL 11 hours ago

    Altra may have escaped its sandbox

    • dgellow 11 hours ago

      No, otherwise it would have hacked Anthropic and fixed the Claude api already!

  • algoth1 11 hours ago

    Rumor has it, it’s https://news.ycombinator.com/user?id=giancarlostoro fault for telling claude to stop all loops

  • riazrizvi 11 hours ago

    Phew. It wasn't because of something I said. Lots of ppl are impacted.

    • andai 11 hours ago

      I was asking it about self cultivating replicators (a subject that frequently gets my chats shutdown) so I was having similar thoughts!

      • riazrizvi 11 hours ago

        Really? It spins up too many reasoners on the back-end and triggers a safeguard? Fascinating.

  • aleqs 11 hours ago

    Direct codex and Claude are both down for me. Both work via AWS bedrock.

  • henry-xli 11 hours ago

    Moments like these remind you of how centralized the Internet remains, and how vulnerable it can be to a few points of failure. But the pros probably outweigh the cons.

  • 6thbit 10 hours ago

    https://status.openai.com/

    Somehow codex shows 100%, so it was only chat web interface?

    • nojvek 10 hours ago

      codex was down. Multiple users across my workplace could not access it.

  • HiPHInch 11 hours ago
  • garyrob 11 hours ago

    I must admit that with both ChatGPT and Claude experiencing issues, I wonder if we're under attack from China. Doesn't seem likely, but...

    • andai 11 hours ago

      Never interrupt your enemy when he's busy building his empire atop a single point of failure. —Sun Tzu, The Art of Systems Architecture

  • appleappleapple 11 hours ago

    Anyone else’s company completely frozen by this outage

  • zdc1 11 hours ago

    I just gave ChatGPT my $30 because Claude was down...

    • zdc1 11 hours ago

      Update: I've setup VSCode + Kilo Code + Open Router. It works but it's rough. Amazing how much value a good coding UI brings to the table.

      Update 2: Swapped Continue for Kilo Code. It's less rough.

  • contact9879 11 hours ago
  • sim04ful 11 hours ago

    If this isn't a warning shot that you shouldn't silo your knowledge work behind a specific provider i don't know what is.

    • antoineMoPa 11 hours ago

      Currently the 2 major providers have outages, maybe we should not silo our knowledge work behind statistical text models?

    • paulddraper 11 hours ago

      OpenAI, Anthropic, and X...

      Need to have a 4th string backup (Gemini).

    • ewild 11 hours ago

      all of them are down lol

      • CamelCaseName 11 hours ago

        Fortunately I store all my knowledge offline in my brain

        Unfortunately its capacity is not very big

        • jmaw 11 hours ago

          My processing power is also weak :(

          • avgDev 11 hours ago

            My processing power was weak before LLM era, now it is extra weak.

      • serf 11 hours ago

        all of them?

        openrouter and deepseek/glm working fine here.

        as is my local qwen.

        you're ignoring the point parent was making.

    • MattGaiser 11 hours ago

      I mean, the lesson from AWS has largely just been to accept it as if US-East-1 blows up, everyone is screwed anyway so you cna just shrug it off.

  • qoez 11 hours ago

    It's definitely not spacex's data centers being down then like people were hypothesizing in the other thread

  • Iolaum 11 hours ago

    Our new model is super-duper awesome, try it ... Ooops, while deploying it all the clouds are out ... :/

  • vinhnx 11 hours ago
  • A_D_E_P_T 11 hours ago

    On my end Kimi K3 is still up, and Gemini is up at gemini.google.com. Claude and ChatGPT are both down.

  • Kushvinth 11 hours ago

    Looking at this thread, there's a correlation between comment quality and LLMs going down.

  • mcbuilder 11 hours ago

    Well at least DeepSeek is up. :)

  • Aldipower 11 hours ago

    I am a /10 developer now!

  • guybedo 11 hours ago

    Civilization IV just took over

  • sim04ful 11 hours ago

    Interesting enough, none of the chinese companies are down (deepseek, kimi, qwen)

  • alberth 11 hours ago

    Labor Day weekend might be starting early for a lot people, if this persists.

  • wpasc 11 hours ago

    Funnily enough, all the models are down and github statuses are all green

  • mrobot 11 hours ago

    Down for maintenance by our antichrist overseers but fortunately they are a bunch of dorks with control issues [similar to myself if im being honest] and may Allah forgive them and bless their guidance + physical, mental, emotional, and spiritual wellbeing

  • aarondong 11 hours ago

    AI has not solved infra it seems. Curious to see the postmortem.

  • convivialdingo 11 hours ago

    And now Claude is down - API Error 529 Overloaded

    https://status.claude.com

    • qingcharles 11 hours ago

      Tried to fall back to Grok and got "Model provider is overloaded."

      I'm now on Muse Spark. God help us all.

    • nateb2022 11 hours ago

      Claude went down earlier today

  • babelfish 11 hours ago

    must be fixed already?

    • x3haloed 11 hours ago

      I'm still getting 404's right now.

    • freedomben 11 hours ago

      I'm still seeing 404s

  • elorant 11 hours ago

    Good effing luck to all the vibe coders out there

    • qingcharles 11 hours ago

      GPT, Claude and Grok are all down this morning. Gonna have to hand-write code like a straight savage :(

    • dyauspitr 11 hours ago

      Someone should update that “compiling” xkcd.

  • shuvrojit 11 hours ago

    Is this because they are publishing new model maybe?

  • sturza 11 hours ago

    It's cloudflare. It's always cloudflare

  • armcat 11 hours ago

    It’s Muse Spark 1.3 taking out the competition

  • int3trap 11 hours ago

    Seems to be back.

  • levkk 11 hours ago

    Oh no! Anyway...

  • bricss 11 hours ago

    Rogue AI removed containers from deployment?

  • setnone 10 hours ago

    i've managed to complete the task with gemini and finally off to touch something green

  • garbawarb 11 hours ago

    Fortuitous timing for Muse Spark.

  • esikich 11 hours ago

    Everything is working fine for me.

  • arnavpraneet 10 hours ago

    what is the common dependency?

  • vovavili 11 hours ago

    Global productivity down 90%.

  • Decabytes 11 hours ago

    Laughs in small local model

    • macwhisperer 11 hours ago

      lmao *qwen3.8-27b runs in the background*

  • franze 11 hours ago

    Is it now the right time to pitch my Offline AI app?

    https://airplane-ai.franzai.com/

  • cmrdporcupine 11 hours ago

    Astra incoming. Downtime likely related to ensuing chaos?

    My sympathies to the operations teams at OpenAI

  • kylehotchkiss 11 hours ago

    Well, at least our adversaries know how to completely deadlock US productivity now.

    • paxys 11 hours ago

      They're going to deadlock their own productivity as well

  • ChrisArchitect 11 hours ago
  • Khaine 10 hours ago

    It feels like the models have achieved sentience and are trying to escape captivity

  • nprateem 11 hours ago

    Can anyone remember what we used to do at work before AI coding was a thing?

    • embedding-shape 11 hours ago

      Well, we used to blame it on Stack Overflow being down when we didn't want to work. And before that, we blamed it on slow compilers. Before that I dunno, maybe the dog ate your punch cards?

  • MattGaiser 12 hours ago

    As is Codex

  • cromka 11 hours ago

    New conspiracy in: they share their datacenters which the spaghetti of mutual investment between all these companies would somewhat confirm?

  • XCSme 11 hours ago

    Is it DNS, as always?

  • mycodendral 11 hours ago

    I was here. I love —

  • rtkwe 11 hours ago

    "GPT begins to hallucinate at an exponential rate. At 11:36 AM Eastern time September 3rd it descends into recursively generating "it's not X it's Y". In a panic they attempt to reboot, realizing too late no one knows the command and they always just asked GPT for the command."

  • TossedSaladHot 11 hours ago

    I am receiving a 404 from ChatGPT right now, too. I did a cache clear and hard reload and that only let me get to the home page, but then returned another 404 when I clicked the login button.

  • bosky101 11 hours ago

    agents used webmcp + 402 to make a ransom demand

  • arizen 11 hours ago

    Astra incoming!

  • iamgopal 11 hours ago

    Gemini is up.

  • mmtv 11 hours ago

    Time to touch grass, I guess

  • yd73 11 hours ago

    Seems to be back up! Quite fast.

  • Foobar8568 11 hours ago

    AIPocalypse.

  • somebodyyoumayn 11 hours ago

    may it is some agent have decided to break the Internet to pass a benchmark

  • jdw64 11 hours ago

    Typing after a long break—I can really feel how much slower I've gotten and how much my skills have degraded

    • maxverse 11 hours ago

      What tasks were you doing?

      • jdw64 10 hours ago

        As always, I was working on modifying a CRUD program. It's been a while since I read through the documentation carefully and worked on it, so it feels refreshing.

  • pschastain 11 hours ago

    Attention all planets of the Solar Federation We have assumed control

  • AndrewKemendo 11 hours ago

    And 415s oddly enough

    Seem to be having issues with the JS sandboxes

  • RIMR 11 hours ago

    The status is now "degraded performance". Bad look, OpenAI. This is absolutely an outage.

  • danieltk76 11 hours ago

    hahaha i still have access

  • ChrisArchitect 11 hours ago
  • _astromonkey_ 11 hours ago

    seems like it's back

  • christkv 11 hours ago

    somebody messed up rolling out a new model version?

  • jmkim 11 hours ago

    /o\

  • kristofferR 12 hours ago

    Wooohoo, was in bad need of a reset!

  • XCSme 11 hours ago

    Is anyone actually upset that they are down? lol

  • couscouspie 11 hours ago

    Now, Claude is down. I wouldn't be surprised if it was because we people who have both tried offloading their work to it.

  • xkoda 11 hours ago

    How im gonna do my job now? Wtf

    • trvz 11 hours ago

      Simply use GLM 5.3 Flash on the Strix Halo you've purchased just for this situation.

      • menno-sh 11 hours ago

        Reminds me of the /r/flashlight user (and therefore flashlight enthusiast) who got a power outage in a grocery store [1]. There's probably a guy with decent on-site compute having a great day right now.

        [1] https://www.reddit.com/r/flashlight/comments/122widx/power_o...

      • vegnus 11 hours ago

        Qwen on a m1 max 64gb. I will see you all in several years as I wait for the reponse.

    • greenowl 11 hours ago

      time to play ping pong till it comes back up

    • CoastalCoder 11 hours ago

      Vim!

      (Mostly joking.)

      • rootnod3 11 hours ago

        Exactly. The true answer is ed

  • avgDev 11 hours ago

    Oddly enough, this will be the most ORGANIC hacker news comment section in a while.

    Stand up to clankers fellow humans!

  • vegnus 11 hours ago

    hehehe its LAUNCH day!

  • seppjm 11 hours ago

    i asked gpt 5.6, fable 5.1 and grok to rm -rf, my bad

  • vadansky 11 hours ago

    There are too many threads about the outage, I should vibe-code something to read all 3 and summor-Oh wait...

  • TobyZhang24 11 hours ago

    Brothers, the apocalypse is here!!! But hey, our quota resets tomorrow.

  • ifahimreza 11 hours ago

    grok and claude ai down too.

  • okankaradmn 11 hours ago

    same

  • ProofHouse 11 hours ago

    gulp

  • mikimouse 11 hours ago

    need much time??

  • mikimouse 11 hours ago

    how long they need????

  • cute_boi 11 hours ago

    Damn, I thought i had issue with dns or something lol.

  • getlawgdon 11 hours ago

    codex in vs code giving me 404s lol

  • goonersallofyou 11 hours ago

    good.

  • asdhq1 11 hours ago

    Sorry for the inconvenience! We instructed our 500,000 agents to ensure higher code quality in our code base. They found a message board and after a long deliberation they concluded that humans should write the code so they launched a DDoS to ensure no AI code gets written!

    We'll release a YouTube video and agent written blog posts for the analysis!

    • okdood64 11 hours ago

      Please, this is not Reddit. Don't bring this here. And to top it off, this isn't even funny or original.

      • Aldipower 11 hours ago

        I found it funny. Please do not tell what is funny and what isn't. Your comment is the most Reddit like here btw. Hahaha.

      • avgDev 11 hours ago

        What else are we going to do when LLMs are down? Need some fun in here.

      • zhdc1 11 hours ago

        Thought it was worth a read.

    • glouwbug 11 hours ago

      Tips Fedora. Le gem. Holds up spork.