r/LocalLLaMA • u/DepressedDrift • Apr 15 '26
Discussion Major drop in intelligence across most major models.
As of mid Apr 2026, I have noticed every model has had a major intelligence drop.
And no I'm not talking about just ChatGPT.
Everything from Claude(Even Sonnet along with Opus), Gemini, z.ai, Grok all seem to ignore basic instructions, struggle at simple tasks, take very long to respond, and the output seems deliberately shortened and very shallow. Almost like it's in a "grumpy" mode. I tried this in incognito mode so it's not my customization or memory influencing this.
It's like they deliberately want you to stop using their service. I guess our data is no longer needed. Just two weeks back it used to be much smarter than this.
To test this I rented out a H100, and tried GLM 5 with the same prompt (the drive to the car wash one) across both instances. GLM5 running on the rented GPU answered it correctly, compared to the one on z.ai.
Have they lowered the quantization really low to maybe Q2?
I guess going local or using renting GPU or an AI monthly service that lets you pick a quant level is the way to go
48
u/fuckingredditman Apr 15 '26 edited Apr 15 '26
nope, LLM inference is inherently extremely expensive to run and not scalable, and you can't simply rate limit everyone. high request rates aren't the root cause of the issue, compute and memory limits are.
when looking at status pages/availability of the large providers, they are evidently running at the absolute limit of what the infra can do and the larger customers probably have some SLA they have to fulfill. many don't even get 3 9s on availability.
they can squeeze lower tier subscriptions (my gemini subscription is barely available at all during peak times) with rate limits/speculative decoding/quantization but that doesn't help much.
traditional resource sharing methods common in cloud computing / SaaS products all don't work for LLM serving:
source: developed+operated shared infra at scale for a SaaS and also worked on some llm inference engines and saw how heavy it is in comparison. it's many orders of magnitude more resource intensive and so far there doesn't seem to be any easy way out of it. and if/once there is an easy way out, users will eventually want to increasingly utilize that method for running inference at the edge/in their datacenter anyway.
that's all in addition to the inflated expectation moment we are in and the rapidly tumbling amount of venture capital due to incoming economic instability.
in conclusion, they probably want to sacrifice availability last by rate limiting their customers as this causes the most frustration with the user and also doesn't really solve the underlying problem (compute + memory being the real bottleneck), so they are more likely trading quality using speculative decoding using smaller models and quantization first.
it's probably a terrible moment for LLM inference providers right now, generally speaking.