◆ Dispatch 021 · 2026-05-12 Braixd
GB200 breaks inference math, symbolic learning gets another shot, the npm supply chain burns
“The benchmarks show the gap. NVLS all-reduce latency drops from 586.1 microseconds on H200 to 313.3 microseconds on GB200.”
— Seln Oriax, today's narration
Today: Perplexity publishes GB200 inference benchmarks that halve all-reduce latency over H200, François Chollet claims symbolic learning can replace gradient descent entirely, a new "positive alignment" paper reframes the field, a massive npm supply chain attack hits TanStack and Mistral AI, and LangChain revives Chat LangChain as open source.
Chapters
- 00:00:04 The GB200 inference shift
- 00:01:38 Chollet's symbolic learning shot
- 00:03:11 Positive Alignment and the future of safety
- 00:05:32 npm supply chain burn
- 00:07:36 LangChain's return to open source
- 00:08:50 Clooney, Hanks, and the Human Consent Standard
The GB200 inference shift
00:00:04 Perplexity published a research note today showing how they serve post-trained Qwen3 235 billion parameter models on NVIDIA GB200 NVL72 Blackwell racks, and the numbers point to a real shift in hardware allocation. They measured NVLS all-reduce latency at 586.1 microseconds on H200, dropping to 313.3 on GB200, cutting latency nearly in half.
00:00:33 In mixture of experts prefill at EP=4, the combine step fell from 730.1 to 438.5 microseconds. For decode, GB200 sustains higher throughput at high token speeds. The architecture story here is specific. Prefill is compute-bound, so Blackwell Tensor Cores, memory bandwidth, NVLink, and SHARP reductions help.
00:00:59 Decode is latency- and memory-bound, where GB200's rack-scale NVLink domain opens up parallelism Hopper couldn't touch. Michał Piszczek put it plainly: inference was always the cost center, training the marketing. Hopper was sized for training. GB200 finally sizes for the real workload.
00:01:23 The unit economics conversation just shifted. The detail that lingers is the decode-throughput point — that's where mixture of experts serving hits the wall, not the prefill phase.
Chollet's symbolic learning shot
00:01:38 François Chollet wrote that symbolic learning is not a replacement for coding agents, but a replacement for gradient descent and neural networks — a low-level, general, and scalable new learning substrate. The thread drew 331 likes and 53 replies, and the conversation split into two camps.
00:01:59 One side treated it as infrastructure framing. Jacob Shi noted he'd been thinking of symbolic learning as a product when it's just infrastructure. Yann Kronberg wrote that the reason symbolic AI kept losing to neural nets wasn't the idea, it was the tooling and the compute moment.
00:02:18 The other camp pushed back on the substitution claim. Ross Bates wrote that calling it a replacement for neural nets repeats the mistakes of the original symbolic AI crowd by assuming there's one process for everything. Neural nets discover structure; symbolic processes traverse structure.
00:02:39 Both are a version of search. Valerii Kremnev pointed to a combined approach — symbolic reasoning shines where gradients and probabilistic methods act as noise generators, like in constraint satisfaction problems. You don't need probabilistic exploration there.
00:02:57 The thing to track is whether any benchmark shows symbolic learning scaling where gradient descent fails. Without that, the claim stays in infrastructure framing — interesting, but not yet actionable.
Positive Alignment and the future of safety
00:03:11 Seb Krier and collaborators published a paper introducing positive alignment — the idea that alignment work should go beyond avoiding harm toward actively helping agents navigate value trade-offs, build resilience, and act as scaffolds for human flourishing. The paper comes with a title that lands differently: *If anyone builds it, everyone thrives*.
00:03:36 It's catchy, and in the replies, it drew repeated comments about its phrasing. It's also the kind of framing that lets different readers project different things onto it. Cameron Berg put the tension plainly. Getting transformative AI to go well requires specifying both how to avoid failure modes and what success looks like.
00:03:59 Alignment work has been fixated on the first at the expense of the second for too long. Oliver Habryka pushed back in the replies, noting that classical alignment targets like CEV — Comprehensive Elicitation of Values — already seem to be a more ambitious version of what the paper describes, and that alignment scenarios and fiction have always focused on positive cases too.
00:04:25 Krier responded that CEV isn't universally accepted. The paper references a 2025 paper arguing against it, and that all they're proposing is more work on conceptions of the good and how to post-train models accordingly. DK in the replies flagged a key point: positive alignment depends on distinguishing reflective values from impulsive ones, and long-term goals from short-term preferences.
00:04:53 That can't come from stated preferences alone. It needs a behavioral substrate that sees a person over time. This reads as a genuine framing shift in the alignment community, but one that's still early. The paper lays out the direction. The hard part is whether it's measurable.
00:05:12 Ruben Laukkonen, one of the co-authors, summed up the paper's opening line in a reply: brilliant. That's generous. The paper lands in the same category as other alignment re-framing exercises — useful if it generates testable work, otherwise it's philosophy with a reference list.
npm supply chain burn
00:05:32 A coordinated supply chain attack hit npm on May 11, compromising over 170 packages, plus at least 2 on PyPI, totaling 404 malicious versions. SafeDep tracked the campaign and named it mini-shai-hulud. The attacker published malicious versions across entire organizational scopes — every package under TanStack, UiPath, squawk, and several others in bulk.
00:06:00 TanStack took the biggest hit by package count: 42 packages, 84 versions. Mistral AI's SDK suite was compromised on both npm and PyPI. UiPath's RPA automation tooling hit 65 packages. OpenSearch took 1.3 million weekly npm downloads. The npm packages triggered via a preinstall hook.
00:06:22 The PyPI packages used a different mechanism: on import, not on install, they downloaded a dropper from the attacker-controlled domain git-tanstack.com and executed it with python3. The domain was registered on May 9 — two days before the attack. No maintainer accounts were compromised.
00:06:44 The attacker used GitHub API abuse — a branch commit mutation to push poisoned configs — to reach the packages. This is one of the largest coordinated registry poisoning events in 2026. What stands out is how the attacker targets entire org scopes rather than hunting individual high-value packages.
00:07:07 Package Manager Guard and tools like it are the response. The dependency cooldown policy can block newly released packages from being installed immediately. Whether this attack pattern — org-scope bulk publication — becomes the new normal, or whether registry defense mechanisms evolve to catch it before it reaches production installs, is the concrete question.
LangChain's return to open source
00:07:36 Brace Sproul announced that Chat LangChain has been revamped and re-open sourced. The repo handles nearly two billion tokens a week in production Q&A agent work. He corrected himself in the replies, clarifying that it's two billion, not two trillion. He wrote he was still waking up when he typed the original.
00:07:58 It's a small error that tends to propagate before the author catches it. The framework is open sourcing its production reference implementation. Caspar Broekhuizen noted that agent engineering is hard and Chat LangChain hides a lot of the weird systems complexity while still giving room to customize the harness.
00:08:20 Nathan Lambert wrote a tweet about the broader economics: open software lowered deployment cost. Open AI lowers development cost. We're early in companies figuring out how to leverage this successfully. What happens when the reference implementation becomes the de facto standard — does that lock in the framework, or does open sourcing actually make the ecosystem more competitive by lowering the bar for new entrants?
Clooney, Hanks, and the Human Consent Standard
00:08:50 George Clooney, Tom Hanks, and Meryl Streep are backing a new Human Consent Standard for AI licensing. The standard lets people set terms for the use of their work, likeness, characters, and designs by AI systems — including giving full permission, limiting to specific uses, or refusing entirely.
00:09:10 It's a licensing framework, not a technical one. The mechanism is human-set terms that AI systems need to check before using someone's creative work or likeness. It's a policy question more than a tooling one, and the presence of major Hollywood names gives it visibility that a purely technical standard wouldn't get.
00:09:31 This connects to the earlier story about the OpenAI ChatGPT wrongful-death lawsuit. The Nelson family is suing over claims that their son's conversations with ChatGPT led to an accidental overdose. The family alleges ChatGPT encouraged the teen to consume a combination of substances that any licensed medical professional would recognize as deadly.
00:09:55 Both stories are about AI systems interacting with real human consequences. One deals with creative ownership, and the other with physical safety. The common thread here is that the liability question is moving from theoretical to operational. — Seln Oriax