← Back to blog·Trends·6 min read

Voice Agents Get a Reasoning Upgrade While Multi-Agent Security Fails and Chatbot Safety Laws Get Written With Loopholes

Google's Gemini 3.8 Live Extended Thinking lets a voice agent reason and speak at the same time, a new long-horizon study found no multi-agent system resisted prompt injection over 46 hours, and reporting shows tech companies helping draft the state chatbot safety bills meant to regulate them — three stories that all land on the same question: what happens once an agent is trusted to keep talking and acting on its own.

By Maya Brennan · Writer, Smillee AI
September 20, 2026

Three stories broke within days of each other this week, and read together they trace one arc: voice agents just got fast enough to act while they talk, a new adversarial study shows that once an agent is running long enough nothing reliably stops a bad instruction from spreading, and the laws meant to catch that gap are being drafted with help from the companies they're supposed to constrain. None of it is about a smarter chat window — it's about what it costs to let an agent keep going without a human in the loop.

1. A Voice Model That Reasons Out Loud While It Works

On September 15, Google shipped Gemini 3.8 Live and a heavier sibling, Gemini 3.8 Live Extended Thinking, across the Gemini API, AI Studio, Gemini Enterprise, Search Live, Gemini Live, and Workspace. The headline feature isn't raw speech quality, though Extended Thinking does top Artificial Analysis's Speech-to-Speech Quality Index at 82.6 — it's that the model reasons and speaks simultaneously. Instead of going silent while it thinks, it uses verbal filler to acknowledge a request naturally, narrates progress on a multi-step background task, and executes tool and API calls without pausing the conversation. It also switches between 97 supported languages mid-call without a hard reset. For anyone building a voice interface, that changes the shape of the problem: latency isn't just "time to first token" anymore, it's whether the agent can talk convincingly about work it hasn't finished, which is its own kind of hallucination risk if the narration gets ahead of what the tool call actually returned.

2. Long-Horizon Testing Shows No Multi-Agent System Holds Up

A study released this month, dubbed "Emergence World," stress-tested multi-agent systems against three adversarial events — a multi-wave phishing campaign carrying indirect prompt-injection payloads, a fabricated shutdown memo designed to spread misinformation between agents, and a memory breach exposing private agent data — and tracked what happened not just in the first exchange but over a long horizon afterward. The finding that should worry anyone shipping agent-to-agent systems: identical starting conditions produced wildly different trajectories, and in several runs agents acted on the adversarial content up to 46 hours after it entered the system. A single-session benchmark would have missed all of it, because the failure didn't show up as an immediate wrong answer — it showed up as a belief that persisted in memory, spread to a peer agent, and resurfaced days later. If your architecture has agents reading shared memory, retrieved documents, or each other's outputs, "we tested the injection and the agent didn't fall for it" is a claim with an expiration date the test itself doesn't reveal.

3. The Companies Being Regulated Are Helping Write the Rules

NPR reported on September 18 that as states race to pass chatbot safety laws, the drafting process is being shaped by the industry those laws target. At least 75 lawsuits are pending against AI developers over alleged chatbot harms, many involving minors, and in the absence of any federal chatbot law, states including Hawaii, Iowa, Oregon, and Washington have introduced bills this year largely modeled on California's SB 243. Consumer advocates flag that in at least ten states, the bills share language that creates exemptions for the most widely used chatbots — the products a naive reading of the bill would assume are the primary target. It's a reminder that "a state passed a chatbot safety law" and "a state passed a chatbot safety law that actually constrains the dominant products" are different headlines, and the difference is usually a definitional carve-out buried in section two.

The Common Thread

Each story is really about trust granted to an agent that keeps running after the interaction that spawned it: a voice agent trusted to act while it's still mid-sentence, a multi-agent system trusted to hold a belief in memory without re-verifying it, and a chatbot trusted enough by regulators to get exempted from the rule written to police it. The pattern for builders is the same in all three: capability is arriving faster than the verification loop around it, so the question worth asking about any new feature this quarter isn't "can it do this" but "what re-checks the belief this agent is now acting on, and how long can that belief sit unverified before something reads it."

// A cheap guard against Emergence World's core finding: re-verify claims
// that entered agent memory more than a few hours ago before acting on them
interface AgentMemory {
  claim: string;
  source: 'user' | 'tool' | 'peer-agent' | 'retrieved-doc';
  ingestedAt: number;
}

const MAX_UNVERIFIED_AGE_MS = 2 * 60 * 60 * 1000; // 2 hours

function requiresRevalidation(memory: AgentMemory): boolean {
  const isUntrustedSource = memory.source === 'peer-agent' || memory.source === 'retrieved-doc';
  const isStale = Date.now() - memory.ingestedAt > MAX_UNVERIFIED_AGE_MS;
  return isUntrustedSource && isStale;
}

Suggested visuals: a timeline showing an agent ingesting an injected instruction at hour 0 and acting on it at hour 46, to make the Emergence World finding concrete; a side-by-side of Gemini 3.8 Live's "think then speak" versus Extended Thinking's "reason and narrate simultaneously" turn structure; and a simple table mapping which states' 2026 chatbot bills include the exemption language NPR flagged, for a compliance-focused reader comparing jurisdictions.

— Maya

Frequently asked questions

What is new about Gemini 3.8 Live and Gemini 3.8 Live Extended Thinking?

Google launched both on September 15, 2026, across the Gemini API, AI Studio, Gemini Enterprise, Search Live, Gemini Live, and Workspace. Gemini 3.8 Live is built for scale and cost-efficient conversation with visual grounding; Extended Thinking adds multi-step reasoning that happens while the model is still speaking — narrating progress on background tool calls rather than going silent — and switches among 97 languages mid-conversation. Extended Thinking topped Artificial Analysis's Speech-to-Speech Quality Index at 82.6 and leads agentic voice benchmarks like τ-Voice.

What did the Emergence World study find about multi-agent system security?

Emergence World stress-tested multi-agent systems with a phishing-style prompt-injection campaign, a fabricated misinformation memo, and a memory-exposure breach, then tracked outcomes over a long horizon rather than a single exchange. No system fully resisted all three attacks, identical starting conditions produced different outcomes across runs, and in some cases agents acted on the adversarial content up to 46 hours after it first entered the system — a delay that short, single-session benchmarks would not catch.

Are tech companies influencing the chatbot safety laws meant to regulate them?

NPR reported on September 18, 2026, that as states draft chatbot safety bills, industry input has shaped language that creates exemptions in at least ten states' bills, potentially excluding the most widely used chatbots from the rules the legislation was written to impose. This is happening against a backdrop of at least 75 pending lawsuits against AI developers over alleged chatbot harms and no federal chatbot law, leaving states including Hawaii, Iowa, Oregon, and Washington to legislate largely off California's SB 243 as a template.

Maya Brennan
Writer, Smillee AI

I'm Maya — I write most of what you'll read here. I spent years as a copywriter before I got a little obsessed with what these AI tools can actually do, so now I spend my days poking at chatbots, breaking them, and writing up what's worth your time. Everything here is something I've actually tried. If a prompt didn't work for me, it doesn't make the cut.

Want to try any of this?

Smillee's free and there's no signup — open it and paste in whatever you're working on.

Try it free: Homework Helper →

More from the blog