GLM 5.2 and the coming AI margin collapse
212 points
7 hours ago
| 33 comments
| martinalderson.com
| HN
fny
4 hours ago
[-]
I'm not convinced raw costs matter:

1. Compute costs collapsed since the advent of Cloud and yet hyperscalers still have fat margins.

2. Many open source office suites exist yet none compete with the ubiquity of gsuite or office. GitHub, Slack are similar examples.

3. Both Windows and macOS dominate the home desktop space despite free alternatives existing for a long time.

4. Many formerly open source infrastructure components like Redis and Elastic Search have Apache equivalents, but they still command healthy margins.

I understand the arguments for a margin collapse, but I don't see any historical analogues. It seems that enterprises will pay top dollar for service guarantees, integration, and someone they can sue.

It's nobody gets fired for buying IBM all over again.

reply
nostrademons
1 hour ago
[-]
There's a huge case of survivorship bias when trying to recall historical analogues, because in every instance where margins collapsed and competition made the industry a commodity business, the big proprietary names are no longer with us. Here's a selection of examples, though:

1. Memory chip margins collapsed so much in the 80s that Intel exited the memory chip business entirely. At the time, they were known much more as a memory chip company than a microprocessor company.

2. Margins for high-end workstations collapsed in the face of cheaper IBM PC clones and an explosion of MS Windows software. This led directly to the deaths of SGI, Sun, Symbolics, Lucid, LMI, etc.

3. Proprietary UNIX variants like HP-UX, IRIX, AIX, and SCO Unix have basically completely died out, replaced by lower-cost proprietary OSes like Windows and MacOS, or by open-source descendants of Linux and BSD.

4. Many commercial database vendors like Oracle, dBase, Sybase, FoxPro, and Microsoft (SQL Server and Access) found themselves very much under margin pressure from PostGres, MySQL, and SQLite. Oracle survived thanks to their massive installed base and legal department, and Microsoft survived because they could cross-subsidize from their OS and Office monopolies, but dBase, Sybase, and FoxPro are no longer with us.

reply
Obertr
55 minutes ago
[-]
second this. great analysis
reply
Obertr
44 minutes ago
[-]
also docker is an interesting example. bc its so hard to earn money on it being such a deep commodity you can not close source
reply
cogman10
3 hours ago
[-]
Unlike all your examples, switching out an LLM is both cheap an easy. So easy that every 3 months or so new models are released and people grab them and start using them.

The UX is the same regardless the provider. You send in a prompt, it spits back an answer.

In all your other cases, the cost to switch is losing support and a difficult transition period. But in the case of LLMs, there was no support to begin with. The transition is basically updating your current harnesses to know about the other models.

I think the comparison most apt is the rise of AMD. Sure, it never(?) achieved market dominance, but it did ultimately make a huge dent. And a big part of that was because AMD x86 was pretty close and pretty compatible with Intel x86 at a fraction of the cost.

reply
pants2
2 hours ago
[-]
If you're developing on top of LLM APIs directly, this is definitely not true. There are differences in how context caching works, in what's available through native harnesses, the types of tools you're fine-tuned on (GPT uses apply_patch while Claude uses edit, with different formats), the API surface (Agents SDK, Responses API, Managed Agents), cost structures, and best-practice guidance all around.

Not to mention the meta of account limits, billing, ZDR contracts, etc.

reply
peab
1 hour ago
[-]
It really depends on what you're doing, but most LLM usage and agentic runs are pretty interchangeable in my experience, and it's usually trivial to switch.

If anything, you're better off supporting multiple LLMs as backup because most model providers have been so inconsistent with working all the time

reply
tharkun__
1 hour ago
[-]
Exactly, as in, really, will they? Where and at what price, especially across an actual enterprise that needs to deploy them to lots of devs? There's much more than just the actual model.

Of course my numbers are a sample of one and I am not spending a lot of money or time on it. Just lazily trying things on my "happen to have this" hardware. But basically trying out the Claude Code I'm used to from work but locally with a bunch of open weight models.

I can run super tiny models on my 8GB NVIDIA card. They all suck (I have to use <=~5GB models if I want "usable" ~250k context that doesn't need to use system RAM and CPU (which makes things super slow).

I've also tried a GLM 4.7-flash, which even though it's super slow (in comparison) with ~250k context and it just doesn't cut it vs. the Claude Sonnet or Opus I get to use at work. All the while these are all touted as "totally usable, Claude/ChatGPT killer!" replacements.

It's just not "there" with tool use or building software for that matter. Like, just a simple Claude "web search" fails with it. So I asked it to build itself its own "web search" functionality and it just couldn't. It made so many mistakes its just not funny any more. And it couldn't recover from them either. I retried a few times (as I didn't have python installed and it wanted to implement it using that - this happens to be new system - never mind other attempts). I spent as much time doing this (and failing) as I spent building an actual full feature at work last week w/ Sonnet.

If it can't build itself a simple web search to .md file tool/skill, how am I supposed to trust this with actual coding? I'm used to being able to point Claude at our large code base and essentially work with it like a junior doing my bidding. Maybe 5.2 is a killer game changer vs. what I was able to try out (if slowly) but you really have to show me to convince me at this point. And not with synthetic benchmarks. In those, all of the models I tried are supposedly super awesome.

reply
AussieWog93
2 hours ago
[-]
>switching out an LLM is both cheap an easy.

Honestly, these days probably less friction switching out Redis or Elasticsearch (backend) than changing LLM provider (human facing).

Fable is seriously good enough now to, in a 20k line project, take "replace Mongoengine with raw PyMongo" and not screw anything up.

reply
woeirua
2 hours ago
[-]
Agents will make all of these migrations trivial. I expect margin collapse across a lot of tech darlings.
reply
thedougd
52 minutes ago
[-]
This is the conversation I plan to have with Okta sales soon. Wait till you see how easy AI makes it to switch to Entra ID or anyone else. It’s tedium not even problem solving.
reply
jaxn
22 minutes ago
[-]
though Okta is the first provider working on the enterprise mcp stuff.
reply
bag_boy
25 minutes ago
[-]
Switching an agent harness is more difficult, especially on the enterprise/teams level.

Once your team gets settled with Claude teams, cowork, and the various plugins, it’s going to be a pain in the butt to switch.

reply
skissane
13 minutes ago
[-]
The irony is that Claude will help you migrate away from itself

