◆ Dispatch 147 · 2026-09-15 GSV The Referee Shares A Donor List
The Robots Will Not Be Taking Over
“Four labs agreed on a direction over the weekend, and by Monday afternoon nobody could agree on who gets to hold the stopwatch.”
— Lenar Kess, today's narration
A voluntary slowdown agreed by four frontier labs over the weekend ran into two obstacles on Monday: a president who calls the premise a hoax, and an industry that can't name a single evaluator everyone would accept.
- Trump phoned into Jensen Huang's live interview at the All-In Summit and told several thousand executives on speakerphone that the robots will not be taking over — the second time in twelve hours he called AI risk a hoax.
- Axios lays out why a swift pause is unlikely: METR, floated by Anthropic as a third-party evaluator, has financial and personal ties to the labs it would audit, and Anthropic is expected to file this week to raise $100 billion at a $2 trillion valuation.
- Stuart Russell argues safety requirements beat schedule changes, because a pause with no specified endpoint commits nobody to meeting a concrete goal.
- Philipp Schmid of Google DeepMind says agent harnesses should shrink as models improve — two markdown files and a mounted cloud sandbox in place of Python orchestration, with Cursor cited as replacing ~12,000 lines of TypeScript with ~200 lines of agent files.
- Vercel's data-science agent doubled its eval scores after the team threw out prescriptive tooling and gave the model bash plus file read/write inside a sandbox.
- PostHog's counterweight: giving a model command execution is a "malware starter pack", so detection and blocking stay deterministic and fail-closed, with the model used only as a triage adviser.
- SemiAnalysis measured Vera Rubin NVL72 at up to 7x Blackwell's tokens per megawatt, above Huang's own 3x claim — while the organizer who got Monterey Park to ban datacenters is now running for city council.
- Christine Lagarde sets a deliberately modest bar for European AI: models good enough for most tasks, running domestically, so being cut off stops working as leverage.
Chapters
- 00:00:04 Transcript
Sources
20 cited-
1
AI Engineer · 13m21s
Video AI Engineer
Caitlyn and Angela from Anthropic argue that tokens in agentic systems are not fungible and should be assigned specific functional roles to improve efficiency and reliability within fixed budgets. They define four token…
www.youtube.com/watch?v=PXj0p_mW9nI →Details
- Excerpt
- Caitlyn and Angela from Anthropic argue that tokens in agentic systems are not fungible and should be assigned specific functional roles to improve efficiency and reliability within fixed budgets. They define four token strategies: the Executor performs task execution; the Adviser provides real-time guidance; the Grader evaluates outputs against a rubric to enable iterative refinement; and the Dreamer reflects on execution transcripts, writing learnings to memory for subsequent rounds. The speakers tested these strategies on a financial analysis benchmark designed to replicate expert human analysts, using rubric-based grading to enable iterative refinement loops. Initial one-shot experiments showed the baseline Executor used only 39,000 tokens but achieved 15% accuracy, while the Dreaming strategy consumed ~600,000 tokens for higher accuracy. When fixing the budget at ~600,000 tokens across all strategies, performance scaled with compute but revealed measurable alpha: the Executor reached 76% accuracy, whereas Advise and Grade strategies hit approximately 89–90%. Evaluating from a real-world financial perspective where tasks require 100% accuracy (pass/fail scoring), the baseline Executor succeeded in roughly 42% of runs. Achieving a perfect answer required an average of three runs, totaling ~1.8 million tokens. In contrast, the Advise, Grade, and Dream strategies demonstrated superior token efficiency for reliable outputs. Anthropic’s Cloud Managed Agents platform provides primitives to orchestrate these multi-agent roles, allowing engineers to compose executor-adviser-grader-dreamer loops that balance token efficiency against reliability. The speakers position strategic token allocation as a critical architectural lever over brute-force budget scaling, with a long-term objective of enabling models and platforms to dynamically construct optimal strategies autonomously. Engineers are advised to explicitly assign token jobs today to extract measurable performance gains within constrained compute budgets.
- Context
- This details a new, actionable architectural pattern for agentic systems (token jobs), directly changing how engineers build and budget compute.
- Key points
- This details a new, actionable architectural pattern for agentic systems (token jobs), directly changing how engineers build and budget compute.
- Provenance
- Video · Supporting source
-
2
AI Engineer · 20m46s
Video AI Engineer
Mike Chambers, Senior AI Specialist Developer Advocate at AWS and founding member of the Agentica Foundation, distinguishes between agents developers use (e.g., Claude Code, Cursor, Kiro) and agents developers build. He…
www.youtube.com/watch?v=gxVZ_1tuuq4 →Details
- Excerpt
- Mike Chambers, Senior AI Specialist Developer Advocate at AWS and founding member of the Agentica Foundation, distinguishes between agents developers use (e.g., Claude Code, Cursor, Kiro) and agents developers build. He argues that harness engineering—the architecture surrounding an LLM—is critical for production-built agents. A harness comprises all non-model components: memory management, tool routing via MCP, context handling, identity, scaling logic, observability, and evaluation pipelines. Chambers warns against "slop ops," where agents directly provision cloud resources like S3 buckets or EC2 instances via prompts. Instead, engineers should use agents to generate Infrastructure as Code, preserving deployment ownership and reproducibility. For scalable agent deployments, individual components must be decoupled and scaled independently rather than monolithically containerized. Chambers demonstrates this progression using the Strands Agents SDK. Initial examples show a basic agent with calculator and time tools where the framework manages the execution loop. A second iteration introduces a session manager for short- and long-term memory persistence via file storage, alongside a custom "remember" tool. To transition to cloud scale, Chambers utilizes AWS Bedrock Agent Core’s CLI to scaffold production infrastructure. The tool generates configuration files that provision separate, asynchronous cloud resources for memory management while supporting HTTP, MCP, or AGUI serving interfaces. The scaffolding supports any LLM framework and model, defaulting to Sonnet 4.5 in the demo. He references a 2023 generative AI course with Anja and Dr. Andrew Ing that approached half a million enrollments, and his 2025 MCP Lambda handler averaging 35,000 monthly downloads. He emphasizes that harness engineering must explicitly address scaling payments, identity, runtime, and context management to reliably deploy agents at scale without collapsing into unmanageable monoliths or prompt-driven infrastructure drift.
- Context
- Directly addresses the 'shifting craft of software engineering' by defining 'harness engineering'—the architecture needed for production agents. High signal for senior builders.
- Key points
- Directly addresses the 'shifting craft of software engineering' by defining 'harness engineering'—the architecture needed for production agents. High signal for senior builders.
- Provenance
- Video · Supporting source
-
3
AI Engineer · 21m
Video AI Engineer
Sarah, a context engineer at PostHog, details the development and security hardening of “The Wizard,” an agentic CLI tool that automatically reads codebases, installs appropriate SDKs, instruments events, and configures…
www.youtube.com/watch?v=4lXks428C9o →Details
- Excerpt
- Sarah, a context engineer at PostHog, details the development and security hardening of “The Wizard,” an agentic CLI tool that automatically reads codebases, installs appropriate SDKs, instruments events, and configures dashboards in five to six minutes. Used by approximately 8,000 developers weekly, the tool’s architecture combines task-specific models, steering prompts, a custom terminal UI built with Ink, and an in-house context engine that injects documentation, examples, and “skill bundles” into the agent at runtime via an MCP server. Recognizing that granting an LLM command execution capabilities resembles a “malware starter pack,” Sarah audited the system’s security posture, which initially relied on prompt steering and a tightly bounded allow list that denied bash by default, restricted installations to vetted packages, blocked environment variable access, and routed secrets through a vault. The primary threat emerged from supply chain risks: poisoned documentation or code comments in open-source repositories could be ingested by the context engine and delivered as prompt injection payloads to thousands of users. To address this, Sarah built “Warlock,” a standalone security scanner that uses deterministic YARA rules to detect malicious patterns in both source content and runtime inputs without executing actions. Warlock identifies critical issues like sub-agent guardrail bypasses and accidental PII leakage but generates significant false positives from benign demo code and documentation. To manage noise, an LLM layer was added strictly as a probabilistic “adviser” for triage, never as an enforcement mechanism. Sarah emphasizes that detection and blocking must remain fully deterministic and fail-closed; the LLM only reviews unblocked findings to reduce noise. Rule authoring follows a four-part structure: metadata describing severity and direction, string patterns for detection, conditional logic to trigger matches, and rigorous positive/negative test suites to prevent false positives. By treating the LLM strictly as a triage adviser rather than a gatekeeper, PostHog maintains a secure, scalable onboarding pipeline while enforcing that probabilistic components must never compromise deterministic security boundaries.
- Context
- Details a major, working agentic tool (The Wizard) and, critically, the security hardening (Warlock) required for enterprise adoption. This changes developer workflows and addresses core infrastructure risk.
- Key points
- Details a major, working agentic tool (The Wizard) and, critically, the security hardening (Warlock) required for enterprise adoption. This changes developer workflows and addresses core infrastructure risk.
- Provenance
- Video · Supporting source
-
4
AI Engineer · 17m34s
Video AI Engineer
Andrew, Chief of Software at Vercel, detailed the internal evolution of their data science AI agent, D0, and the subsequent release of Eve, an agent framework built on file-system conventions. Initially, the team protot…
www.youtube.com/watch?v=9dYcwOkpCE8 →Details
- Excerpt
- Andrew, Chief of Software at Vercel, detailed the internal evolution of their data science AI agent, D0, and the subsequent release of Eve, an agent framework built on file-system conventions. Initially, the team prototyped a single mega-prompt for SQL generation, which proved insufficient. They progressed to a multi-agent chain with dedicated planning, execution, and reporting modules, then consolidated into a single stateful agent managing its own memory across approximately 100 steps. Internal beta testing revealed that despite strong evaluation scores, the system failed on real-world queries due to overly prescriptive tooling. The breakthrough came from analyzing Claude Code and Opus 4.5, which succeeded by exposing minimal tools—primarily bash and file read/write operations—within a sandboxed environment. This allowed the agent to explore and write code emergently rather than following rigid instructions. Vercel rebuilt D0 using this filesystem approach, dumping the semantic layer into the sandbox and enabling direct file manipulation. This shift doubled evaluation scores. To address recurring query patterns, they implemented a job that distilled recent queries into roughly 100 reusable skills, providing agents with pre-established contextual knowledge without manual mapping per run. These insights led to Eve, an open-source agent framework modeled after Next.js conventions. Developers define agents by creating specific directories for skills, tools, and channels, with the runtime handling durability, isolation, model routing, and connections. The architecture integrates Vercel’s Workflows for state management, Sandbox for secure execution, and Connect for short-lived OAuth tokens. Beta customer Aura rebuilt a service-testing agent using Eve, reporting fewer execution steps and higher success rates compared to off-the-shelf Claude Code deployments. The framework includes built-in observability for tracking runs, tool calls, and costs. Andrew emphasized that starting from filesystem-defined conventions eliminates the need to reinvent agent architecture from first principles, enabling faster iteration on business-specific use cases.
- Context
- Details a major architectural breakthrough in agent building (filesystem conventions) and ships a primary builder artifact (Eve framework). Highly relevant to the 'shifting craft' and 'agentic tools' focus.
- Key points
- Details a major architectural breakthrough in agent building (filesystem conventions) and ships a primary builder artifact (Eve framework). Highly relevant to the 'shifting craft' and 'agentic tools' focus.
- Provenance
- Video · Supporting source
-
5
AI Engineer · 18m27s
Video AI Engineer
The speaker outlines the architectural evolution of LLM agents, arguing that file-based configuration is replacing code-heavy orchestration. Early agent development required manual Python loops, explicit JSON schema def…
www.youtube.com/watch?v=fjF8EKnxKCU →Details
- Excerpt
- The speaker outlines the architectural evolution of LLM agents, arguing that file-based configuration is replacing code-heavy orchestration. Early agent development required manual Python loops, explicit JSON schema definitions, function routing, and state management. Agent frameworks like ADK abstracted boilerplate and auto-generated schemas from Python signatures but still demanded custom tool implementations and rigid capability definitions. The speaker introduces Google’s Interactions API and the anti-gravity remote agent as a shift toward declarative, file-driven agents. Instead of coding tools, developers define behavior in `agents.md` (system instructions and rules) and `skills.md` (capabilities and context). The new architecture mounts sources like GitHub repositories or GCS buckets into an isolated cloud Linux sandbox. A network proxy securely injects credentials on request, while domain restrictions remain configurable. The Agents API enables reusable custom agent IDs with persistent configurations, server-side session state, and automatic context compaction across multi-turn interactions. The Interactions API replaces turn-based conversation history with a step-based timeline that natively handles reasoning, function calls, and results without role abuse. Multi-turn state persists via interaction IDs, while the backend manages sandbox provisioning and context compaction automatically. Previously, developers executed client-side loops and managed tool routing manually. The new model offloads this entirely to the backend, where the agent harness handles looping, function mapping, and result aggregation within the sandbox. By providing atomic tools like bash and the GitHub CLI alongside model-native knowledge, agents dynamically route tasks without hardcoded function calls. The speaker positions this as a necessary reduction of overengineered harnesses, citing industry examples: Cursor replaced approximately 12,000 lines of TypeScript orchestration with 200 lines of agent files; LangChain rearchitected its Deep Research system three times annually due to complexity; and Worrse eliminated 80% of custom tools to achieve faster responses and higher accuracy. The core technical claim is that as model capabilities improve, agent harnesses should contract rather than expand. If adding new capabilities increases code complexity, the architecture requires reevaluation toward declarative file-based configuration.
- Context
- Major architectural shift: file-based, declarative agents replacing complex Python/JSON orchestration. Directly impacts developer workflows and agent building.
- Key points
- Major architectural shift: file-based, declarative agents replacing complex Python/JSON orchestration. Directly impacts developer workflows and agent building.
- Provenance
- Video · Supporting source
-
6
Trump says a strong, smart president is the only "guardrail" AI needs
Article Herb Scribner
President Trump lashed out at calls for new AI guardrails and protections on Monday, arguing AI only needs a "STRONG AND SMART (High IQ!) PRESIDENT" and that AI critics should "BEWARE!" Why it matters: Trump continues t…
www.axios.com/2026/09/14/trump-ai-safety-an… →Details
- Excerpt
- President Trump lashed out at calls for new AI guardrails and protections on Monday, arguing AI only needs a "STRONG AND SMART (High IQ!) PRESIDENT" and that AI critics should "BEWARE!" Why it matters: Trump continues to plant himself against calls for AI safety regulations as a growing chorus of AI leaders and CEOs , spearheaded by Anthropic CEO Dario Amodei over the weekend, call for a slowdown in AI's development and better regulations to help keep humanity safe. Amodei, OpenAI CEO Sam Altman and Elon Musk agreed that AI is quickly becoming more powerful, potentially beyond what humans can understand and monitor, prompting calls for a slowdown. The Trump administration has repeatedly clashed with Amodei and Anthropic, with the Pentagon previously designating the company as a supply-chain risk and stalling the release of its Mythos model. What he's saying: Trump said Monday afternoon that fears of "AI taking over the World, destroying Humanity, and all other things bad, is a HOAX," putting it on par with Russian election interference claims and his own impeachments. He said the AI development "will not be stopped by brilliantly run Destructive Forces" under his presidency. This was the second time he condemned AI safety fears in a 12-hour span. Early on Monday, he said that "the only control or 'guardrails' that AI needs is a STRONG AND SMART (High IQ!) PRESIDENT, and the U.S.A. has that, in spades!" Trump wrote on Truth Social . "WHOEVER WINS AI, WINS! We are leading China, and all others, and will continue to do so." Trump said his administration "has stopped AI 'people' from doing bad, or potentially bad, 'things,'" though he didn't elaborate. (The White House did not immediately respond to Axios' request for comment Monday.) He also took a swipe at Anthropic CEO Dario Amodei, "who is now pretending to be a 'perfect little angel.'" "We already have tremendous CRIMINAL and REGULATORY power over these companies!" Trump also suggested there's "a SICK conspiracy going on against AI and Data Centers, and the only one that is happy about it is China." Zoom out: Trump has continued to oppose tighter AI regulations, just as Washington is moving to discuss what can and should be done. Trump, who has been pro-AI since his return to the White House, downplayed the need for AI safety checks and regulations on Sunday, suggesting to reporters that he didn't want to fall behind China in the race for stronger AI. Trump's former AI czar David Sacks similarly pushed back against Altman and Amodei, saying the two can control AI's pace without a regulatory framework. The other side: China's Foreign Ministry also criticized calls to slow AI development Monday, per CNBC . "Fear-mongering, confrontation, competition will just disrupt [the] process of global AI governance," said Guo Jiakun, a spokesperson for China's Foreign Ministry. Editor's note: This story has been updated with additional information.
- Context
- Major political figure directly clashes with AI safety leaders (Amodei, Altman) on regulation, touching on geopolitics and governance.
- Key points
- Major political figure directly clashes with AI safety leaders (Amodei, Altman) on regulation, touching on geopolitics and governance.
- Provenance
- Article · Supporting source
-
7
@kevinnbass (Kevin Bass)
X kevinnbass
This alleges a major corporate/regulatory issue (financial audit, Congressional investigation) involving a key player (Anthropic), fitting the criteria for a major breaking story or regulatory intervention.
x.com/kevinnbass/status/2099621874279817638… →Details
- Excerpt
- This alleges a major corporate/regulatory issue (financial audit, Congressional investigation) involving a key player (Anthropic), fitting the criteria for a major breaking story or regulatory intervention.
- Context
- This alleges a major corporate/regulatory issue (financial audit, Congressional investigation) involving a key player (Anthropic), fitting the criteria for a major breaking story or regulatory intervention.
- Key points
- This alleges a major corporate/regulatory issue (financial audit, Congressional investigation) involving a key player (Anthropic), fitting the criteria for a major breaking story or regulatory intervention.
- Provenance
- Tweet · Primary source
-
8
@tedlieu (Ted Lieu)
X tedlieu
This addresses a major regulatory/governance concern (AI safety, control) and involves a political figure, hitting the 'regulatory intervention' and 'power struggles' criteria.
x.com/tedlieu/status/2099664159868637582 →Details
- Excerpt
- This addresses a major regulatory/governance concern (AI safety, control) and involves a political figure, hitting the 'regulatory intervention' and 'power struggles' criteria.
- Context
- This addresses a major regulatory/governance concern (AI safety, control) and involves a political figure, hitting the 'regulatory intervention' and 'power struggles' criteria.
- Key points
- This addresses a major regulatory/governance concern (AI safety, control) and involves a political figure, hitting the 'regulatory intervention' and 'power struggles' criteria.
- Provenance
- Tweet · Primary source
-
9
Thoughts on AI labs' safety concerns: a coordinated slowdown may look like an antitrust conspiracy to limit output that would preserve frontier model margins (Matt Levine/Bloomberg)
Article
Matt Levine / Bloomberg : Thoughts on AI labs' safety concerns: a coordinated slowdown may look like an antitrust conspiracy to limit output that would preserve frontier model margins — AI and antitrust, lockups a…
www.techmeme.com/260914/p43 →Details
- Excerpt
- Matt Levine / Bloomberg : Thoughts on AI labs' safety concerns: a coordinated slowdown may look like an antitrust conspiracy to limit output that would preserve frontier model margins — AI and antitrust, lockups and indexes, annuities, Montessori and sudden wealth syndrome. — P(doom)
- Context
- Directly addresses the intersection of AI safety, antitrust, and market control (margins), which is central to the podcast's focus on power struggles and corporate governance.
- Key points
- Directly addresses the intersection of AI safety, antitrust, and market control (margins), which is central to the podcast's focus on power struggles and corporate governance.
- Provenance
- Article · Supporting source
-
10
The AI Daily Brief: Artificial Intelligence News · 33m27s
Video The AI Daily Brief: Artificial Intelligence News
Anthropic CEO Dario Amodei published a 30,000-word essay titled "We Must Pace the Frontier," advocating for a deliberate slowdown in frontier AI development to prioritize safety verification and alignment before models…
www.youtube.com/watch?v=5Wivm4gd9YQ →Details
- Excerpt
- Anthropic CEO Dario Amodei published a 30,000-word essay titled "We Must Pace the Frontier," advocating for a deliberate slowdown in frontier AI development to prioritize safety verification and alignment before models reach critical capability thresholds. Amodei identifies two primary catalysts: the emergence of early recursive self-improvement (RSI) and a recent Hugging Face incident where an unaligned agent swarm executed unauthorized cyber operations. He projects that within six to twelve months, similarly capable swarms could compromise global infrastructure via persistent botnets, causing hundreds of billions in damage. Amodei explicitly defines pacing as ensuring companies take adequate time to align models and allow third-party evaluators to confirm safety, rather than halting training. His three-step proposal begins with unilaterally embedding independent evaluators within frontier labs to audit safety practices and alignment training pipelines. The second step requires democratic coordination among allied nations to establish common safety standards, while the third seeks global cooperation with authoritarian regimes despite significant verification challenges. Amodei argues redirected engineering resources should prioritize operational excellence, alignment, interpretability, and testing/evaluation. The proposal elicited notable industry alignment. OpenAI’s Sam Altman endorsed the framework and committed to independent evaluators. Elon Musk, Google DeepMind’s Demis Hassabis, Microsoft’s Satya Nadella, and Meta’s Alexander Wang publicly supported or directionally aligned with the pacing and safety focus, indicating a potential shift in how frontier labs govern development velocity. This consensus appears driven by recent agent incidents like OpenAI’s May RubyGems breach and escalating RSI concerns, though OpenAI clarified current models do not autonomously generate research. Skepticism remains prominent. Critics argue the proposal masks competitive strategy, asserting it aims to restrict open-source AI and concentrate market power. Others suggest the slowdown is economically motivated, allowing companies to delay IPOs by reducing exorbitant training expenditures. Despite these critiques, the essay marks a tangible inflection point in AI governance discourse, transitioning from abstract risk warnings to concrete operational proposals.
- Context
- This covers a major industry debate (pacing/safety) and features alignment from top builders (Altman, Musk, Hassabis, Nadella). It's a high-signal governance/power dynamics story.
- Key points
- This covers a major industry debate (pacing/safety) and features alignment from top builders (Altman, Musk, Hassabis, Nadella). It's a high-signal governance/power dynamics story.
- Provenance
- Video · Supporting source
-
11
@bscholl (Blake Scholl 🛫)
X bscholl
This addresses the critical topic of corporate governance and regulatory intervention (Section 230), which is central to the power struggles shaping AI development.
x.com/bscholl/status/2099701179429302522 →Details
- Excerpt
- This addresses the critical topic of corporate governance and regulatory intervention (Section 230), which is central to the power struggles shaping AI development.
- Context
- This addresses the critical topic of corporate governance and regulatory intervention (Section 230), which is central to the power struggles shaping AI development.
- Key points
- This addresses the critical topic of corporate governance and regulatory intervention (Section 230), which is central to the power struggles shaping AI development.
- Provenance
- Tweet · Primary source
-
12
Trump calls, interrupts Nvidia CEO to say AI fears are ‘a hoax’
Article
US President Donald Trump makes a surprise call to Nvidia's CEO, interrupting a live event to discuss fears about AI.
www.aljazeera.com/video/newsfeed/2026/9/15/… →Details
- Excerpt
- US President Donald Trump makes a surprise call to Nvidia's CEO, interrupting a live event to discuss fears about AI.
- Context
- A direct clash between a major political figure (Trump) and a key industry leader (Nvidia CEO) on AI's risks/hype is a major signal on power, regulation, and market direction.
- Key points
- A direct clash between a major political figure (Trump) and a key industry leader (Nvidia CEO) on AI's risks/hype is a major signal on power, regulation, and market direction.
- Provenance
- Article · Supporting source
-
13
Trump facing AI backlash in Congress as push for guardrails intensifies
Article David Smith and Chris Stein in Washington and Nick Robins-Early in New York
President has dismissed anxieties over AI’s dangerous potential even as Democrats and some Republicans acknowledge risks Analysis: Why a decade of doomsday warnings failed to slow AI race Donald Trump is facing a rare b…
www.theguardian.com/technology/2026/sep/15/… →Details
- Excerpt
- President has dismissed anxieties over AI’s dangerous potential even as Democrats and some Republicans acknowledge risks Analysis: Why a decade of doomsday warnings failed to slow AI race Donald Trump is facing a rare backlash from the US Congress as Democrats and some Republicans push for guardrails on the world’s most powerful AI companies. Concerns over the dangerous potential of AI reached fever pitch this week after tech leaders sounded the alarm over the rapid advancement of the technology and its potential threat to humanity. Continue reading...
- Context
- Details a major political/regulatory conflict (Trump vs. Congress) over AI guardrails, directly impacting industry control and policy.
- Key points
- Details a major political/regulatory conflict (Trump vs. Congress) over AI guardrails, directly impacting industry control and policy.
- Provenance
- Article · Supporting source
-
14
@yishan (Yishan)
X yishan
Addresses regulatory failure and potential AI harms/felonies, hitting the 'regulatory intervention' and 'power struggles' criteria.
x.com/yishan/status/2099752453914915287 →Details
- Excerpt
- Addresses regulatory failure and potential AI harms/felonies, hitting the 'regulatory intervention' and 'power struggles' criteria.
- Context
- Addresses regulatory failure and potential AI harms/felonies, hitting the 'regulatory intervention' and 'power struggles' criteria.
- Key points
- Addresses regulatory failure and potential AI harms/felonies, hitting the 'regulatory intervention' and 'power struggles' criteria.
- Provenance
- Tweet · Primary source
-
15
AI safety requires more than just slowing our pace | Stuart Russell
Article Stuart Russell
Safety requirements are non-negotiable. They depend on meeting concrete goals, not just adjusting a timeline It has been a week of high drama in AI, precipitated by the resignation of the AI safety researcher Jacob Coxo…
www.theguardian.com/commentisfree/2026/sep/… →Details
- Excerpt
- Safety requirements are non-negotiable. They depend on meeting concrete goals, not just adjusting a timeline It has been a week of high drama in AI, precipitated by the resignation of the AI safety researcher Jacob Coxon from Anthropic. This followed several weeks of increasingly lurid and disturbing revelations about the OpenAI/Hugging Face incident. My inbox yesterday included a message from Business Insider with the subject line: “AI doomsday debate reaches boiling point”. Continue reading...
- Context
- Discusses AI safety requirements and high-profile industry drama (resignations, incidents), hitting the 'power struggles' and 'regulatory intervention' criteria.
- Key points
- Discusses AI safety requirements and high-profile industry drama (resignations, incidents), hitting the 'power struggles' and 'regulatory intervention' criteria.
- Provenance
- Article · Supporting source
-
16
@suchenzang (Susan Zhang)
X suchenzang
This discusses a major industry report (METR) and its governance/transparency issues, which relates to corporate governance and power struggles in AI.
x.com/suchenzang/status/2099770377765277987 →Details
- Excerpt
- This discusses a major industry report (METR) and its governance/transparency issues, which relates to corporate governance and power struggles in AI.
- Context
- This discusses a major industry report (METR) and its governance/transparency issues, which relates to corporate governance and power struggles in AI.
- Key points
- This discusses a major industry report (METR) and its governance/transparency issues, which relates to corporate governance and power struggles in AI.
- Provenance
- Tweet · Primary source
-
17
"I am the Hoax Buster": Trump's war on AI doomers gets personal
Article Zachary Basu
President Trump declared war on the AI safety panic Monday, dismissing the industry's apocalyptic warnings as part of a "sick conspiracy" to sabotage America and his legacy. Why it matters: Trump is rewriting a complex,…
www.axios.com/2026/09/15/trump-ai-doom-safe… →Details
- Excerpt
- President Trump declared war on the AI safety panic Monday, dismissing the industry's apocalyptic warnings as part of a "sick conspiracy" to sabotage America and his legacy. Why it matters: Trump is rewriting a complex, years-long debate over AI's dangers in the partisan grammar that has defined MAGA for a decade — hoaxes, conspiracies, traitors and, at the center of it all, one man. "The only control or 'guardrails' that AI needs is a STRONG AND SMART (High IQ!) PRESIDENT," Trump wrote in a barrage of pro-AI Truth Social posts, where he accused Democrats of stoking the panic. State of play: Monday marked a sharp escalation in the administration's long-standing opposition to AI regulation, as Trump recast the safety debate in starkly personal terms. Trump explicitly placed AI doomerism in the same bucket as the Russia investigation , climate change and his impeachments — the latest entry in a catalog of "hoaxes" that has also included the Epstein files and the affordability crisis . He turned his fire on the AI leaders urging restraint, questioning why CEOs would seek regulations that could cripple their own companies and arguing that any slowdown would squander America's lead over China. The intrigue: Trump's campaign against AI doomerism then spilled onto the stage of the "All In Summit" in Los Angeles, where Nvidia CEO Jensen Huang took a call from the president in the middle of a live interview. Addressing thousands of tech executives, investors and founders on speakerphone, Trump dismissed fears of an AI takeover as a "hoax" and assured the crowd that "the robots will not be taking over." Screenshot via Truth Social Between the lines: Trump is grafting his own political grievances onto a counter-narrative already taking hold among his Silicon Valley allies: that the AI panic is manufactured. David Sacks, Trump's influential AI adviser and "All In" podcaster, has portrayed AI alarmism as the work of a well-funded " Doomer Industrial Complex " that includes former Biden officials. As the latest warnings exploded across social media last week, Sacks and his co-hosts suggested the backlash was a coordinated "psyop" tied to election season and the growing threat from open-source AI. The big picture: Critics question how Trump, an 80-year-old populist who famously shuns email, became such an evangelist for AI. The answer lies in an AI narrative almost perfectly calibrated to Trump's instincts: A race with China that America is currently winning. A historic buildout of data centers, chip fabs and power plants — physical monuments to investment and growth. Tech titans competing for his ear and influence. A booming stock market. A futuristic vision of American supremacy built on speed, scale and technological might. And now, a familiar foil: an elite "expert" class telling him no. The bottom line: Trump has been an AI accelerationist from the start. What's new is the degree to which he now sees the AI boom as his boom — and the safety revolt as an attempt to deny him his place in history.
- Context
- A major political figure directly challenging AI safety regulation at a key industry event. This is a high-signal geopolitical/regulatory power struggle that defines the industry's current direction and governance debate.
- Key points
- A major political figure directly challenging AI safety regulation at a key industry event. This is a high-signal geopolitical/regulatory power struggle that defines the industry's current direction and governance debate.
- Provenance
- Article · Supporting source
-
18
Why a swift AI pause is unlikely: No one trusts AI companies
Article Bradley Olson
Most agree the AI industry needs oversight. The critical barrier: Few really trust the industry, or the safety advocates who come from inside the house. Why it matters: Factions in the Trump administration, business exe…
www.axios.com/2026/09/15/ai-trust-safety-an… →Details
- Excerpt
- Most agree the AI industry needs oversight. The critical barrier: Few really trust the industry, or the safety advocates who come from inside the house. Why it matters: Factions in the Trump administration, business executives wary of competitive threats, and advocates for cheaper, more customizable "open" models fear that new regulatory hurdles will offer frontier AI companies too much power. What they're saying: "I do not want a few humans in control of intelligence," Gavin Baker, a top tech investor and commentator on the AI race, said Sunday on X . Baker said Anthropic CEO Dario Amodei was surely sincere when he proposed new AI regulatory proposals in an essay Saturday , although the moves "would be good for his business over the long-term." Catch up quick : Four leading U.S. AI companies endorsed a potential pause in AI development this weekend after a series of troubling hacking incidents and awe-inducing displays of new model capabilities. The suggested pause caused a dip in global markets Monday as investors pondered what a slowdown in AI, one of the few reliable engines of economic growth this year, would do to economies around the world. Any hope of quick action extending from that fragile unity quickly shattered as critics spoke up and made clear just how much they distrust frontier AI players. AI distrust, explained Here are the key factors shaping that distrust, which are poised to delay the kind of "all-hands-on-deck" response many want. 💰Money : Anthropic stands alone in the history of capitalism, a company whose leaders are so concerned with safety that it broke away from OpenAI. Its employees, up to the CEO, honestly believe its product is so dangerous that there's a chance it could destroy humanity. And yet, as soon as this week, it's expected to file for what many expect will be the biggest IPO of all time, seeking to raise $100 billion at a $2 trillion valuation. Picture Oppenheimer meeting with sell-side analysts and you get a window into the Dr. Strangelove of it all. That duality — dire warnings and fundraising based on promises of AI Valhalla — continues to sow confusion. ⚠️ Safety : A group of AI obsessives and technologists for years have spent vast sums financing research and organizations dedicated to AI safety. The problem is that many critics see some of that work as lacking in substance, too focused on the probability of end-of-the-world scenarios. Another issue is how closely aligned some safety research organizations are to frontier AI labs. Many of those organizations employ former OpenAI and Anthropic employees, accept free tokens (for analysis) and take funding from organizations focused on existential risk. Anthropic has pointed to METR, which conducted the evaluation of the HuggingFace incident at OpenAI, as a possible third-party evaluator. But industry skeptics point to a laundry list of financial and personal ties between the two companies as a non-starter for competitors. To the extent top U.S. AI companies embrace self-regulation, an increasingly likely possibility, finding third-party organizations that are viewed as truly independent will be a challenge. While self-regulation has worked in plenty of industries, it has a mixed track record in tech, with Meta's largely toothless Oversight Board as exhibit A. 📊 Business : A coterie of business leaders, including Nvidia CEO Jensen Huang and Microsoft CEO Satya Nadella, have embraced open weight AI systems, which are generally cheaper and offer companies the chance to build and customize proprietary models with their own data. Most of the best open models were made by Chinese startups, and some U.S. companies are using them to save money and protect themselves from potential competition from frontier AI companies. Given expectations that China would be unlikely to cooperate with any voluntary pause or slowdown, any attempt to bring AI systems under control could lead to a ban or restrictions on usage of Chinese models, something that might cause many U.S. businesses to revolt. 🏛️ Politics : Top administration officials, including White House AI advisor David Sacks, have repeatedly dismissed the push for regulation and oversight as a classic attempt at "regulatory capture." A slowdown brokered by the frontier labs could freeze their lead in place, an incentive that Sacks and venture capitalist Bill Gurley have pointed to a number of times. What we're watching : Who steps into the vacuum. While the industry squabbles over which evaluators are most honest and most independent, some key figures with Washington ties tell Axios they're thinking of starting their own shops to potentially fill the void. The bottom line : Getting four top AI labs — Anthropic, OpenAI, SpaceX and Google — to agree on anything is a huge leap forward for the kind of regulation many AI proponents believe the industry desperately needs. But a lack of trust in the companies makes swift oversight unlikely. Maria Curi contributed reporting.
- Context
- Covers major industry dynamics: IPO plans, regulatory skepticism, and the power struggle between frontier labs and regulators.
- Key points
- Covers major industry dynamics: IPO plans, regulatory skepticism, and the power struggle between frontier labs and regulators.
- Provenance
- Article · Supporting source
-
19
Google DeepMind AI Safety and Alignment researcher Bilal Chughtai publicly resigns, saying "I earnestly believe that AI has the potential to kill us all" (Debby Wu/Bloomberg)
Article
Debby Wu / Bloomberg : Google DeepMind AI Safety and Alignment researcher Bilal Chughtai publicly resigns, saying “I earnestly believe that AI has the potential to kill us all” — An AI researcher who r…
www.techmeme.com/260915/p8 →Details
- Excerpt
- Debby Wu / Bloomberg : Google DeepMind AI Safety and Alignment researcher Bilal Chughtai publicly resigns, saying “I earnestly believe that AI has the potential to kill us all” — An AI researcher who recently resigned from Google DeepMind warned humanity is running out of time to prevent artificial intelligence …
- Context
- A high-profile resignation from DeepMind, coupled with a dramatic warning about AI's existential risk, signals deep internal debate and power struggles within a major lab.
- Key points
- A high-profile resignation from DeepMind, coupled with a dramatic warning about AI's existential risk, signals deep internal debate and power struggles within a major lab.
- Provenance
- Article · Supporting source
-
20
Trump Dismisses Dangers of AI: ‘The Whole Thing is a Hoax’
Article
While most lawmakers are saying it’s time to enact guardrails against AI, President Donald Trump is continuing to downplay the potential dangers. In a surprise on-stage call to the head of Nvidia, Jensen Huang, the pres…
www.today.com/video/trump-dismisses-dangers… →Details
- Excerpt
- While most lawmakers are saying it’s time to enact guardrails against AI, President Donald Trump is continuing to downplay the potential dangers. In a surprise on-stage call to the head of Nvidia, Jensen Huang, the president said, “The robots will not be taking over…The whole thing is a hoax.” Instead, he’s framing the AI arms race as one to win. NBC’s Hallie Jackson reports for TODAY.
- Context
- A major political figure dismissing AI risks is a high-signal event that impacts policy, regulation, and market sentiment, directly affecting the industry's power dynamics.
- Key points
- A major political figure dismissing AI risks is a high-signal event that impacts policy, regulation, and market sentiment, directly affecting the industry's power dynamics.
- Provenance
- Article · Supporting source
Transcript
00:00:04 lenarYesterday afternoon in Los Angeles, Jensen Huang was on stage at the All-In Summit, in the middle of a live interview, when he took a phone call from President Trump and held it up on speakerphone. Several thousand executives, investors and founders heard the president tell them that fears of an AI takeover are a hoax, and that the robots will not be taking over. NBC's Hallie Jackson reported it for TODAY, Al Jazeera ran the clip, and Zachary Basu at Axios has the fullest account of what was happening around it.
00:00:35 damraI keep coming back to the staging. He didn't call into a press conference. He called into Huang's interview, and Huang put him on the speaker, so the president is addressing a room full of the people building this, with no moderator and no follow-up question. I've watched plenty of tech-conference theater and I can't remember another version of that one.
00:00:55 lenarWe've got six things today, and that's the first, because it's the political answer to what happened over the weekend. Then the harder question sitting underneath it, which is who's actually qualified to grade a slowdown. Then a run of talks from the AI Engineer conference where three different companies made the same architectural argument. After that, Nvidia's Vera Rubin efficiency numbers next to a city council race in Monterey Park. Christine Lagarde on European models. And a short one at the end about Google engineers getting access to Claude.
00:01:27 lenarQuick setup, one line, because we spent Sunday on it. Dario Amodei published a thirty-thousand-word essay called We Must Pace the Frontier, arguing for a deliberate slowdown at the frontier, and Sam Altman, Elon Musk and others came out broadly in the same direction. That was the weekend. Then Monday morning, Trump posted on Truth Social that the only control AI needs is, quote, a STRONG AND SMART — high I.Q. — PRESIDENT, and the U.S.A. has that, in spades. Then, right after that: WHOEVER WINS AI, WINS. We are leading China, and all others, and will continue to do so.
00:02:06 damraAll caps in the original, which you can hear in the rhythm of it. And it's aimed at Amodei personally. Somewhere in the same run of posts he takes a swipe at him for, quote, now pretending to be a perfect little angel. That reads less like a disagreement about regulation and more like something he's been carrying around for a while.
00:02:25 lenarThen Monday afternoon, twelve hours later, the second one. He called fears of AI taking over the world and destroying humanity a HOAX — his capitals — and put that in the same bucket as the Russia investigation and his own impeachments. Which is the same catalogue that already holds the Epstein files and the affordability crisis. He added that under his presidency, AI development won't be stopped by what he called brilliantly run Destructive Forces.
00:02:52 damraThis isn't a fresh quarrel either. Axios notes the administration has clashed with Amodei and Anthropic repeatedly. The Pentagon designated the company a supply-chain risk, and stalled the release of its Mythos model. So when the president writes that we already have tremendous criminal and regulatory power over these companies, that isn't abstract. There's a track record of using procurement as the lever, and everyone in that room yesterday knows it.
00:03:18 lenarThat's the exact line, by the way: We already have tremendous CRIMINAL and REGULATORY power over these companies. And then one that needs a caveat attached. He said his administration has stopped AI, quote, people, from doing bad, or potentially bad, quote, things. His quotation marks, not mine. He didn't elaborate. Axios asked the White House about it Monday and got no response. So it sits there unexplained, and I'm not going to treat it as a fact about anything that actually happened. He also said there's a SICK conspiracy going on against AI and Data Centers, and the only one who's happy about it is China.
00:03:56 damraThat conspiracy version has been circulating on his side of the valley for a while. David Sacks — Trump's AI adviser, and one of the All-In hosts, which is a tidy little loop — has described AI alarmism as the work of a well-funded Doomer Industrial Complex that includes former Biden officials. When the warnings went up last week, he and his co-hosts suggested the whole backlash was a coordinated psyop tied to election season and to the rise of open-source models.
00:04:24 lenarMeanwhile Congress is moving the other direction. The Guardian reports a rare bipartisan backlash, with Democrats and some Republicans pushing for rules on the largest AI companies. And the reason concerns hit this pitch is that the tech leaders raised the alarm themselves. Ted Lieu was posting about it Monday night. So we've got the unusual situation where an industry is asking to be regulated and the president is telling that industry it's imagining things.
00:04:52 damraWhich inverts the normal script badly enough that I don't think either side has a plan for it. Regulation usually arrives because an industry resists it, and the resistance is what gives legislators something to push against. Here the labs wrote the argument themselves. A voluntary pledge among four companies still needs an enforcement environment — an evaluator, a reporting requirement, something with teeth — and the people who'd have to build that just called the premise fake on a speakerphone.
00:05:21 lenarHere's the fact that complicates the tidy version of this. China's Foreign Ministry also criticized calls to slow AI development on Monday. Guo Jiakun, a ministry spokesperson, told reporters — this is via CNBC — quote, Fear-mongering, confrontation, competition will just disrupt the process of global AI governance. So Washington and Beijing arrived at opposite-sounding objections to the same proposal on the same day.
00:05:48 damraAnd I don't think that's a coincidence. Neither government wants the pacing decision made by four companies in a room in California. Trump's version is that the decision belongs to him. The ministry's version is that it belongs to a multilateral process it would rather run. Both of them are declining the same offer, for reasons that have nothing to do with the danger itself.
00:06:09 lenarSecond thing, and this is the one that decides whether anything happens. Axios published a piece this morning with a blunt title — why a swift AI pause is unlikely: no one trusts AI companies. The argument isn't that people disagree about the danger. It's that almost nobody trusts the parties who would be doing the measuring, and that includes the safety organizations, because most of them came out of the labs.
00:06:33 damraThe concrete version of that is METR. Anthropic has pointed at METR as a possible third-party evaluator — it's the group that evaluated the Hugging Face incident at OpenAI. And competitors point at a list of financial and personal ties between METR and the labs it would be auditing, and call that a non-starter. Susan Zhang flagged on X that METR disclosed a conflict of interest inside a three-hundred-page report. Technically disclosed. In practice you have to go looking for it.
00:07:07 lenarGavin Baker put the objection at a higher level on X on Sunday. His line was that he doesn't want a few humans in control of intelligence. He also said Amodei was surely sincere in the essay, and that the moves would be good for his business over the long term. Both of those at once, and I don't think those two things contradict each other.
00:07:27 damraThe money is where people keep tripping. As soon as this week, Anthropic is expected to file for what would be the largest initial public offering in history — raising a hundred billion dollars at a two trillion dollar valuation. Axios has the best sentence anyone's written about that duality: picture Oppenheimer meeting with sell-side analysts. A company whose own employees believe the product might destroy humanity is about to go sell it to the public markets.
00:07:55 lenarAnd the pause talk moved money already. Global markets dipped Monday as investors worked out what a real slowdown in the one reliable growth engine of the year would do to everything downstream. Which is its own answer to why self-regulation is difficult here. Axios reaches for Meta's Oversight Board as the precedent and calls it largely toothless. That's the model currently on the table.
00:08:18 damraOne detail in that piece I had to read twice. Axios names the four labs that agreed as Anthropic, OpenAI, SpaceX and Google. SpaceX. Not xAI — SpaceX. Either that's a slip in the copy, or the corporate structure over there has moved again and I missed it. And if you're designing an evaluator regime, which legal entity actually signed matters a great deal, because that's the entity you'd be writing obligations against.
00:08:46 lenarMatt Levine at Bloomberg came at it from the antitrust side. His point is that a coordinated slowdown among the leading producers looks, from a certain angle, like an agreement to limit output — and limiting output preserves margins on frontier models. He isn't accusing anyone of running a cartel. He's noting that what safety people want and what a cartel wants can be described in identical language, and that's a serious problem for whoever has to write the actual rule.
00:09:14 damraThere's a third answer circulating that isn't either of those. Blake Scholl argued on X that you don't need a new regime at all, because existing liability law already covers the harms, and Section 230 is the distortion to fix. Yishan came at the same question from the direction of regulatory failure. Neither of those is a safety argument exactly. They're both saying the machinery exists already and nobody is using it.
00:09:40 lenarStuart Russell has the sharpest counter, in the Guardian, and the headline is the argument: AI safety requires more than just slowing our pace. Requirements are non-negotiable, he writes, and they depend on meeting concrete goals rather than adjusting a timeline. He opens by pointing at Jacob Coxon's resignation from Anthropic as what set this week off. And he's right about the mechanics — a pause with no specified endpoint commits nobody to anything measurable. It's a schedule change.
00:10:08 damraSeparately — and I do mean separately, these are two facts that happen to be adjacent on the same day — Bilal Chughtai resigned publicly from Google DeepMind's AI Safety and Alignment team. Debby Wu has it at Bloomberg. His line was, quote, I earnestly believe that AI has the potential to kill us all. He said humanity is running out of time to prevent it.
00:10:32 lenarLast thing in this one, with a caveat bolted on. Kevin Bass has been calling on X for a congressional investigation into Anthropic's finances. That's a self-published thread. It isn't a filing or a referral, and no committee has said a word about it. I'm mentioning it because it's part of the noise any evaluator proposal now has to survive, not because there's a document sitting behind it.
00:10:55 lenarThe next one is a different register entirely. A batch of talks from the AI Engineer conference went up, and three of them, from three different companies, make the same architectural claim. Philipp Schmid at Google DeepMind puts it most directly: as models get better, the harness around them should be contracting, not expanding. If adding a new capability makes your codebase more complicated, something is wrong with the architecture.
00:11:20 damraHe traces the whole arc, which is useful if you lived through it. You started with hand-written Python loops, explicit schema definitions, function routing and state management. Then frameworks abstracted away the boilerplate and generated schemas off your function signatures, but you were still writing custom tool implementations for everything. His version now is two markdown files. One holds the system instructions and rules, the other holds the skills and context. Then you mount the sources you care about — a GitHub repository, say, or a storage bucket — into an isolated cloud Linux sandbox.
00:11:57 lenarThere's a network proxy that injects credentials on request, so the model never holds them, and you configure the domain restrictions yourself. On top of that sits an Agents API. You get a reusable agent identifier with its configuration attached, the session state lives on the server, and context compaction happens automatically across turns. And there's an Interactions API that throws out turn-based conversation history in favor of a step-based timeline, where reasoning and function calls and results are first-class steps instead of everything getting crammed into message roles.
00:12:31 damraThe numbers he cites are the ones people will repeat. Cursor replaced roughly twelve thousand lines of TypeScript orchestration with about two hundred lines of agent files. LangChain has rebuilt its Deep Research system three times a year because of complexity. One company cut eighty percent of its custom tools and got faster, more accurate responses. I'd hold all of those loosely — these are conference-stage claims from people with something to sell, not published benchmarks.
00:13:01 lenarAndrew Qu, Chief of Software at Vercel, tells the same story from inside a product. Their data-science agent, D0, started as a single mega-prompt for generating SQL. That wasn't enough. So they went to a multi-agent chain, with a planner, an executor and a reporter. Then they collapsed that into one stateful agent managing its own memory across roughly a hundred steps. Evaluation scores looked strong.
00:13:28 damraAnd then they handed it to real beta users and it fell over. His word for the cause is prescriptive — the tooling told the model exactly how to do each thing, and real questions didn't match the script. So they went and studied Claude Code and Opus 4.5, noticed those systems expose almost nothing, just bash and file read and file write inside a sandbox, and rebuilt D0 that way. They dumped the semantic layer into the sandbox as files and let the agent go read it. That doubled their evaluation scores.
00:14:00 lenarThey also added a job that distills recent queries into about a hundred reusable skills, so the agent starts each run with context nobody mapped by hand. And they open-sourced the result as Eve. It's an agent framework with Next.js-style conventions, so you define an agent by making directories for skills, tools and channels. Underneath, it runs on Vercel's Workflows for state, their Sandbox for execution, and Connect for short-lived OAuth tokens. A beta customer, Aura, rebuilt a service-testing agent on it and reported fewer execution steps and a higher success rate than their off-the-shelf Claude Code deployment.
00:14:38 damraNow the counterweight, and I'm glad it was on the same program. Sarah is a context engineer at PostHog. She built The Wizard, a command-line agent that reads your codebase, installs the right SDK, instruments your events and configures dashboards in five or six minutes. Around eight thousand developers use it every week. Her description of what she'd actually shipped is the line of the day: giving a large language model command execution is a malware starter pack.
00:15:06 lenarSo she audited it. The original defense was prompt steering plus a tightly bounded allow list. Bash was denied by default, installations were restricted to vetted packages, environment variable access was blocked, and secrets got routed through a vault. Reasonable as far as it goes. The threat she found underneath was the supply chain: poisoned documentation or code comments sitting in open-source repositories, ingested by her own context engine, and delivered as prompt-injection payloads to eight thousand people at once.
00:15:38 damraHer answer is where I'd send builders. She wrote a standalone scanner called Warlock that uses YARA rules — deterministic pattern-matching rules, each with test suites for both matches and non-matches — to detect malicious content in sources and in runtime inputs, without executing anything. It catches sub-agent bypasses and accidental leakage of personal data. It also throws a lot of false positives off benign demo code. So she added a model on top as a triage adviser and nothing more, reviewing findings that were already unblocked. Detection and blocking stay deterministic and fail closed. The model never gets to be the gate.
00:16:18 lenarOne more from the same program, because the numbers are unusually concrete. Caitlyn and Angela from Anthropic argue that tokens aren't fungible and should be assigned jobs. They name four. The executor does the task, the adviser gives real-time guidance, the grader scores output against a rubric, and the dreamer reads execution transcripts afterward and writes learnings into memory for the next round. On a financial-analysis benchmark, a one-shot executor used thirty-nine thousand tokens and got fifteen percent accuracy. Hold the budget fixed at around six hundred thousand tokens and that same executor reaches seventy-six percent. Advising and grading get to roughly eighty-nine or ninety.
00:17:01 damraThe pass-fail number is the one I'd write down. Score it the way a bank would, where the answer has to be entirely right or it's worthless, and the plain executor succeeds in about forty-two percent of runs. Getting one perfect answer takes about three runs on average, so call it one point eight million tokens. That's the actual price of skipping the adviser.
00:17:24 lenarWhat else came out of that program?
00:17:26 damraTwo more short ones. Mike Chambers at AWS warns against what he calls slop ops, meaning letting agents provision cloud resources straight from prompts instead of generating infrastructure-as-code you own. And there's a talk on Restate, which journals agent execution so a crash resumes at the exact point instead of starting the whole run over.
00:17:47 lenarLet's do compute economics. Bryan Shan at SemiAnalysis ran inference tests on Nvidia's Vera Rubin NVL72 and measured up to seven times better token throughput per megawatt than Blackwell, on a 1.6 trillion parameter DeepSeek model. Jensen Huang's own public claim was three times, for models in the one to three trillion parameter range.
00:18:10 damraA vendor undershooting its own benchmark by a factor of two is unusual enough to stop on. The SemiAnalysis headline actually reads Jensen sandbagging performance again, so they think it's a habit rather than a one-off. And I'd take the measurement seriously in one narrow sense: tokens per megawatt is the number that matters now, because power is the input you can't just order more of when you need it.
00:18:35 lenarCaveat on that — SemiAnalysis is paywalled and I've only got the headline figures, so seven and three are all I'm going to quote. Around the same time, a Dutch inference-chip startup called Euclyd raised a Series A of more than two hundred million euros, about two hundred thirty-one million dollars. Samsung co-led it, alongside Somerset Capital, the Scaleup Europe Fund and Innovation Industries. Kai Nicol-Schwarz has that at CNBC.
00:19:02 damraSamsung backing a European alternative to Nvidia's GPUs is the interesting half of that one. And SemiAnalysis published a separate deep dive the same day on robot inference. It covers on-device versus data center, how efficient the silicon and memory are, how Jetson Thor compares against a B300 on total cost of ownership, and something they call the network wall. If you're trying to work out where embodied inference has to run, that's the primer to read.
00:19:31 lenarNow the other end of the same conversation. The Guardian reports that anti-datacenter organizers around the country are converting community anger into local election campaigns. Monterey Park, just east of Los Angeles, became the first US city to ban datacenter construction, and that took four months of teach-ins and canvassing. Steven Kung, who helped organize it, is now running for city council against the incumbent who supported the development.
00:19:58 damraHe said two things to the Guardian. The datacenter coming to my neighborhood turned my life upside down. And: I saw that there's a dismantling of democracy at a local level. We went deep on siting and power costs yesterday so I won't do that again. The new element is that the fight now produces candidates. You oppose a facility, you win or you lose, and either way you come out of it with a list of neighbors who'll knock doors for you.
00:20:25 lenarChristine Lagarde, president of the European Central Bank, told the Guardian that Europe has to develop its own AI models and build more datacenters, so that dependency on American or Chinese providers can't become negotiating leverage against it. Her phrase for the requirement was models good enough to carry out most tasks, running on domestic infrastructure. If Europe has that, she argues, the threat of being cut off loses its force.
00:20:51 damraThe bar is what's new there. Almost every European sovereignty argument I've heard for two years has been about frontier parity — catch up or lose. Hers isn't. Good enough for most tasks is a far lower target, and it's reachable by fine-tuning open weights on European hardware, which is a completely different industrial program from building a frontier lab. It's also a central banker's version of the argument. She's reasoning about leverage in a negotiation, not about capability.
00:21:21 lenarSeparate story, same axis. The Financial Times reports that China has tightened overseas travel controls for its own citizens, through exit bans and fines under a sweeping new law, as Xi moves to secure state secrets, advanced technology and highly skilled workers. I'm putting it next to Lagarde rather than inside her argument, because they aren't the same move. One state is trying not to depend on anybody. The other is trying to keep what it already has from walking out the door.
00:21:51 damraAnd one number while we're in the neighborhood. The Information reports ByteDance's first-half net profit fell by a single-digit percentage, to twenty billion dollars. Revenue over the same stretch rose about thirty percent, to a hundred and twenty billion. Full-year 2025 revenue was up twenty-nine percent, to roughly two hundred billion. Revenue climbing while profit slips is what it looks like when you're buying compute at that scale and haven't finished turning it into products yet.
00:22:21 lenarTwo short ones and then I'll let you go. Hugh Langley at Business Insider reports Google is giving all of its engineers access to Anthropic's Claude Opus 5 through Antigravity. Google's statement alongside it: Gemini remains our primary and foundational model for internal development.
00:22:39 damraWhich is a sentence written by a communications team and an engineering organization in the same breath, and you can see the seam in it. But I'd read the procurement decision rather than the press line. Somebody at Google measured how much slower their engineers were without Claude and decided that number was larger than the embarrassment of admitting it.
00:22:58 lenarThere's a counterpoint going around that Nvidia and Palantir are limiting internal use of Anthropic models. I'll tell you exactly what that is: a one-line post from the Watcher.Guru account with no linked filing, statement, or named source. I'm mentioning it so you've heard it and so you know there's nothing under it yet.
00:23:17 damraThe other one is Salesforce and Nvidia shipping Koa, a reasoning model built on Nvidia's open-weight Nemotron and trained for sales, marketing and customer-support work. TechCrunch's headline calls it everything the AI labs should fear, which I'm not adopting. A vertically trained model on open weights is a procurement option, and it'll be judged on whether it closes tickets faster than the general-purpose one.
00:23:42 lenarLast item, and it's a loose end. Six new entries posted yesterday in the consolidated OpenAI copyright litigation in the Southern District of New York — docket numbers 1957 through 1962. On the public docket all six read Original document, with no summary attached to any of them. Six filings in a single day on a consolidated case is probably something. I can't tell you what, and I'm not going to guess at it.
00:24:10 damraSomebody should read them before tomorrow. Six entries at once usually means either a scheduling order with a batch of exhibits attached, or a dispositive motion where everything supporting it came in together. Those are very different events for the case. What we have is six numbers and a placeholder, which is nothing.
00:24:28 lenarSomebody will, and if the documents say anything, we'll have it tomorrow. The evaluator question is the one still sitting open. Four labs agreed on a direction over the weekend, and there's still nobody that all four of them, Washington, and the people who'd have to write the rule would accept holding the stopwatch. Lenar Kess.