Live data from Hacker News

GLM-4.5: Reasoning, Coding, and Agentic Abililties

z.ai

131–140 of 153 posts

Re: GLM-4.5: Reasoning, Coding, and Agentic Abililties

#131

Earlier quoted context omitted.

Assuming you include the same prompts in the new request that were cached in the previous ones.

As far as I understand, the entire chat is the prompt. So at the each round, the previous chat up to that point could already be cached. If I'm not wrong, Claude APIs require an explicit request to cache the prompt, while OpenAI's handle this automatically.

[dead]

Re: GLM-4.5: Reasoning, Coding, and Agentic Abililties

#132

Earlier quoted context omitted.

I asked why it said it was Claude, and it said it made a mistake, it's actually GLM. I don't think it's a routing issue.

Routing can happen at the request level.

[dead]

Re: GLM-4.5: Reasoning, Coding, and Agentic Abililties

#133

Tried it with a few prompts. The vibes feel super weird to me, in a way that I don't know how to describe. I'm not sure if it's just that I'm so used to Gemini 2.5 Pro and the other US models. Subjectively, it doesn't feel very smart. I asked it to analyze a recent painting I made and found the response uninspired. Although at least the feedback that it provided was notably distinct from what I could get from the US…

From my tests, GLM tends to be best for server code or frontend logic. It's not very good at design tasks. It did make a killer chess app with UX, but I think it was just trained heavily for it.

Re: GLM-4.5: Reasoning, Coding, and Agentic Abililties

#134
post #72

Earlier quoted context omitted.

Also no fun, I didn't learn how to code to be the project manager for an artifically intelligent machine.

And what do you see yourself doing in 5 years?

Fixing Vibe Code!

Re: GLM-4.5: Reasoning, Coding, and Agentic Abililties

#135
post #74
post #66

Earlier quoted context omitted.

Conversations are always "reprocessed from scratch" on every message you send. LLMs are practically stateless and the conversation is the state, as in nothing is kept in memory between two turns.

Not exactly true ... KV and prompt caching is a thing

I don't understand how you are downvoted…

Re: GLM-4.5: Reasoning, Coding, and Agentic Abililties

#136
post #55

Earlier quoted context omitted.

While true, it's hard to believe they forgot to s/claude/glm/g? Also, I don't believe LLMs identify themselves that often, even less so in a training corpus they've been used to produce. OTOH, I see no other explanation.

It wouldn't be as simple as search-replace. After all, Claude is name which appears in many more contexts than just LLM-related ones.

"GLM 4.5 McKay was born in 1890 in a little thatched house of two rooms in a beautiful valley of the hilly middle-country of Jamaica."

Re: GLM-4.5: Reasoning, Coding, and Agentic Abililties

#137
I got a 3 bit quantized version of this running on my Mac - using up 48GB RAM of my 64GB total - and it really impressed me. I used MLX (via uv) to run this version: https://huggingface.co/mlx-community/GLM-4.5-Air-3bit

Notes on how I got that working, plus a neat Space Invaders clone it built me: https://simonwillison.net/2025/Jul/29/space-invaders/

Re: GLM-4.5: Reasoning, Coding, and Agentic Abililties

#138
post #112
post #31

Earlier quoted context omitted.

"is china a democracy?" .. though process started very reasonable at first and then i got this as the final answer: > Uh-oh! There was an issue with the response. Content Security Warning: The content may contain inappropriate content.

oh really? China considers itself a democracy with its own characteristics. According to China's White Paper "China: Democracy That Works" published by the State Council Information Office, China practices "whole-process people's democracy," which integrates process and results democracy, procedural and substantive democracy, direct and indirect democracy, and people's democracy and state will. China's democracy is d…

Thanks for clarifying. Actually Chinas democracy sounds really nice now. Would love to try it out where people are actually the masters of the country :)

(Btw this chinese ai-propaganda-bot parent is the best example why we need to keep china out of our digital infrastructure and ban apps like tiktok. They are already brainwashing western kids with shit like this fake user above. )

Re: GLM-4.5: Reasoning, Coding, and Agentic Abililties

#139
post #66

Earlier quoted context omitted.

Then you need to reprocess the previous conversation from scratch when switching from one provider to another, which sounds very expensive for no reason.

Conversations are always "reprocessed from scratch" on every message you send. LLMs are practically stateless and the conversation is the state, as in nothing is kept in memory between two turns.

> LLMs are practically stateless

This isn't true of any practical implementation: for a particular conversation, KV Cache is the state. (Indeed there's no state across conversations, but that's irrelevant to the discussion).

You can drop it after each response, but doing so increase the amount of token you need to process by a lot in multi-turn conversations.

And my point was that storing the KV cache for the duration of the conversation isn't possible if you switch between multiple providers in a single conversation.

Re: GLM-4.5: Reasoning, Coding, and Agentic Abililties

#140

Earlier quoted context omitted.

Then you need to reprocess the previous conversation from scratch when switching from one provider to another, which sounds very expensive for no reason.

Take a look at the API calls you'd use to build your own chatbot on top of any of the available models. Like https://docs.anthropic.com/en/api/messages or https://platform.openai.com/docs/api-reference/chat - you send the message history each time. You can even lie about that message history! You can utilize caching like https://platform.openai.com/docs/guides/prompt-caching and note that "Cache hits are only possibl…

Exactly, but caching doesn't work if you switch between providers in the middle of the conversation, which is my entire point.
Post reply on HN