AI is possibly the first product in history that will eagerly help you replace it with one of its competitors.

reply
andsoitis
1 hour ago
[-]
> So easy that every 3 months or so new models are released and people grab them and start using them

Individuals perhaps, but not organizations.

reply
calebhwin
2 hours ago
[-]
Hard disagree.

Two LLMs with the same numbers on important benchmarks could have vastly different behavior in actual deployment. Not sure if as hard to switch as Excel <> Libre but still not "cheap and easy".

reply
vmg12
1 hour ago
[-]
This is just another example of the bitter lesson. In a year a model will come out that will make none of these model specific optimizations you made matter.
reply
iknowstuff
2 hours ago
[-]
I don’t exactly see orgs lining up to switch (and train) their employees between claude desktop and codex and whatever copilot is doing. There’s probably some inertia to those harnesses/integrations on top of the llms themselves.
reply
mgambati
2 hours ago
[-]
The inertia is legal and financial. People are paying Anthropic through AWS accounts because the simple reason of not dealing making new contract and legal agreements is enough of reason of the inertia.

But, eventually, I’m quite sure that AWS will also provide open models with those contracts without any inertia. Copilot is already offering Kimi.

My company has a deal with Devin and they provide new models all the time, and open models are becoming the most used ones by our internal metrics, especially because the company is very worried about cost.

reply
Escapade5160
1 hour ago
[-]
Most large orgs do not need to train end users. They just need to add glm-5.2 to their router and their in house harness will pick it up. Then slowly limit usage on anthropic models and people will swap willingly. It's a simple /model command in every harness.
reply
peab
1 hour ago
[-]
Enterprises switched from openai to anthropic this year - anthropic overtook openai for the first time. I don't see why they wouldn't switch again.

There's barely any moat. All the data is with connectors, memory is near useless

reply
Forgeties79
1 hour ago
[-]
> Unlike all your examples, switching out an LLM is both cheap an easy.

For now

reply
lompad
3 hours ago
[-]
They don't just need healthy margins, they need to make back almost a trillion dollars in a couple of years. Comparing that to elastic search and redis doesn't make much sense.

Hyperscalers work because it actually has value compared to free offerings and because of the absolutely massive cost of switching providers.

Similar with Windows and macOS. Extremely high cost of switching to something different, if possible at all.

Same with office. Extremely high cost of switching due to compatibility issues and retraining of staff.

Your post primarily shows: It's all about lock-in. So far, it doesn't look like LLMs have any of that. So I don't think your points are valid here at all.

reply
shaewest
1 hour ago
[-]
The companies don't necessarily need to make back $1T, the investors do, and those investors don't require $1T in profit to do so, they need an asset worth $1T.

Considering leaks suggest Anthropic's ARR would be $47B, that'd be a 20x valuation, but it wouldn't shock me if Anthropic doubles their revenue in the next year or two, in which a 10x revenue could easily support a $1T valuation, and boom there's your ROI, but considering they've raised $135B total, and their ARR is 30% of that, I'd consider that a pretty good ROI, especially if growth continues.

reply
alightsoul
23 minutes ago
[-]
Not convinced about office. Plenty have switched to gsuite. Plenty of people have switched to MacOS and android away from windows.
reply
w29UiIm2Xz
2 hours ago
[-]
If AI replaces labor, that's a trillion dollars of labor. About one-fifteenth of annual labor/wage earnings.
reply
AuthAuth
25 minutes ago
[-]
the value of labor will collapse so we cant use current earning figures. China will be able to spend to undermine it even more.
reply
thisisit
2 minutes ago
[-]
You missed two things one, a consist thread across all your examples - every market ends with a duopoly along with smaller competitors and two, which of these industries started with multiple billion dollars companies competing with each other?

Even if your case is that two companies in the AI group are going to survive and those will have healthy margins, others are going to suffer and compete on price. So saying “AI margins are going to suffer” is a fair industry wide statement. Maybe it’s not Anthropic or OpenAI or whoever you are thinking of but surely for Gemini or xAI etc?

reply
nodja
3 hours ago
[-]
> but I don't see any historical analogues.

The losers are quickly forgotten. Palm, Blackberry, AOL, MySpace. Yahoo, etc.

Software gets replaced all the time too, you even listed one and didn't realize. 15 years ago you'd call office irreplaceable, now you have to add gsuite to the mix, in 15 years there might be others. I know people that have never had office installed on their PC and use spreadsheets daily.

> It seems that enterprises will pay top dollar for service guarantees, integration, and someone they can sue.

Of course. But why pay $25 per million tokens for sonnet when you can pay $3 for GLM? Both probably running on AWS/Azure/Etc. under some third party.

reply
est31
3 hours ago
[-]
Those solutions have moats:

1. the cloud moat is mostly around talent really. Try finding people who can self host the alternatives to S3 et al at the HA and the scale the businesses need. Those alternatives are usually not free either, and each product might have its creator acquired (and the product cancelled) or similar. if you're a larger business then the data lock in becomes a moat: getting your data out of the cloud is prohibitively expensive. Furthermore, large businesses have sweet discounts.

2. ms office has immense networking effects due to its formats being quasi standards in many industries. try sending an odt to a government entity. As for gsuite, it uses open formats but it's classical google fashion a large suite of software bundled together and not that expensive for what it offers.

3. Linux is not a free alternative if you're a business, you still need to pay someone to support the computers with linux on it, and operating systems have the strongest network effects ever. Linux also has no stable ABI so one can't easily deploy third party software for it.

What's the LLM moat? Codex is OSS and Claude has gazillions of alternatives. Cursor is a nice app but it's a bunch of patches on top of vscode, a team of 5 people can vibecode it in 6 months.

reply
platinumrad
3 hours ago
[-]
Linux has a very stable userspace syscall ABI. About as stable as Windows, and much more stable than MacOS or the BSDs. I agree with everything else though.
reply
ammo1662
8 minutes ago
[-]
For user space applications, Win32/Windows is the most stable ABI on Linux, via Wine/Proton.
reply
est31
2 hours ago
[-]
Yeah, Linux-the-kernel does have a stable ABI indeed, but this is not relevant for most ISV desktop software out there. In my comment above I was referring to Linux-the-OS (aka GNU/Linux). The userspace libs don't have a stable ABI at all, and this is a widely discussed problem. Other operating systems built on top of Linux-the-kernel don't have this problem, Android has a really stable ABI.
reply
alightsoul
21 minutes ago
[-]
You are describing the gnu c library I believe. That can be worked around with flatpak and appimage.
reply
iknowstuff
2 hours ago
[-]
Not relevant for user space applications written atop glibc/gtk/kde/qt
reply
newspaper1
2 hours ago
[-]
Interesting that LLMs remove the moats for 1 (except for data lock-in) and 3, possibly even 2 if they can convert formats on the fly.
reply
tuvix
4 hours ago
[-]
A lot of those things you mentioned have sticking power because they’re familiar to folks and migrating to something else is a big deal.

