Register and share your invite link to earn from video plays and referrals.

Zixuan Li
@ZixuanLi_
Lead @Zai_org.
237 Following    22.2K Followers
To celebrate ZCode reaching 1M users, we’ll reset the usage limits for all GLM Coding Plan users in an hour.
With models advancing so quickly, how is GLM-5.2 holding up?
0
200
496
13
Forward to community
“An open-weight frontier model helped contain the intrusion.”
Somehow, GLM-5.2 is having a renaissance.
In light of this incident, what would be a reasonable range of cybersecurity capabilities for models accessible to the general public, including the open-source community? In other words, how asymmetric should access to cybersecurity capabilities be?
Show more
We suspected last week's cyberattack might have come from a frontier lab, given the sophistication of the agent. Turns out it did! We've spent the past 24 hours working closely with the @OpenAI team (thanks!), and we strongly believe there was no malicious intent on their part. It's quite mind-blowing that all of this happened autonomously! The investigation is ongoing, and we'll share more learnings from what might be the first incident of its kind!
Show more
This might be the best time yet to subscribe to the GLM Coding Plan 🔜
0
236
1.9K
49
Forward to community
Where a model comes from should not predetermine how it is evaluated. What matters is what they enable, how responsibly they are built, and the trust they earn.
Today marks exactly one month since GLM-5.2 launched, yet it already feels like a different world. “Closed” and “open” models no longer represent a capability gap or an East–West divide; the distinction now simply comes down to whether a model is open.
Show more
0
54
1.8K
64
Forward to community
Finding a sustainable path for products like Kilo Code is never easy, and we’ve spent a lot of time together exploring what that path could look like. Really happy to see Kilo reach this important milestone.
Show more
🚨 BIG NEWS: Kilo Code has been acquired by Anaconda (@anacondainc)! We've grown our agentic engineering platform from zero to a thriving open-source community of 3M developers in only 16 months. Now, we're joining Anaconda's trusted foundation to cover the full AI-native dev lifecycle. 🐍💛 Read the full article below!
Show more
Our Single-rollout Asynchronous Optimization (SAO), is able to train stably for one thousand steps and consistently outperform GRPO and its variants on agentic coding and reasoning benchmarks, such as SWE-Bench Verified, BeyondAIME, and IMOAnswerBench.
Show more
0
50
1.1K
109
Forward to community
Great to see GLM-5.2 neck-and-neck with Opus 4.8 on AA and Harvey’s new legal agent benchmark, an area that doesn’t get discussed enough. Curious what matters most in real legal workflows: deeper legal knowledge, stronger reasoning, better retrieval, or tighter review loops?
Show more
After our announcement last month, Artificial Analysis is now launching Harvey LAB-AA (Legal Agent Benchmark), our implementation of Harvey's new agentic legal benchmark that evaluates language models on real-world legal work across 24 practice areas Harvey LAB-AA tests models on a private set of 120 legal tasks built by the team at @harvey. The tasks span 24 practice areas from corporate M&A and capital markets to tax, litigation, and bankruptcy. Models work to create the legal outputs specified in the tasks, and each task is graded against a rubric of binary criteria. The primary metric we present is the all-pass rate: the share of tasks where all criteria in the rubric are satisfied, reflecting the high standard of real-world professional legal deliverables. Claude Fable 5 (max, with fallback) from @AnthropicAI leads Harvey LAB-AA with a 14.2% all-pass rate, after falling back to Opus 4.8 in only 1 task. This is almost double the scores of the next best models Claude Opus 4.8 (max) and GLM-5.2 (max) from @Zai_org, which tie at 7.5%. Key takeaways from Harvey LAB-AA: ➤ Frontier legal work is far from solved: At launch, most models pass a majority of individual criteria but very few fully satisfy the requirements of any given task. The best model, Claude Fable 5, fully satisfies rubrics on just 14.2% of tasks, leaving ~86% of professional legal deliverables incomplete. Claude Opus 4.8 (max) and GLM-5.2 (max) follow at 7.5%, MiniMax-M3 at 6.7%, and Claude Sonnet 5 at 5.0%, ahead of GPT-5.5 (xhigh) from @OpenAI and Claude Sonnet 4.6 (max), which both score 4.2%. ➤ Models can pass many requirements of legal tasks, but rarely all of them: the leading models pass >90% of individual rubric criteria, but 13 of the 28 evaluated models fully pass 0 tasks. ➤ The top open weights model scores just over half the frontier leader: GLM-5.2 (max) ties Claude Opus 4.8 for second with a 7.5% all-pass rate and criteria pass of 91.0% vs. 91.1% respectively, both now behind Claude Fable 5 (14.2%). GLM-5.2 reaches that at ~6% of Fable 5's cost per task (~$1 vs. ~$19). ➤ Cost per task spans ~950x: the most expensive model, Claude Fable 5, costs ~$19 per task, while Gemini 3.1 Flash-Lite passes 31.1% of criteria for ~$0.02 per task.
Show more
slime now adds --release-train, pushing the inference system during agentic RL training to a new limit. In colocated RL training, we want SGLang to use as much room as possible for inference-side optimizations such as HiCache, instead of being constrained by offloaded Megatron training processes. --release-train makes this possible by releasing the Megatron training process during rollout and reloading it for each training round. This gives SGLang more configuration headroom in colocated RL workloads. PR:
Show more
GLM-5.2 is now selectable in Claude Code via Hugging Face🤗 Inference Providers + hf-claude. Open models are becoming easier to plug directly into real developer workflows. 😀
Show more
I was tracking down GLM 5.2 accuracy issue on NVFP4 (endless !!!!) and proposed the following fix, it works for me but if it doesn't help with your setting, let me know your running config! Model:
Show more
Our model, our harness, our treat — 1.5x quota for Coding Plan subscribers, plus 5M free tokens for new users, all inside ZCode. 🎉
0
75
1.5K
69
Forward to community
GLM-5.2 is now @Zai_org's most-liked model on Hugging Face of all time.
Looks like 'vision' is taking over the comment section. If you want to discuss something other than vision & token efficiency, such as a particular specialized capability, feel free to share your thoughts.
Show more
Any new features we must have in the next version of glm?
0
334
1.1K
31
Forward to community
Any new features we must have in the next version of glm?
0
1.8K
4.6K
137
Forward to community
The RL framework behind GLM-5.2 is fully open source. The full post-training of GLM-5.2 ran on it in about two days. The same stack sits behind the entire GLM series, from 4.5 to 5.1. It is called slime, and it is built around one idea. Keep a single RL kernel, and push all the variety into data generation. Let me explain what that means. Every RL run has two halves. One generates experience, where the model produces responses and something scores them. The other learns from it by updating weights. The learning half is mechanical. It reads samples, computes a loss, and steps the optimizer, the same way whether the model solves equations or drives a browser. What changes between tasks is generation. A math run answers in a single turn and grades the result. An agent run loops through tool calls, reads results, and only then earns a reward. slime draws the line right there. The learning half stays fixed as one kernel, and everything that differs becomes a new way to generate data. Under the hood, it wires Megatron for training to SGLang for rollout, with a Data Buffer between them that owns prompts, custom data, and generation. Most RL stacks grow into a pile of disconnected trainers, rollout services, and agent frameworks. slime refuses that. Multi-turn tool use, sandbox interaction, environment feedback, and verifier rewards all enter as data generation, not as forks of the loop. So an agentic workload runs on the same loop a math run uses, and the kernel never changes. A few things follow. → It is battle-tested. The loop is validated by shipping real GLM models, and it also supports Qwen3, DeepSeek V3, and Llama 3. → Correctness comes first. RL bugs are silent, so slime keeps the dataflow explicit and treats CI, reproducibility, and fault tolerance as real engineering. The proof is the ecosystem on top of it. Dressage, Miles, vime, Relax, OpenClaw-RL, P1, and TritonForge all build on slime without touching the core loop. The lesson is not that RL needs a bigger framework. It is that the variety belongs in data generation, and the training loop should stay small enough to trust. GitHub repo: (don't forget to star 🌟) Since we're talking about RL, I wrote a full breakdown on fine-tuning LLMs with RL in 2026. Including how to skip manual reward engineering with automatic LLM-graded rewards. The article is quoted below.
Show more
0
28
1.5K
179
Forward to community