← Back to blog·Trends·6 min read

Apple Is Shipping an AI Chatbot to a Billion Devices, OpenAI Just Became a Login Provider, and Congress Wants Chatbots to Verify Who They're Talking To

Bloomberg reports Apple's Siri overhaul ships this fall in iOS 27 and will instantly become the most widely distributed AI chatbot on Earth — while opening Siri to rival assistants beyond OpenAI. Days earlier, 'Sign in with ChatGPT' launched in beta with six developer partners, turning OpenAI into an identity provider. And a bipartisan Senate bill is pushing mandatory family accounts for chatbot access. Three stories, one throughline: identity is becoming the layer chatbot products compete and comply on.

By Maya Brennan · Writer, Smillee AI
August 5, 2026

Three stories broke in the same week, and none of them is about a smarter model. They're about who a chatbot is running on, who it trusts to say who you are, and who it's legally required to check before it answers. Distribution, identity, and compliance are converging on the same question — "who is actually asking?" — and that's a bigger shift for builders than another benchmark table. Here's what happened, and what's worth checking against your own stack.

1. Apple's Chatbot Ships This Fall — and It Won't Only Run Apple's Models

Bloomberg reports that Apple's long-delayed Siri overhaul, internally code-named Campos, ships this fall in iOS 27 as the company's first real AI chatbot: deeply embedded in iPhone, iPad, and Mac, capable of drafting messages, generating images, and searching across a user's personal data in ways the current Siri never could. The headline number isn't a benchmark — it's distribution. The moment it ships preinstalled on the installed base of every iPhone still in service, it becomes, by raw reach, the most widely used AI chatbot on the planet, without a single user having to choose it.

The detail that matters more for architecture is a separate March report: Apple plans to open Siri to rival AI assistants beyond its existing OpenAI partnership, letting competing services plug into the same system-level interface. That's Apple choosing not to bet the whole experience on one model vendor — the chatbot users see stays constant while the model answering underneath it can be swapped, per request or per region, without the user noticing a UI change.

// Single-vendor assistant: one model, one contract, one point of failure
const assistant = { backend: 'openai', fallback: null };

// Pluggable assistant: what Apple is reportedly building toward
const assistant = {
  backend: selectProvider({ region, capability, cost }),
  providers: ['openai', 'google', 'anthropic', 'apple-on-device'],
};
// The interface a user sees never changes; the model answering behind
// it becomes a runtime decision instead of a build-time one.

If your product still hardcodes a single model vendor behind your chat interface, this is a reasonable week to ask whether that's a deliberate choice or just the first integration you happened to ship.

2. OpenAI Launched a Login Button — and Started Competing With Google for the Web's Front Door

On August 2, "Sign in with ChatGPT" went live in beta as OpenAI's first cross-platform identity system, with six named launch partners — Airtable, GitLab, HubSpot, Notion, Supabase, and Vercel — letting users authenticate into those products with their ChatGPT account instead of a separate email and password. Clicking through shares three fields with the partner app: name, email, and profile picture, the same minimal handshake "Sign in with Google" has run for a decade. The difference is who's issuing the token: an AI assistant vendor now sits in the same identity-provider seat as Google, Apple, and Microsoft.

That's a bigger architectural move than a new login button suggests. An identity provider doesn't just authenticate a session — it accumulates a signal of which products a given user actually uses, which is exactly the graph a model needs to get better at knowing what a user means without being told twice. If your chat product currently treats "who is this user" and "what has this user done elsewhere" as unrelated questions, a vendor merging them into one login flow is worth watching closely, because it changes what "sign in with" competitors are willing to build against.

// Before: identity and AI context are separate systems
const session = await googleAuth.verify(token);
const chatContext = await chatVendor.getHistory(session.userId); // no link

// After: the identity provider IS the AI vendor
const session = await openaiAuth.verify(token);
// session now implicitly carries a relationship with the model
// your app is also calling for chat — same vendor, same account.

