The Pulse — March 16, 2026
The signals that entered our radar, organized with sources and context to understand what changed.
The audio script is ready; narration will appear after voice generation finishes.
NVIDIA Nemotron 3 Super (120B total / 12B active) — hybrid MoE + Mamba layers
WHY IT ENTERED THE RADAROpen original source ↗NVIDIA is explicitly targeting agentic workloads: long context (1M tokens), throughput (multi-token prediction), and cheaper “thinking” via MoE (12B active) + Mamba efficiency. This is a blueprint for where model architectures are going when the product is agents, not chat.
Gemini Embedding 2 — unified multimodal embeddings (text+image+video+audio+PDF)
WHY IT ENTERED THE RADAROpen original source ↗Multimodal embeddings in a single space means retrieval pipelines get simpler (one index, many modalities). Also: Matryoshka Representation Learning lets you choose 3072/1536/768 dims depending on cost/quality.
Anthropic: “Detecting and preventing distillation attacks” (DeepSeek/Moonshot/MiniMax)
WHY IT ENTERED THE RADAROpen original source ↗This is an unusually detailed public writeup of industrial-scale capability extraction (16M exchanges, ~24k fraudulent accounts). It frames distillation as both legitimate and weaponizable (safeguards stripping, export-control implications).
Claude Code “Code Review” — multi-agent PR review (research preview)
WHY IT ENTERED THE RADAROpen original source ↗Anthropic is productizing the team-of-agents pattern for real dev workflows: parallel bug hunting + verification + severity ranking. They disclose internal impact (substantive comments up from 16% → 54%) and rough cost ($15–$25 / PR).
Chrome DevTools MCP: coding agents can attach to your existing browser session
WHY IT ENTERED THE RADAROpen original source ↗This closes a practical gap for agents: debugging issues behind login/session state. The design is also notable: explicit user permission prompts + “controlled by automated software” banner, i.e., product-level guardrails for agent control.
LLM Architecture Gallery (updated Mar 15, 2026) — quick visual comparisons
WHY IT ENTERED THE RADAROpen original source ↗Great for fast, visual “what’s actually different?” comparisons across Dense vs MoE vs hybrid (MLA, Mamba mixes, multi-token prediction, sparse attention). Also includes Nemotron 3 Super’s architecture entry.
GraphZero — zero-copy (mmap) engine to train GNNs without loading 50GB into RAM
WHY IT ENTERED THE RADAROpen original source ↗Not LLMs, but very relevant for “AI dev upstream”: systems-level tricks (mmap + custom binary formats + OpenMP sampling) to make giant datasets usable on consumer hardware. This is the kind of infra idea that often becomes tomorrow’s default.
“How I write software with LLMs” — practical workflow: architect + dev + separate reviewers
WHY IT ENTERED THE RADAROpen original source ↗This is a concrete, opinionated workflow writeup that matches what’s emerging across top builders: strong planning agent + execution agent(s) + different-model reviewers to avoid “model agrees with itself.” Good content for audience education.