Back to News
RSS feedadlrocha.substack.com

Flash Models and the Case for an AI Independence Day

Summary

The article examines the release of two smaller, sparse versions of frontier model families and argues that they mark a step toward practical local AI. OpenRouter’s anonymous ox-alpha became a widely used free model with a million-token context window before Z.ai revealed it as GLM-5.3-Flash. Researchers had already linked it to the GLM family by measuring token-count changes from probe strings sent through an API: GLM-5’s vocabulary matched 95 tests with zero errors, while another investigation found an 11-of-11 match. The resulting modelprint tool uses similar probes against OpenAI-compatible endpoints, although tokenizer fingerprints identify a vocabulary rather than necessarily identifying the model provider or model itself. The article then explains Flash models as sparse Mixture-of-Experts systems that retain a large total parameter count while activating only a small slice for each token, reducing operations, memory traffic, and inference cost. GLM5.3-Flash is described as a 320B-parameter model with 18B active parameters; Qwen3.8-Flash-Next has 125B parameters, 6B active parameters, and a 51B embedding table, and previews the Qwen4 architecture. Both use notebook-like and retrievable attention patterns to reduce KV-cache costs, but GLM uses sparse retrieval layers while Qwen indexes text in blocks. Both also widen the residual stream into four lanes, with GLM using constrained mHC mixing and Qwen using gated independent lanes. Qwen additionally contextualizes embeddings with preceding tokens. The author argues that these changes improve efficiency rather than directly making models smarter, and could let capable models run on systems such as a Spark or a sufficiently provisioned Mac. Local use is presented as valuable for privacy, cost, and technological sovereignty, though the author notes that personal testing of the new models had not yet been completed.