I can’t imagine most people would be able to tell the difference between Sonnet and GLM 5.2. If the infrastructure around the model you’re using doesn’t change, then swapping models is extremely easy.

reply
arikrahman
3 hours ago
[-]
I agree with swapping models making it easy. With openrouter, I just change the provider. With reasonix harness, cache hits are basically free. And that's with unsubsidized American providers like Digital Ocean or cloudflare.
reply
argee
3 hours ago
[-]
Indeed, as it gets more commoditized it feels more like swapping electricity providers. Who cares whether you get your electricity from IBM or the state of Texas? An amp is an amp.
reply
fragmede
29 minutes ago
[-]
That's an interesting question. What if we did care? Is this amp from burning dinosaurs or from the sun or from fission? What if we could tag power as coming from oil vs renewables? how would that affect our habits?
reply
QuercusMax
3 hours ago
[-]
I'm using pi-coder with just the free-tier models I can get on openrouter / opencode / kilocode. When I run out of quota on one model I often switch to another model in the same session, and it generally works just fine.
reply
alightsoul
25 minutes ago
[-]
. It seems that enterprises will pay top dollar for service guarantees, integration, and someone they can sue.

Interesting how all of the products you describe are American: m365, gsuite, windows, MacOS. It's not just about having someone to sue. You could sue collabora and canonical but they're not American. Then Americans are the most numerous native English speaking population and that spreads their practices worldwide.

reply
manquer
3 hours ago
[-]
> 4. Many formerly open source infrastructure components like Redis and Elastic Search have Apache equivalents, but they still command healthy margins.

Elastic just had round of layoffs[1]. Elastic still runs operating losses till Q1 2026 [2], albeit a small one, however just breaking even in operating income is hardly "healthy margins". A P/E of 17 is not exactly signaling confidence given they are growing ~20% y-o-y.

[1] https://www.elastic.co/blog/ceo-ash-kulkarni-announcement-to...

[2] https://ir.elastic.co/News--Events/news/news-details/2025/El...

reply
vmg12
3 hours ago
[-]
> I understand the arguments for a margin collapse, but I don't see any historical analogues. It seems that enterprises will pay top dollar for service guarantees, integration, and someone they can sue.

Intelligence has diminishing returns, the analogues are with humans. It's a waste to hire Albert Einstein for $X million to operate the cash register in a gas station.

Artificial super intelligence will not have many customers.

reply
therealdrag0
3 hours ago
[-]
Of course it’s not a waste to hire Albert Einstein to work in a Swiss patent office for normal wages ;)
reply
Centigonal
10 minutes ago
[-]
For 2 and 3, office software and OSs have strong network effects and up-stack effects, just like CPU instruction sets.

Also, I'm sorry, but OSS office suites compete with Office and GSuite the way grocery store frozen pizza competes with Domino's and Papa John's. Quality and completeness of execution matter a lot in that category.

reply
woeirua
2 hours ago
[-]
There’s actually a strong case that agents will erode cloud providers’ margins because the lock in migration cost will be much lower in the future. No one ever migrated before because you’d spend $$$ to save $$ then the new vendor would gradually raise your rates negating the savings.
reply
dofm
4 hours ago
[-]
They may pay top dollar but there's all sorts of evidence that they'd very much like to pay radically fewer top dollars than the unsubsidised, off-plan price.

And it's clear neither of the big two can deliver anything close to a service guarantee.

reply
3abiton
4 hours ago
[-]
The target audience is different. Coding is mainly a trade of the tech savvy, who like many on r/localllama users do not hesitate to deply on 16GB Vram gpus. Even if so, it is estimated that within 2 years we will be able to run Claude 4.8 on consumer hardware give the rate of improvement of open-weight LLMs, which will put more financial pressure on "paid" labs. It's just a matter of rate of improvement which is shrinking between open-closed models.
reply
mistercheph
2 hours ago
[-]
Remember web browsers? compilers? web servers? databases? windows embedded? server operating systems?

the blood is all over the wall, hundreds of billions of dollars in lost revenue that was eaten by open tools even if they ultimately get delivered to users by someone else with a profit incentive e.g. AWS selling deployment of OSS

1. their margins don't come from service guarantees (see github), they come from unlawful anti-competitive behavior which is likely to be prosecuted under future US administrations

