Hugging Face Transformers v5.16.1 Adds Support for GLM-5.3-Flash, a 320B-Parameter Multimodal MoE Model
Hugging Face's transformers v5.16.1 release adds support for GLM-5.3-Flash, a 320B total-parameter (18B active) multimodal mixture-of-experts model. Zhipu AI claims it outperforms GLM-5.2 while approaching Claude Opus 4.8 on coding and agentic benchmarks at one-tenth the cost.
What happened
Hugging Face shipped transformers v5.16.1 on August 26, adding native library support for GLM-5.3-Flash, a new multimodal mixture-of-experts (MoE) model. The release is described by maintainers as "special" because it centers almost entirely on integrating this one model, alongside a handful of small patch fixes.
The model: GLM-5.3-Flash
GLM-5.3-Flash is described as the first natively multimodal model in the GLM-5 series. According to the release notes, it has 320 billion total parameters with only 18 billion active parameters per forward pass, consistent with a sparse MoE design.
Key architectural claims from the release:
- A hybrid attention architecture combining sparse and linear attention, intended to cut long-context serving costs while preserving long-context accuracy.
- Manifold-Constrained Hyper-Connections (mHC), a new mechanism the team says improves scaling efficiency.
- A newly trained base model, built from a 30-trillion-token multimodal pre-training corpus, rather than a fine-tune of a prior GLM checkpoint.
The release notes claim GLM-5.3-Flash "outperforms GLM-5.2 across benchmarks and real-world workloads at one-tenth the price," and that it approaches Claude Opus 4.8 on coding and agentic benchmarks. No specific benchmark scores, context window size, or API pricing were disclosed in the release notes — these figures should be treated as unverified vendor claims until independently confirmed or published with numbers.
What shipped in transformers v5.16.1
Beyond the GLM-5.3-Flash integration (PR #48342, contributed by @Dovis01), the release includes two small fixes:
- Restored backward compatibility for the tensor-parallel (TP) API (@ArthurZucker).
- Fixed a kernel commit and repository path issue for ESMFold2, pinning a Hugging Face kernel for security reasons (@Rocketknight1).
The full diff is available in the v5.16.0...v5.16.1 comparison on GitHub. Contributors credited for this release are Rocketknight1, ArthurZucker, and Dovis01.
What this means
This release is primarily a plumbing update to the transformers library, but it's the vehicle through which GLM-5.3-Flash becomes usable via the standard Hugging Face stack — from_pretrained, pipelines, and downstream tooling that depends on the library. The architectural choices (sparse+linear hybrid attention, mHC, a fresh 30T-token multimodal corpus) suggest Zhipu AI is optimizing GLM-5.3-Flash for cheaper long-context inference rather than chasing raw parameter count. The comparison to Claude Opus 4.8 on coding/agentic tasks is a strong claim with no published benchmark table attached in this release, so treat it as a company assertion pending third-party evaluation. For engineers, the practical takeaway is narrower: if you rely on transformers for model serving, updating to v5.16.1 is required before you can load GLM-5.3-Flash weights or benefit from the TP and ESMFold2 fixes.
Related Articles
Hugging Face Launches 'ML Intern,' a Chat-Based Agent That Runs ML Experiments Autonomously
Hugging Face has launched ML Intern, a chatbot-based AI assistant that searches the Hub, GitHub, and the web to find models and datasets, then trains and monitors ML experiments autonomously within a user-approved budget. One demo run reportedly took six hours and cost under $0.50.
OpenAI Python SDK v3.13.0 Adds Support for New Agents API
OpenAI shipped v3.13.0 of its openai-python library, adding support for a new Agents API. The release is a client-library update, not a new model.
OpenAI Python SDK v3.12.0 Adds Live API Support, Fixes Async Streaming Bugs
OpenAI shipped v3.12.0 of its Python SDK on September 10, 2026, adding client support for a new Live API and fixing three bugs related to async streaming and type annotations. The release contains no new model weights.
OpenAI Python SDK v3.10.0 Adds Support for GPT Image 2.5 and API Key Expiration Fields
OpenAI released v3.10.0 of its official Python SDK, adding support for GPT Image 2.5 models and image generation options, plus new expiration fields for service-account API keys. The release does not include pricing, benchmark, or model card details.
Comments
Loading...