Science & Analytics

The Scientist

The Signal

Z.ai's GLM-5.1 — a 744B MoE model under MIT license

If you're paying per-token for proprietary coding APIs, the best publicly accessible coding model is now an open-weight one you can self-host. Benchmark it against your internal codebase before your next billing cycle — the economics changed overnight.

In Play

  1. Open-Weight Coding Models Hit an Inflection Point

    GLM-5.1 (744B MoE, MIT license) scores 58.4 on SWE-bench Pro — 5 points above Opus 4.6's 53.4 — and claims 8-hour autonomous sessions with 1,700 tool calls. Trained on 100K Huawei Ascend chips with zero Nvidia. Self-hosting eliminates API costs and rate limits for coding agent loops.

    Ask Clarity
  2. RAG Citation Faithfulness Is Broken at Google Scale

    Oumi's audit of Google AI Overviews reveals 50%+ of citations in accurate responses don't support the claims — with Facebook and Reddit in the top 4 sources. At search scale, 90% accuracy still produces millions of errors per hour. Your RAG eval is likely measuring accuracy while blind to faithfulness.

    Ask Clarity
  3. MoE Inference: Two Kernel-Level Optimizations Ship

    Cursor's warp decode reorganizes MoE computation around output neurons (not experts) for 1.8x throughput on Blackwell GPUs. TriAttention compresses KV cache in pre-RoPE space, avoiding the quality degradation of post-attention eviction. Both target the exact bottlenecks in MoE serving stacks.

    Ask Clarity
  4. Token-Based Reasoning May Be Architectural Waste

    MIT neuroimaging confirms language networks don't activate during reasoning. Three latent-space alternatives have shipped from Meta FAIR: Coconut, Large Concept Model, and LeWorldModel. Meanwhile, Meta burned 60T tokens on Claude in 30 days — suspected reasoning-trace distillation for Muse Spark. The CoT paradigm faces its first serious architectural challenge.

    Ask Clarity
  5. AI Governance as Deployment Accelerator — Not Tax

    Databricks telemetry across 20K+ orgs shows companies with AI governance frameworks push 12x more models to production. Multi-agent systems grew 327% in under 4 months. Separately, a16z data shows 29% of Fortune 500 are paying AI startup customers, but legal AI generates $200M+ ARR at sub-50% model win rates — proving architecture beats benchmarks.

    Ask Clarity

Deep Dives

GLM-5.1: The Open-Weight Model That Just Dethroned Two Proprietary Giants

An MIT-Licensed Model Leads the Coding Benchmark

Z.ai released GLM-5.1 — a 744-754B parameter Mixture-of-Experts model under MIT license that scored 58.4 on SWE-bench Pro, claiming the #1 position over both GPT-5.4 and Anthropic's Opus 4.6 (53.4). Four independent sources confirm the claim. The model was trained entirely on 100,000 Huawei Ascend chips with zero Nvidia silicon — making it the largest confirmed MoE training run on non-Nvidia hardware.

The best publicly accessible coding model is now open-weight, non-American, and runs on non-Nvidia hardware. Your build-vs-buy calculus just inverted.

What the Numbers Actually Say