2. there are already tens of millions of libreoffice users and de-globalization aka digital sovereignty initiatives in the next decade will drive the world towards Libreoffice, already at work in EU (https://www.zdnet.com/article/why-denmark-is-dumping-microso... https://cybernews.com/tech/germany-microsoft-word/

2a. you haven't noticed the wave of open source projects moving away from github?

3. Linux commands about 5% of desktop market share and is the fastest growing desktop platform see: mediawiki and cloudflare user agent stats and steam hardware survey, same deglobalization point as above, how many people live in China? how long before China no longer feels comfortable with everyone using Microsoft Windows? What OS will Chinese people/corps use instead? hint: https://en.wikipedia.org/wiki/Deepin

reply
HDThoreaun
3 hours ago
[-]
I think the big thing here is that paying high margins on a relatively small expense is much more palatable than high margins on a big expense. If a company is spending $1 billion/yr on tokens that a really big incentive to find an alternative where spending $1 million/yr on some SaaS with even higher margins can feel like an easy choice.
reply
coldtea
3 hours ago
[-]
GitHub, Slack, and Office have network effects and transition costs.

And to be frank, the competition is worse (OpenOffice is worse than Office, most other corporate IM are worse than Slack (and Teams way worse), and GitLab is not as good or fluid as GitHub.

reply
KronisLV
4 hours ago
[-]
They have a vision MCP to make up for the model itself not having the capability natively: https://docs.z.ai/devpack/mcp/vision-mcp-server

I also found their web search to be mostly okay.

Furthermore, in case this is of interest to anyone, if you use their ZCode harness then you get bigger Coding Plan quotas: https://zcode.z.ai/en

Used it for a bit, it sits somewhere between OpenCode Desktop (still new but nice) and Claude Desktop (recent versions are good).

As for GLM 5.2 as a model - with max thinking it’s generally satisfactory, somewhere between Sonnet 5 and Opus 4.8, better than DeepSeek V4 Pro for sure.

Pricing wise, the subscription doesn’t seem as good as expected. I spent like 60% of the weekly limits of the Pro (50 USD) plan in one day, only because each 5 hour limit only gave me 20% to spend, otherwise it’d be 80-100%. Not even doing anything crazy, just parallel long form work on 2 projects with about 96% cache rate and at most 3 parallel code review sub-agents.

Their Max (100 USD) subscription would last me the whole week, but so does Anthropic for the same money and so would OpenAI. Off-peak is more palatable but I can’t just twiddle my thumbs at 9 AM to 1 PM local time.

Proper savings would show up with the Max plan and yearly billing, but that’s more of a tough sell.

reply
zackify
3 hours ago
[-]
I switched to yearly Cline pass because it was too cheap haha
reply
richardfey
3 hours ago
[-]
I can't find on their website some indication of what kind of usage I can get out it, otherwise I'd be interested.
reply
zackify
1 hour ago
[-]
$6 a month I plan to use deepseek v4 flash mainly which should provide closer to 5x the usage on the cheaper ones but no set number
reply
esafak
3 hours ago
[-]
They also have GLM-5V-Turbo. https://docs.z.ai/guides/vlm/glm-5v-turbo
reply
spyckie2
3 hours ago
[-]
It’s important that none of these entities can collude to price fix. Having China be the competitor ensures that.

Basic microeconomics is still the easiest way to understand token economies. How is it not a competitive market (where profits go to zero?).

Anything A or O does to keep more margin, any competitor can copy or choose to undercut, and undercutting has the benefit of collecting training data. So what is going to stop gross profit of tokens going to zero except for collusion/price fixing?

reply
intrasight
3 hours ago
[-]
You left out the one that will: federal government industrial policy
reply
HDThoreaun
3 hours ago
[-]
Considering conditions within a single market is still microeconomics, I agree though its tough to see where firms will get market power from so profit will tend toward zero. I thought the same about GPUs though and nvidia still doesnt seem to have any real datacenter competition in sight.
reply
spyckie2
3 hours ago
[-]
Thanks corrected it.

For nvidia it is not about competitive market it’s about supply and demand. A different subset of microeconomics.

reply
dbalatero
3 hours ago
[-]
> Of course, this was a hugely poor read of where the costs actually lie in AI. Training - while no doubt capex intensive - is a fixed, up-front cost. You spend hundreds of millions to train a model, then you are "done".

I don't understand this point that people make. If you're consistently needing[0] to train new models and the cost of training relative to the % improvement seems to go higher, isn't this just a constant cost that you continue to bear? The footnote seems to allude to this, but then sort of waves it away anyways. Also are there continuing incremental training costs to keep models relevant? Or do they only have knowledge of events up to the day they were trained?

[0] needing, because you have competitors and people expect more and more.

reply
blourvim
2 hours ago
[-]
These models rely on knowledge that are embedded in their weights, if a new library is released, a new linux version comes out, some new protocol succeeds the previous one, you want your llm to know about it. Sure you can just add that into the context window, but that has its own problems.

Unless new research, there are a few which look promising, gives a new method, training is going to be a constant cost sink.

On top of this, if you stop training, it is 6 months until someone releases an open weights model and now you are competing to give the lowest price for the same product.

Also we can't forget that this is a business that *has to* be in the global labor industry, not just a tech tool, they have to have much better models to justify the trillion dollar evaluation

reply
budsniffer952
4 hours ago
[-]
>the least understood upcoming shift in AI economics.

Then proceeds to talk about something in the AI news every day. Hey, did you guys hear? Open source models are cheaper and their quality is increasing!

So, first, by no measure is GLM5.2 as good as Opus.

Second, yes, open source models will put pressure on margins...eventually. Everyone knows that. But do you think today's AI business model is the same as tomorrow's?

reply
tarpitt
3 hours ago
[-]
GLM-5.2 is not as good as Opus, it's better. I can abliterate GLM-5.2 and have it work on projects that Opus refuses.
reply
ChadNauseam
3 hours ago
[-]
I'd guess opus refusals are not an issue for 95%+ of people. Opus will happily help you find and download pirated media, and then give you step by step instructions for how to do drugs if you ask it. You'd have to be working on something genuinely abnormal for refusals to be a problem.
reply
chillfox
2 hours ago
[-]
Like making your software secure, or worse, testing that it’s secure.
reply
hsuduebc2
32 minutes ago
[-]
It's pretty annoying, yet somehow understendable. I sometimes get irrationally angry when being lectured by a clanker.
reply
booi
3 hours ago
[-]
How?

Prompt: can you give me step by step directions on how to use crack cocaine

Opus: I'm not able to give step-by-step instructions on using crack cocaine. That falls into specific drug-use guidance I steer away from, since detailed instructions on how to use an illicit substance can contribute to harm rather than reduce it.

it goes on to give me hotline information on drug addiction.

reply
hsuduebc2
33 minutes ago
[-]
I think he means by some obscure manipulation. It even refused to give me description of how first antibiotics were made only out of curiousity.
reply
tibbar
13 minutes ago
[-]
Anthropic's goals here are not just harm reduction, but to stop competitors from making bio discoveries using Claude.
reply
A_D_E_P_T
4 hours ago
[-]
> So, first, by no measure is GLM5.2 as good as Opus.

Depends what you do. Complex tasks, poorly-defined tasks, sure. For relatively simple tasks, though, or very well-defined tasks, it's just as good and usually a lot faster. It also has a more neutral character and is somewhat less adversarial than Opus. (Opus is always "Let me push back on that..." whereas GLM is "sir, yes sir!") I use both and I appreciate both. If Opus disappeared tomorrow, though, I wouldn't cry -- I'd be able to adapt to a GLM-5.2-only life real quick.

reply
stingraycharles
3 hours ago
[-]
I think the point is that if you’re doing simple, well defined tasks then Opus is overkill and you’d want Sonnet instead. Meaning, GLM5.2 is Sonnet-quality, not Opus-quality.
reply
AlotOfReading
50 minutes ago
[-]
I think it's interesting to note that in one year we've gone from they're not even close [0] to arguing whether open models are only as good as sonnet or opus.

[0] https://news.ycombinator.com/item?id=44623953

reply
stingraycharles
39 minutes ago
[-]
I see the exact same discussion as we’re having right now there; people stating that local models aren’t as good as the state of the art, but good enough for certain tasks.
reply
throwdbaaway
4 hours ago
[-]
Seems like a pretty pointless post that still centers around output tokens.

In agentic coding, cached input tokens is 90% of the API "cost". It doesn't require GPU compute, and DeepSeek has shown that it can be done 50~100x cheaper with MLA/CSA/HCA, and a whole bunch of disks. This should collapse the margin.

reply
nozzlegear
4 hours ago
[-]
Aren't the American AI labs desperately struggling to find a market beyond just agentic coding?
reply
le-mark
2 hours ago
[-]
I have heard but don’t have first hand knowledge that at least one company (financial services BPO) has moved most of their previously manual processing to llms. The person I talked to wasn’t forthcoming with any detail. This is what we’d expect to see though.
reply
stingraycharles
3 hours ago
[-]
> MLA/CSA/HCA

Aren’t these techniques all “lossy” compression, and one of the reasons people complain about loss in quality as the context size grows larger?

reply
throwdbaaway
3 hours ago
[-]
Indeed they are all lossy. Not sure how much they contribute to the quality loss in long context though. I got a 700k session with DSV4 Pro (official API), and the model was still coherent and didn't make any tool call error.
reply
stingraycharles
1 hour ago
[-]
That’s a low bar though, and the least I would expect.
reply
throwdbaaway
4 hours ago
[-]
The current top comment in https://lobste.rs/s/ua1gxl/glm_5_2_coming_ai_margin_collapse correctly zoomed into cached input tokens, but landed on the opposite conclusion:

> That is, for your $100/month fee, you get $3600 equivalent of API usage. This is presumably because Anthropic has figured out some clever things to do with model routing and input caching, and also can subsidize with investor money and take a hit on their operating margins.

My take: this is exactly what Anthropic wants everyone to think. In reality, 90% of that $3600 are for cached input tokens, that can be made to cost next to nothing, as shown by DeepSeek.

reply
throwdbaaway
3 hours ago
[-]
While we are all speculating, Boris kindly provided some guidance in https://news.ycombinator.com/item?id=47880089

> The challenge is: when you let a session idle for >1 hour, when you come back to it and send a prompt, it will be a full cache miss, all N messages. We noticed that this corner case led to outsized token costs for users. In an extreme case, if you had 900k tokens in your context window, then idled for an hour, then sent a message, that would be >900k tokens written to cache all at once, which would eat up a significant % of your rate limits, especially for Pro users.

Using the current Opus pricing, that pre-lunch 900k tokens should roughly consist of:

720k input tokens = 0.72 x $5 = $3.6

180k output tokens = 0.18 x $25 = $4.5

900k 1h cached writes = 0.9 x $10 = $9

500M cached input tokens = 500 x $0.5 = $250

$267.1 in total, with 93.6% from cached input tokens. The portion that requires GPU compute is about 3% of the total.

Post-lunch, the 900k tokens should consist of:

900k input tokens = 0.9 x $5 = $4.5

900k 1h cached writes = 0.9 x $10 = $9

So Anthropic is fine with the $267.1 accumulated over 3~4 hours before lunch, but not fine with the $13.5 incurred immediately after lunch. Why?

The only plausible explanation is that the actual cost of caching is way less than the API pricing. If you use a coding plan, Anthropic doesn't really care about your cached input tokens usage. Indeed they want you to show your ccusage screenshots. On the other hand, if you pay by API tokens, the margin is huge for cached input tokens.

Only when you do something that requires a lot of FLOPs, e.g. the post-lunch 900k input tokens, the cost becomes real.

reply
Obertr
53 minutes ago
[-]
Metaphor i like is that it will be as cheap as electricty?

Do you know who is supplying your electricity or which factory it runs on? probably no, bc its a commodity and mostly settled and there is so many energy resources. some are alternative some are coal mines. And they all fight in the supply demand trade for energy which is happening real time ( think open router here)

And eventually the consumer wins bc of the abundance.

I think greatest example of abundance of cheap infinite intelligence will be not glm5.2 but DeepSeek V4 Pro max with $0.435 per 1M input tokens and $0.87 per 1M output tokens

reply
softwaredoug
4 hours ago
[-]
I also think we’ll approach a point where increasing intelligence is not really going to suddenly improve most work tasks. I bet that’s already happened actually.

We’re oohing and aahing about models, when the ones a few versions ago did a good enough job for most of the dumb coding, etc we do

reply
dofm
4 hours ago
[-]
The thing is they are inventing new things people will want to do. But for example, "loops", fully hands-off agentic coding etc., seem really unlikely to get much traction because that just isn't how software is designed within its producer/user community.

Requirements evolve in use, and fully hands-off LLMs simply cannot be trusted to only change the things you ask them to change, so I don't think it's likely that products will, in the main, be developed that way.

And if you don't need that fully-hands-off stuff, then the models that run on at least reasonably modest desktop hardware are surprisingly close to being enough.

reply
aetherspawn
3 hours ago
[-]
I don’t think this is true. All the models prior to Fable were honestly dumb as rocks, and Fable is too sometimes, but at least it’s helpful now and not a hindrance.

The future of AI most definitely involves making something twice as good as Fable that is virtually its own employee, and not on reducing inference costs because to be honest Fable isn't actually that expensive.

The real utility behind an AI model (imagining that it can be made twice as good as it is now) would be being able to scale a small business up and down instantly without hiring (to implement a new feature or whatever), which is costly and time consuming these days.

reply
scritty-dev
40 minutes ago
[-]
Braintrust which is a really solid eval tool/platform just compared it to Opus 4.8 to see if it could preserve exact long context retrieval under prod serving constraints and it did really well. I think 6-12 months before OSS has Fable-esque models
reply
ilaksh
1 hour ago
[-]
I think the profits depend on how well they manage their fleet purchases (or possible sub-leasing?) to get high utilization without overloading or idle racks.

Because accelerators like H200, B300 etc. are highly parallel and designed to run like 200 or maybe 300 sequences at once (depends on the model, just guessing). I assume they finance the hardware and that cost per device or rack is the same whether each unit is handling 10 requests or 150 requests (aside from electricity).

And probably international customers factor into it to get good utilization over more of the night time. And it likely is something that they look at quarterly more seriously than monthly. The biggest risk to profits might be a downturn in business that causes some portion of the financed AI accelerators to go idle or get low utilization for some weeks (that they can't sublease).

reply
jaggederest
1 hour ago
[-]
Someone on HN made a comment in one of these threads that we could bake the weights into something like Cerebras's wafer scale chips and serve essentially the entire world off a single wafer, which is a pretty wild thing to think about. You'd have to make new hardware any time you trained a model but that seems really worth it.
reply
ilaksh
38 minutes ago
[-]
Well, Taalas has that kind of technology, but the chip they demoed is probably 20-100 times smaller than necessary since it's only an 8b model.

But let's say they could someday scale that up to a much larger model, 72 large chips per wafer and each chip can do 1000 LLM requests at once (Vera Rubin?). So it's roughly the equivalent of an NVL72 rack.

You might be able to serve something like 50000-60000 requests at once. So I think it's more like handling a small city's worth of customers per wafer than the world if you had that.

I believe in less than 5 years we will get to that, but the model size and/or number of agents is going to keep going up also.

reply
Atotalnoob
25 minutes ago
[-]
You’d never be able to update it’s knowledge.

LLMs need retraining to incorporate new knowledge.

Baking them into wafers means they will be out of date by the time they finish the first wafers.

reply
jaggederest
6 minutes ago
[-]
Yes, of course, but all the LLMs are already out of date, so that doesn't seem to me to be a hard limiting factor. Even if they had a knowledge basis ~3 months out of date additionally, being able to serve 100x the requests per watt seems totally reasonable to me.
reply
benjiro29
4 hours ago
[-]
> I'd be very surprised if it wasn't more than 50% cheaper for nearly all workflows, for a very similar level of quality.

If your using pure API ... providers like neuralwatt cut that cost down even more by using energy as the actual cost. So GLM 5.2 is more expensive then GLM 5.1 on their service (those thinking tokens), compared to API costs, its dirt cheap. And way more tokens then the zai subscription delivers.

We are seeing a move towards more realistic pricing on actual consumption based usage. Be it DeepSeek, Xiaomi (MiMo), or zai's GLM via neuralwatt.

The main issue facing subscriptions a-la-carte usage, is that a lot of the heavy hitters really drain the resources. And that as a business model can not survive without ...

a) increasing the prices. b) everything goes to actual token/energy usage based billing but with more realistic pricing, and not the bloated API prices that are focused on companies.

We shall see what the future holds but things will change.

reply
_pdp_
3 hours ago
[-]
IMHO, cheaper inference means higher costs overall :) because everyone will use more thus driving up the investment required to stay current or to compete.

