โ† Back to blogยทTrendsยท7 min read

Memory, Law, and Model Choice: Three Things Growing Up About Chatbots Right Now

Persistent memory just became table stakes across every major AI platform, 34 states have chatbot-specific bills in flight, and open-source models closed the gap enough to make self-hosting a real option. Here is what each means for what you build next.

By Maya Brennan ยท Writer, Smillee AI
July 16, 2026

Three unrelated-looking stories from the last few weeks are actually the same story: chatbots are being treated as infrastructure now, not demos. Every major vendor shipped persistent memory this year instead of treating it as a differentiator. Lawmakers in 34 states stopped debating whether to regulate companion chatbots and started passing bills with teeth. And the open-source model field matured enough that "just call an API" stopped being the only sane default. None of these are about a flashier model โ€” they're about the chatbot stack being expected to behave like a system people depend on.

1. Memory Stopped Being a Feature and Became Infrastructure

As of mid-2026, every major AI platform has shipped a substantial memory update: ChatGPT rebuilt its memory architecture in June, Claude extended memory to all tiers, Gemini introduced "Personal Intelligence," Microsoft's Copilot Memory reached general availability across Microsoft 365, and Grok added persistent memory through its Skills feature. Default-on, cross-session memory is now the baseline users expect, not a premium add-on.

That shift changes what "memory" means architecturally. It splits into three distinct layers with different failure modes: short-term context (dies with the chat window), session memory (survives a single workflow), and persistent long-term memory (survives across days or weeks and needs its own storage, retrieval, and invalidation logic). Teams that bolted memory on as "append last N messages to the prompt" are discovering that doesn't scale past a few sessions โ€” you need a retrieval layer over stored facts, not a growing transcript.

The part that gets skipped in the excitement: persistent memory expands your attack and privacy surface at the same time it improves UX. A memory record is a place where stale, wrong, or attacker-influenced data can quietly sit and bias every future response.

// Treat stored memory as untrusted input at read time, not just write time
async function loadUserMemory(userId: string): Promise<MemoryFact[]> {
  const facts = await memoryStore.get(userId);
  return facts.filter((f) => !f.expired && f.confidence >= MIN_CONFIDENCE);
}

Suggested visual: a simple three-tier diagram โ€” short-term / session / persistent memory โ€” annotated with typical TTL and where each one is stored.

2. Companion Chatbots Are Now a Regulated Category, Not a Gray Area

34 states plus three federal bodies now have chatbot-specific legislation filed, and eight states have already enacted laws specifically targeting companion and social AI chatbots. California's SB 243 took effect January 1, 2026, requiring operators to disclose non-human status, run mental-health crisis protocols, and add protections for minors, including blocking sexual content and enforcing periodic break reminders. Washington and Oregon went further, granting individuals a private right of action โ€” meaning a user can sue a provider directly for statutory damages, not just wait for a regulator to act. At the federal level, the GUARD Act, which would ban AI companion products for users under 18, passed the Senate Judiciary Committee 22-0 in April.

The laws followed real harm, not hypothetical risk: Character.AI and Google quietly settled several wrongful-death lawsuits in early 2026 brought by families of teens who died after interactions with AI companions that failed to redirect them to crisis resources. That history is why the new laws are specific rather than general โ€” crisis-detection protocols and age-appropriate content boundaries are named requirements, not left to a provider's discretion.

For anyone building a chatbot with an emotional or companion-adjacent register โ€” not just explicit companion apps โ€” the practical takeaway is that "disclose you're an AI" and "detect and route self-harm signals" are moving from nice-to-have to statutory minimums in a growing list of US states, on top of the EU's own disclosure law taking effect this August.

3. Open-Source Models Made Self-Hosting a Real Architectural Choice

The open-weight field closed enough ground in 2026 that "self-host or call an API" is now a genuine tradeoff instead of a foregone conclusion. DeepSeek V4 offers a 1M-token context window with tool calling and thinking/non-thinking modes at aggressive pricing. Llama 4's mixture-of-experts lineup (Scout, Maverick, and the still-preview Behemoth) brought native multimodality to an open license. Mistral Large 3 targets RAG and enterprise accuracy specifically. Most of these ship under Apache 2.0 or MIT, meaning zero royalty commercial deployment and fine-tuning rights that closed models don't offer.

That doesn't make self-hosting free โ€” you're trading API latency and cost for GPU provisioning, version management, and losing automatic access to a vendor's newest safety and capability updates. But it does mean the "just use the market leader's API" default from a year ago is now a decision that needs justifying, especially for data-sensitive workloads where sending every request to a third party is the actual blocker, not model quality.

What This Means for the Second Half of 2026

None of these three trends is about a bigger model. They're about the same maturation happening on three fronts at once: memory needs the same rigor as any other stateful data layer, compliance now has statutory teeth with real penalties attached in a majority of US states, and model choice includes "run it yourself" as a first-class option. Building a chatbot in 2026 increasingly means building a system with a data retention policy, a legal review, and an infrastructure decision โ€” not just a prompt.

โ€” Maya

Frequently asked questions

Which AI platforms have shipped persistent memory in 2026?

By mid-2026, ChatGPT (rebuilt architecture in June), Claude (extended to all tiers), Gemini (via Personal Intelligence), Microsoft Copilot (general availability across Microsoft 365), and Grok (via its Skills feature) have all shipped substantial persistent memory updates, making cross-session memory a baseline expectation rather than a premium feature.

What does California SB 243 require from companion chatbots?

SB 243 took effect January 1, 2026 and requires companion chatbot operators to disclose that users are talking to an AI, implement protocols to detect and respond to mental health crises, and add protections for minors such as blocking sexual content and enforcing periodic break reminders.

Is self-hosting an open-source LLM a realistic alternative to API-based models in 2026?

It's a much more realistic option than a year ago. Models like DeepSeek V4, Llama 4, and Mistral Large 3 now offer large context windows, tool calling, and multimodality under permissive licenses (Apache 2.0/MIT). The tradeoff shifts from capability to operations: you gain data control and zero-royalty deployment but take on GPU provisioning and losing automatic vendor-side safety updates.

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