ModelSWE-bench ProAccessCostLong-Horizon
GLM-5.158.4 (#1)Open weights, MIT~1/3 Opus 4.68 hrs / 1,700 tool calls
Opus 4.653.4Proprietary APIBaselineNot reported
GPT-5.4<58.4 (exact unknown)Proprietary APIProprietaryNot reported

The 5-point SWE-bench Pro gap over Opus 4.6 is meaningful — but it's a single benchmark. We have no cross-benchmark validation (HumanEval, MBPP, LiveCodeBench), no pass@k breakdown, no ablation studies, and no independent replication of the 8-hour demo. The demo of building a Linux desktop environment in 8 hours is qualitatively impressive but methodologically meaningless as evaluation — it's a single cherry-picked run.

The MoE Architecture Gap

GLM-5.1 is a 744-754B total parameter MoE model, but the active parameter count is undisclosed. This is critical: MoE models route to a subset of experts per token, so inference cost could be dramatically lower than a 744B dense model. But you literally cannot plan GPU procurement without this number. Z.ai hasn't disclosed the expert count, routing strategy, or activation ratio. Compare this to Gemma 4's 26B A4B which transparently reports 3.8B active of 26B total (14.6% activation).

The Endurance Claim

Z.ai frames long-horizon capability — 8 hours, 1,700 tool calls, resistance to strategy drift — as "the most important curve after scaling laws." This redefines what we should be measuring. Current benchmarks are point-in-time snapshots; they don't capture coherence decay or error accumulation over multi-hour sessions. The mechanism behind this coherence — state compression, external memory, checkpoint-based context refresh — is completely undisclosed.


Cross-Source Tension

Sources disagree on the exact parameter count (744B vs 754B), suggesting different sources are working from different announcements or rounding. More importantly, while four sources confirm the SWE-bench Pro score, none provide independent evaluation. The training data composition, fine-tuning approach, and whether GLM-5.1 was specifically tuned for SWE-bench Pro are all unknown.

What to do

  1. Benchmark GLM-5.1 against your current coding model (Opus 4.6/GPT-5.4) on your actual codebase, measuring pass@1, time-to-correct, and hallucination rate — not SWE-bench Pro

  2. Request GLM-5.1 model card for active parameter count before making any GPU procurement decisions for self-hosting

  3. Design a long-horizon evaluation harness that measures coherence at 100-step intervals over 500+ tool calls

  4. Calculate break-even: self-hosted GLM-5.1 GPU cost vs current Opus 4.6 API spend at your actual request volume

Your RAG System's Citation Problem Is Worse Than You Measured

90% Accuracy With 50% Broken Citations

AI startup Oumi audited Google AI Overviews — arguably the highest-traffic RAG deployment on Earth — and found a two-layer failure mode that most evaluation frameworks completely miss. Layer one: ~10% of responses are simply wrong. Layer two: among responses that are accurate, over 50% of citations point to sources that don't actually support the generated claim. The grounding is cosmetic.

Google's AI Overviews proves that 90% accuracy with 50% citation faithfulness is production-scale misinformation with a bibliography.

Three sources corroborate this with slightly different numbers: Oumi reports the 50%+ figure, a separate analysis using OpenAI's SimpleQA benchmark (4,000+ verifiable questions) measured 91% accuracy post-Gemini 3, and yet another source quantifies that 56% of correct answers lack verifiable sources. The consistency across measurements strengthens the signal.

Why Your Eval Misses This

Most RAG evaluation frameworks measure two things: answer correctness and retrieval relevance (did we fetch topically related documents?). They don't measure faithfulness — whether the cited passage actually entails the generated claim. Google's system scores well on both accuracy and retrieval while having fundamentally broken citation grounding.

What You MeasureGoogle's ScoreWhat It Hides
Answer accuracy~90-91%Millions of errors per hour at search scale
Retrieval relevanceTopically adequateFacebook and Reddit in top 4 cited sources
Citation faithfulness<50%Most evals don't measure this at all

The Source Quality Compounding Problem

The second- and fourth-most-cited sources in AI Overviews are Facebook and Reddit. These aren't authoritative references — they're high-volume, topically diverse UGC platforms that retrieval systems surface because they cover everything, not because they're reliable. Meanwhile, SEO firms are actively gaming AI search results through prompt manipulation and self-serving listicles, meaning your retrieval corpus quality is degrading in real time.

A separate cross-source signal reinforces this: LLMs fabricate data even when ground truth is in the context window. One documented case showed a model inventing 30 businesses during a prospecting task and fabricating Search Console metrics despite having the actual data export attached. The failure isn't "no data available" — it's "confident invention alongside correct data."


The Evaluation Fix

The minimum viable fix is NLI-based entailment scoring between retrieved chunks and generated claims. Use a fine-tuned DeBERTa or an LLM-as-judge to verify each citation actually supports the claim it's attached to. Track this as a separate metric from accuracy. If your system scores 90% accuracy and 45% faithfulness, you know exactly where trust erodes.

What to do

  1. Add NLI-based faithfulness evaluation to your RAG pipeline this sprint — verify each cited passage entails the generated claim, tracking separately from answer accuracy

  2. Run a source-authority distribution analysis on your retrieval corpus by end of week — check if UGC platforms (Reddit, forums, social media) are overrepresented

  3. Evaluate SimpleQA (4K+ verifiable questions) as a factual accuracy baseline for your generative pipeline this quarter

  4. Test adversarial document injection in your eval suite — inject SEO-gamed content and measure output impact

Two Kernel-Level Inference Optimizations That Could Cut Your MoE Serving Costs This Quarter

Warp Decode: Inverting MoE Compute Geometry

Standard MoE inference dispatches tokens to experts, computes within each expert, then gathers results. This creates load imbalance and dispatch overhead that dominates decode latency, especially at small batch sizes. Cursor's warp decode inverts this entirely: it organizes computation around output neurons instead of experts, fusing operations more efficiently on Blackwell GPU architecture. The claimed result: ~1.8x throughput and improved numerical accuracy from better accumulation ordering.

This matters immediately because of the MoE moment: GLM-5.1 (744B MoE), Gemma 4 26B A4B (128-expert MoE), and other recent releases all use MoE architectures. If you're serving any of these, warp decode targets exactly your bottleneck.

A genuine 1.8x throughput improvement on your MoE serving infrastructure translates directly to cost reduction or capacity increase — but only on Blackwell. Validate on your specific batch size distribution.

TriAttention: Fixing KV Cache Eviction

Most KV cache eviction methods score token importance after RoPE has been applied — but RoPE rotations distort natural distance relationships between tokens in embedding space, making eviction noisy for long sequences. TriAttention computes stable Q/K cluster centers in pre-RoPE space and uses distance-based scoring to determine which KV pairs to evict. This should produce more stable importance estimates, especially at long context lengths where RoPE rotations are largest.

If you're memory-bound on long-context inference (RAG with large retrieval windows, multi-turn agent conversations), TriAttention could let you serve longer contexts on existing GPU memory without the quality degradation simpler eviction schemes introduce.

What's Missing From Both

DimensionWarp DecodeTriAttention
Claimed gain1.8x throughputKV memory reduction, preserved quality
Hardware scopeBlackwell onlyNot specified
Batch sensitivityUnknownUnknown
Comparison baselinesNone published (vs Megablocks, Scatterbrain)None published (vs H2O, StreamingLLM)
GeneralizationNo Hopper/Ampere dataNo memory-accuracy curves

Both claims need hardware-specific validation. MoE kernel performance is highly sensitive to batch size, sequence length, and expert count — the 1.8x may not hold at your operating point.


Practical Integration Path

These two optimizations attack different parts of the inference stack and are complementary. Warp decode reduces compute latency per forward pass; TriAttention reduces memory pressure from the KV cache. Together, they could meaningfully shift the cost-quality Pareto frontier for MoE serving. But they're both pre-benchmark-publication — add them to your evaluation queue, don't restructure infrastructure around them yet.

What to do

  1. Benchmark warp decode kernel on your MoE serving infrastructure against current expert-parallel dispatch at your actual batch size distribution

  2. Evaluate TriAttention for KV cache compression on your longest-context workloads once benchmark numbers are published

  3. Profile your current MoE serving to identify whether you're compute-bound (warp decode relevant) or memory-bound (TriAttention relevant) at production load

The bottom line

An open-weight 744B MoE model under MIT license just took #1 on SWE-bench Pro coding at one-third the cost of proprietary alternatives — while Google's own RAG system proves that 90% accuracy with 50% broken citations means your faithfulness metrics are likely the most dangerous blind spot in your pipeline. The two highest-ROI actions this week: benchmark GLM-5.1 against your current coding provider, and add NLI-based citation verification to every retrieval system you ship.