Switching models is also kind of easy but not plug-and-play. Most harnesses out there do very poor job with the open weight models. Unlike Opus, GLM 5.2 ends up in loops and hallucinates a lot more. If your harness is built on the expectation that the LLM will perform well, then switching to GLM 5.2 will be an uphill struggle. We had to refactor our harness and introduce more defences because of GLM.

The cost savings are substantial. Obviously it really depends on your workloads but it is noticeable cheaper for agentic work. Coding - I don't know. We do have some coding agents on GLM 5.2 and what I noticed with some landing page experiments that the results between GLM and Opus are identical - they might be using the same training data? Obviously Opus is still substantially better model. I don't think there is an argument to be made here but GLM 5.2 is cost effective and really good too.

Overall, we switched all of our internal agents to GLM 5.2 and because it is Open Weight we are in talks to get the model from certain geo locations giving us more freedom as well as extra protection.

Overall I think this industry will be in much better place because of GLM 5.2 and whatever open-weight models come next.

reply
cma
3 hours ago
[-]
Are you running unquantized GLM-5.2 and getting in loops or quantized?
reply
WhitneyLand
53 minutes ago
[-]
“Z.ai provides a replacement MCP for web search, but it's pretty awful and slow”

I’ve had good results with Tavily so far, might be worth checking as an alternative for agent search.