3. Congress Wants Every Chatbot to Know Whether It's Talking to a Kid

The bipartisan CHATBOT Act, from Senate Commerce Chairman Ted Cruz and Senator Brian Schatz with Senators John Curtis and Adam Schiff, would require AI companies to build mandatory family accounts: parental consent and monitoring for users under 13, optional-but-consent-gated teen accounts, limits on manipulative engagement design, and a ban on targeted advertising to minors. It's moving alongside a parallel Senate push, the Senior Chatbot Protection Act, which would require chatbots to disclose they're AI — not a human — and add extra guardrails specifically around health and financial conversations with older users. Different bills, same architectural ask: a chatbot should behave differently depending on who's on the other end, and it should be able to prove it knows.

That's a real engineering requirement, not just a policy one. Most chat products today have a single conversational policy applied uniformly regardless of the account behind it. A regime that expects age-appropriate limits for a 12-year-old and disclosure-plus-guardrails for a senior asking about medication interactions means the account layer — the same layer Apple and OpenAI are both racing to own — has to carry enough signal for the model to change its own behavior, not just its evaluation logic.

// Uniform policy: same chatbot behavior for every account
const response = await model.chat(messages, { policy: 'default' });

// Identity-aware policy: what family-account legislation is pushing toward
const policy = derivePolicy({ ageband: account.ageband, accountType: account.type });
const response = await model.chat(messages, { policy });
// 'default' stops being a valid answer once the account layer
// is expected to know it's talking to a 12-year-old or a senior.

What This Means for Builders

None of this week's three stories is about model quality. Apple shipping a chatbot to a billion devices while staying open to rival backends is a bet that distribution and model choice can be decoupled — worth copying if your product is currently locked to one vendor by convenience rather than necessity. OpenAI becoming an identity provider is a bet that "who you are" and "what the AI knows about you" are more valuable merged than kept apart, and it's a pattern Google and Apple will now have to answer. And the family-account wave in Congress is the clearest signal yet that "one policy for every user" is a design choice regulators are actively closing off. Check your own account layer against whichever of the three actually touches what you're shipping.

Maya

Frequently asked questions

What is Apple's new Siri AI chatbot and when is it shipping?

According to Bloomberg reporting, Apple is shipping an overhauled, AI-native version of Siri — internally code-named Campos — this fall in iOS 27. It is described as Apple's first real AI chatbot, deeply embedded across iPhone, iPad, and Mac, capable of drafting messages, generating images, and searching across a user's personal data. Because it ships preinstalled on Apple's existing device base, it stands to become the most widely distributed AI chatbot by raw reach the moment it launches. Separately, Bloomberg has reported Apple plans to open Siri to rival AI assistants beyond its existing OpenAI partnership, letting competing model providers plug into the same system-level interface.

What is "Sign in with ChatGPT" and how does it work?

"Sign in with ChatGPT" launched in beta on August 2, 2026 as OpenAI's first cross-platform identity system, with six named launch partners: Airtable, GitLab, HubSpot, Notion, Supabase, and Vercel. Users on a participating platform can authenticate with their ChatGPT account instead of a separate login; the partner app receives the user's name, email address, and profile picture, similar to how "Sign in with Google" works. It positions OpenAI as an identity provider alongside Google, Apple, and Microsoft, competing for the login layer across the web.

What would the CHATBOT Act require chatbot companies to do?

The CHATBOT Act, introduced by Senate Commerce Chairman Ted Cruz and Senator Brian Schatz along with Senators John Curtis and Adam Schiff, would require AI chatbot companies to offer mandatory family accounts: parental consent and monitoring controls for users under 13, consent-gated optional accounts for teens, limits on manipulative engagement design, and a ban on targeted advertising to minors. It is moving alongside the separate Senior Chatbot Protection Act, which would require chatbots to disclose they are AI rather than a human and add extra safeguards around health and financial conversations involving older users — together pointing toward chatbot products needing to know and adapt to who is on the other end of a conversation.

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.

Start chatting →

More from the blog