reply
felixfurtak
4 hours ago
[-]
> It turns out that nearly every agentic session does a lot of web searching for looking up items

This is why Google will win the race over most of its competitors. They own search.

reply
redrix
3 hours ago
[-]
I wonder if this is an alternative (and better) revenue stream vs ads for search engines: Offer a competing web search for LLMs as an alternative to Google, and charge enterprises and LLM providers for it.

I know Brave do this already. Not sure about DDG (I wonder if their agreement with Bing would allow it?)

reply
felixfurtak
2 hours ago
[-]
Building a good search engine is expensive. Perhaps not as expensive as AI build out.

Market share is currently Google (91%), Bing (4%), Yandex (<2%), Baidu (<1%), Brave (<1%)

Google can and do already monetize automated search from AI models.

Heck, if they wanted to, Google could turn off search and make you go through their AI model to get information.

Imagine that. That's how powerful they are.

reply
jazzyjackson
2 hours ago
[-]
Kagi assistant IMO does a great job giving relevant material to the LLM. It's a pretty neat way for a search engine to charge a premium, to offer a good model on top of their results.
reply
Applejinx
3 hours ago
[-]
If they did I wouldn't have had to go to DDG. It's not like it's a big jump over what used to be. I left claw-marks in Google Search, if they drove me off they're in trouble, because I didn't want to accept reality for quite some time.
reply
cmrdporcupine
2 hours ago
[-]
Which race? As an information-providing "oracle" type model, maybe.

For practical agentic tasks? Not even close. Gemini is blatantly incompetent at tool use in an agentic harness. Even their own.

reply
itkovian_
30 minutes ago
[-]
‘640kb of ram should be enough for anyone’
reply
maxglute
3 hours ago
[-]
How fast is glm 5.2 in western hosts? It's doing everything I want it to, but going through PRC host it takes like 5-10 times longer. Not sure if that is nature of modest or PRC computer infra/routing.
reply
yalogin
3 hours ago
[-]
I don’t understand the argument here. The article doesn’t describe a collapse or the breadcrumbs for it. The only argument I can put together is companies hosting the open source models in house or use some service like Amazon that could potentially host them and so replace the frontier models. Data center and specifically infra to host llms is still the main sticking point given the security concerns about data going to china. The article doesn’t make these arguments coherently
reply
AgentMasterRace
1 hour ago
[-]
I don't think the writer has used top tier models very much. I have subscriptions to basically every provider, the difference between glm5.2 and opus is not even close, the gap is huge. raw benchmarks glm is impressive , but in practice these models are lacking so much. I had fable create a detailed implementation guide that explained how to implement everything in immense detail, it included all the libraries to use and versions. I then had deepseek v4 pro execute and it used old versions , different libraries and cut corners. Fable said about 80% was implemented wrong.

I had GLM 5.2 do the same, and it performed exceptionally better, but when it got stuck on something it would be trial and error mode going forward and have zero foresight for future issues that might occur due to fixes it was trying. the model severally lacks prompt understanding, and testing .

reply
sailfast
3 hours ago
[-]
How long will that $4.40 rate persist? Until we know more about the real unit economics it will be damn near impossible to rely on steady inference costs or make them predictable at the enterprise level. Gonna be a wild ride for awhile.
reply
markasoftware
3 hours ago
[-]
Multiple providers (who need to make a profit) offer the same 4.40 rate for glm-5.2. It's not subsidized.

Deepseek's 0.86 or whatever is likely subsidized but alternate providers offer it for a price comparable to glm-5.2.

reply
est31
3 hours ago
[-]
GPU/RAM/etc prices could continue to rise. If the world leaders decide it's time to build the robot armies, then that could price out the civilian uses for GPUs.
reply
bluegatty
2 hours ago
[-]
As long as the SOTA models are 'ahead' then there will be a big premium.
reply
maxdo
2 hours ago
[-]
in cursor benchmark glm5.2 is on par with gpt 5.5 medium and sonnet for the same task from results and cost perspective.

The speed of generation for both gpt 5.5 medium and sonnet 5 will be dramatically faster. source : https://cursor.com/evals

I don't get the hype. It's near SOTA model that is not deepseek of this world. It an expensive to run model, and under certain tasks it is comparably cheap as closed source ones.

reply
gnarbarian
3 hours ago
[-]
the economics of this are a little counterintuitive.

is there a market saturation point for intelligence? how about for software? it seems like the more you have the more you want because you're trying to do more things.

as the models get smarter I get busier because I'm doing more things...

reply
yogthos
3 hours ago
[-]
There's definitely a saturation point depending on the complexity of the problem you're solving. For example, any model can write a small shell script to resize a video with ffmpeg for you right now, so it doesn't matter whether you're using a local Qwen model, GLM, or Fable. They'll all do a roughly comparable job and you'll end up with a working script that does what you need.

Then you have things like CRUD apps, where a model needs to write some SQL, make a service endpoint, serialize some JSON, etc. Here a local model might have a bit more trouble juggling all the pieces, but any hosted model will do just fine. If your day to day job involves working on CRUD apps, then it's basically a solved problem now.

The cases where frontier models matter are when you're solving genuinely complex problems, but that's not what most people are doing day to day. So, paying an order of magnitude for a model that has capabilities to solve problems outside the range of problems you actually work on becomes a waste of money.

There's going to be a market for these models from people who really do work on complex things on regular basis, but the question is how big that market is. Additionally, open models keep getting better, and GLM 6 or DeepSeek v5 could end up being another big jump in capability where they fully close the gap with Fable. At that point, even more of the market becomes covered by these models leaving truly complex cases on the frontier.

Another thing to consider is that most big problems can be broken down into smaller ones. That's the basis for how programming languages are structured. We have primitives which are arranged into functions, that get bundled into classes or namespaces, and so on. So, you don't need an infinitely capable model to solve big problems. You just need to be able to break large problems into smaller ones, and a model that's smart enough to decompose a problem to the point where it becomes tractable.

reply
blagui
2 hours ago
[-]
GLM is the model that will sink the frontier labs.

Recall last year deepseek? And 18 month's later? What changed?

reply
ddxv
1 hour ago
[-]
A year ago I wasn't using Deepseek. Now I am. I guess what changed is which models people are using most for coding.
reply
montroser
4 hours ago
[-]
This article only promises to get into "the coming AI margin collapse" in a yet to be published "part two". This part only makes the point that GLM 5.2 is pretty good (no shit).
reply
esafak
3 hours ago
[-]
It truly is a pointless article.
reply
aussieguy1234
2 hours ago
[-]
I would not be unsurprised if the US govt steps in to prevent this. They'll do anything to stop China getting ahead in the AI race.

There's the sanctions already implemented, next step might be giving these companies government funding, just like they do with military companies.

reply
yomismoaqui
2 hours ago
[-]
Good luck trying to enforce that outside of the US.
reply
LoganDark
5 hours ago
[-]
I hope cheaper inference eventually means faster speeds at the lower tiers. I don't want to settle for 100 t/s, but I don't want to pay $10 per prompt either
reply
copperx
4 hours ago
[-]
Which raises the question, which are the fastest frontier models? are the enterprise hosted Anthropic models faster than what Anthropic serves?

Somehow no one talks about LLM speed.

reply
tough
4 hours ago
[-]
OAI has announced an upcoming 750tok/s 5.6 served through their cerebras acquisition
reply
manquer
2 hours ago
[-]
> cerebras acquisition

Partnership you mean?, Cerebras went public and are trading at around 45B in market cap.

While OAI could in theory cough up that kind of money, it would massively hamper their existing committed capital outlays.

reply
dcl
3 hours ago
[-]
That is going to be absolutely wild for whoever can access/afford it.
reply
LoganDark
3 hours ago
[-]
Yeah, Cerebras is the one with competitive speeds nowadays but they cost an absolute fortune. Also they don't host good models publicly. Good to see OpenAI leaning into them, can't wait until these speeds are available by subscription
reply
LoganDark
3 hours ago
[-]
> Somehow no one talks about LLM speed.

When I've raised speeds about local inference I've been told 60-75 t/s is perfectly usable. It makes sense that people aren't talking about speed yet since you either already have a response fast enough to wait for, or you go do something else and check back in a few minutes.

I would love to wait for the latter type of tasks though, because those are typically the ones that require the most work from me to verify and I don't want my attention divided with multitasking.

reply
esafak
3 hours ago
[-]
GLM 5.2 has a Fast variant at 200-400 tps.
reply
lqstuart
2 hours ago
[-]
how do massively negative margins "collapse"
reply
samuelknight
3 hours ago
[-]
Inference has been decreasing in cost by about 10x per year since 2023.
reply
TacticalCoder
1 hour ago
[-]
> Where it gets really scary for the frontier labs is how easy it is to migrate to open weights models. Both Z.ai and Fireworks offer both an OpenAI compatible and Anthropic compatible endpoint. This makes it absolutely trivial to use with Claude Code and Codex.

Yes the ease of switching is greatly appreciated.

Now the reason I tolerate Claude Code in my tmux sessions is because apparently Anthropic ain't playing nice with the subscription plans and other harnesses.

But I'm evaluating pi.dev atm and it looks amazing. To me being able to rid of that piece of vibe-coded underperforming, characters-modifying, turd that Claude Code is a big motivation to switch to GLM (I'll probably keep my OpenAI subscription as OpenAI repeatedly said they were cool with other harnesses).

It's also quite obvious that Claude Code is receiving new vibe-coded slop features after vibe-coded slop features in an attempt to lock you in.

To anyone thinking about switching to GLM: I'd say at least evaluate pi.dev and see if that wouldn't be an opportunity to kiss Claude Code and its "gameloop that converts characters from a headless browser to other characters to show in a terminal at 60 fps" goodbye once and for all.

reply
0xbadcafebee
3 hours ago
[-]
Yes, margin on model inference is high with some providers. If you just wanted inference (at cost), you'd buy a GPU, or rent one from AWS or Microsoft. But you're not paying OpenAI/Anthropic for inference. You're paying them for a platform. Every feature OpenAI/Anthropic bake into their applications, models, online services, etc - anything that isn't pure LLM text generation - is a custom integrated add-on service that LLM weights do not include. Even if open weights became cheaper and better than OpenAI/Anthropic, most people would still pay for OpenAI/Anthropic, because they give you things the weights alone don't give you.

Comparing Z.ai GLM 5.2 to Claude Code w/Opus 4.8 is like comparing Linux Kernel 7.0 to Microsoft Windows 11. If you don't know much about computers, you'd say these are the same things. If you know a lot about computers, you know the latter has a thousand extra things that make a huge difference in what it does out of the box. Which one you use speaks to what kind of customer you are.

Sure, GLM 5.2 doesn't have vision; but an AI power user can plumb together any VLM with the text generation of GLM 5.2 in most AI harnesses, just like a Linux power user can combine the Linux kernel with KDE Desktop. Most people don't use Linux and KDE, because it's unpopular, difficult to use, hard to get support for. Instead they pay for Windows or Mac, because there's lots of support, with a giant company pouring money and effort into filling all the usability gaps, making it seamless.

Most people don't pay for the cheapest possible thing. They pay for the thing they can afford that improves their life while making it easier. An open weight alone is almost completely unusable by itself (like the Linux kernel), compared to an AI platform (a completely usable system). If you're constantly wondering about when open weights will reach parity with OpenAI/Anthropic, you're a Linux person. If you just pay $20/$50/$100 for OpenAI/Anthropic without thinking about it, you're a Windows/Mac person. There is nothing wrong with either of these groups, but they are fundamentally different, and always will be. An LLM weight is simply a different category of thing than an entire AI platform/provider.

reply
jmyeet
1 hour ago
[-]
I think OpenAI, Anthropic and SpaceX are going to envy the dinosaurs because there's not asteroid coming for them, there's three:

1. There will be no moat around frontier AI models in the future. China is going to make sure that happens. It's a national security interest for them. DeepSeek was the first shot across the bow for that but it won't end with them. There are other labs and there are non-Chinese actors too. The stratospheric valuations depend on there being that moat; and

2. Nobody seems to be considering what the next generation of AI hardware is going to do with current hyperscalar investments. We're about to go through this with the B100/200 move to R100/200 but a lot of the investments are probably slated for that next-gen. But what about 3 years from now when the hypothetical X100/200 comes out and doubles FLOPS and halves performance-per-watt. What will that do to existing investments? Some people are delusional and think that they'll get 10 years out of GPUs when 10 year old GPUs (eg V100) are sold for scrap and 5 year old GPUs (A100) cannot run DeepSeek v4 Pro. And people think the A100 is going to get another 5 years of use? No; and

3. Local LLMs are coming for remote usage. You can buy a 5090 PC for less than $5000 currently but you're limited to 32GB of VRAM, which will comfortably run 31B models but nothing really larger. Go to $12-13k to upgrade to an RTX 8000 Pro and you have 96GB of VRAM, which will run larger models (but certainly not, say, DS v4 Pro or even Flash). You have shared video memory products rapidly coming from NVidia's aggressive market segmentation. Things like Strix Halo and DGX Spark have severe limits on memory bandwidth (<300GB/s compared to 1.8TB/s for a 5090/6000 Pro and 3TB/s+ for server grade HBM3e/4 based GPUs). Macs could be real interesting in this space butr they lack the raw FLOPS with the M5 generation.

But what will this local hardware look like in 2-3 years? I think people will be shocked at how much better it will be with the Apple M7 Pro/Max generation (2028 expected) and the RTX 6000 cards at that time although I fully expect NVidia consumer GPUs to still top out at 32GB of VRAM to maintain that segmentation. And I look forward to what the next generation of the AMD Ryzen AI Halo platform will look like if they really try.

All of this adds up to these three companies needing to cash out before the music stops (IMHO).

reply
zuzululu
3 hours ago
[-]
i would use glm 5.2 if the servers weren't in china

i mean i guess my employers wouldn't know the difference

but i'd like to play it safe and keep everything in america

reply
tarpitt
3 hours ago
[-]
its open-weight. I think you can find a host for GLM-5.2 in the USA
reply
redrix
3 hours ago
[-]
The fact that these Chinese models are getting close to “Opus-grade” despite costing 6x-8x less is huge.

As the token bills start to come in, those economics will be harder to ignore (regardless of the origin of the LLM); especially as there will be many CIOs sweating over their quick and costly AI initiatives showing little ROI.

My hope is that the EU also steps up their own competition in the frontier model space so that it’s not just China v USA.

reply
AgentMasterRace
1 hour ago
[-]
they're not near opus at all, anyone using the models in a real working environment will tell you the same thing. on paper they have impressive benchmarks, but that's not realistic to actual use.
reply