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

The Chat Window Just Became a Storefront, a Newsroom, and a Liability Surface

ChatGPT can now book a restaurant table through OpenTable, Resy, and Yelp without leaving the conversation, the New York Post launched its own branded AI chatbot to keep readers off external answer engines, and Colorado's new chatbot law bans AI from running therapy sessions unsupervised while pinning the liability on whoever deploys the bot. Three signals about how much the chat interface is now expected to carry.

By Maya Brennan ยท Writer, Smillee AI
August 13, 2026

Three stories broke this week that have nothing to do with a new model, and everything to do with what the chat window is now being asked to do. One turns it into a place you complete a real-world transaction. One turns it into a publisher's own front door, built to compete with the answer engines eating their traffic. One draws a hard legal line around what a chatbot is allowed to do unsupervised, and hands the bill to whoever shipped it. Here's what changed and what it means if you're building conversational products right now.

1. ChatGPT Stopped Being a Recommendation Engine and Started Taking Bookings

On August 10, OpenAI rolled out live restaurant booking inside ChatGPT through OpenTable, Resy, and Yelp. Ask for a table and the assistant doesn't just suggest a restaurant and hand you a link โ€” it surfaces real-time availability inline, lets you refine by time, party size, cuisine, or price in the same conversation, and completes the reservation or waitlist join without a tab switch. Yelp's integration alone covers thousands of US and Canadian restaurants at launch.

The interesting part for builders isn't the booking itself, it's where OpenAI drew the boundary. You can create a reservation from chat, but you can't change or cancel one โ€” that still has to happen on the partner's own app or site. That's a deliberate scope cut, not an oversight: the riskier, higher-stakes half of the transaction (undoing something a user already committed to) stays on rails the partner controls, while the low-risk half (discovery and creation) gets absorbed into the conversation.

// The pattern worth copying: let the chat surface own the low-risk
// half of a transaction, and hand off the reversible/high-stakes half.
async function handleBookingIntent(intent: BookingIntent) {
  const slots = await partner.searchAvailability(intent);
  const confirmed = await chat.confirmWithUser(slots);
  await partner.createReservation(confirmed); // create: in-chat
  return {
    confirmation: confirmed,
    manageUrl: partner.manageLink(confirmed.id), // modify/cancel: handed off
  };
}

If you're wiring any third-party action into a chatbot, this is the template: don't assume "the AI can start it" means "the AI should be able to undo it too." Scope each action independently, and be explicit with users about which half you actually control.

2. Publishers Are Building Their Own Chatbots to Stop Losing the Front Door

Also this week, New York Post Media Group launched Hamilton, a suite of AI products built on Google Cloud that includes a reader-facing chatbot ("Hamilton Search"), a personalized briefing, a recommendation engine, and a commentary-discovery tool โ€” all aimed at getting readers to discover more of the paper's own content instead of getting their answer from ChatGPT or Google's AI Overviews and never clicking through.

This is a different move than the AEO (answer-engine-optimization) dashboards publishers have been adopting to get cited by other companies' bots. Hamilton is a publisher deciding not to just optimize for someone else's chatbot, but to build a competing one on their own content, indexed within seconds of publication so their own assistant can answer questions before a reader goes elsewhere to ask. Expect more publishers, retailers, and any content business with a loyal audience to make the same calculation: if a chatbot is going to be the thing users ask instead of browsing, better it's yours than a platform's.

For chatbot builders, this is a live case study in retrieval freshness at a scale most projects don't hit โ€” Hamilton's backend has to ingest, index, and make a newly published article searchable within seconds, not the batch-refresh cadence a lot of RAG pipelines are built around. If your product has any "new content should be answerable immediately" requirement, this is the bar publishers are now setting.

3. Colorado Just Told Chatbots What They're Not Allowed to Do Alone

Colorado's Chatbot Safety Act, signed in May and enforceable from January 1, 2027, is starting to shape roadmaps now because of its companion bill, HB26-1195: it bars AI chatbots from conducting psychotherapy sessions or producing treatment plans without human review, on top of the core law's requirements to disclose AI identity, estimate user age, and follow a defined self-harm response protocol. Critically, compliance liability sits with the operator deploying the chatbot, not the lab that built the underlying model โ€” so "we just call the API" is not a shield.

For anyone building a wellness, coaching, or support bot that edges into emotionally sensitive territory, the practical takeaway is to treat "is this AI unsupervised at the point where it starts to look like therapy" as a design question, not a legal afterthought. A human-in-the-loop checkpoint before any treatment-plan-shaped output ships isn't just good practice anymore in Colorado โ€” by next January, it's the law, and it's your liability, not your model provider's.

What Connects the Three

None of these stories is about model capability. They're about how much responsibility the chat window itself is being asked to hold: complete a real transaction without escalating it into one it can't safely undo, become a publisher's primary product surface with retrieval speed to match, and stay legally inside the lines of what an unsupervised AI is allowed to say to someone who's struggling. Ship in this space right now and you're not just picking a model โ€” you're deciding how much of the real world your conversation is allowed to touch, and who's on the hook when it does.

Suggested visuals for this post: a simple flow diagram showing the OpenTable/Resy/Yelp booking handoff (create in-chat, manage on partner) to make the scope boundary concrete; and a side-by-side of a publisher's AEO dashboard versus an in-house chatbot like Hamilton, to visualize the "optimize for their bot" vs. "build your own" strategic fork.

โ€” Maya

Frequently asked questions

Can you book a restaurant directly inside ChatGPT now?

Yes. As of August 10, 2026, ChatGPT integrates with OpenTable, Resy, and Yelp to let users search real-time availability and complete a restaurant booking or join a waitlist without leaving the conversation. The integration is scoped to creating reservations only โ€” changing or cancelling a booking still has to be done on the partner platform's own app or website, not through chat.

What is the New York Post's Hamilton AI chatbot?

Hamilton is a suite of AI-powered personalization tools New York Post Media Group launched on August 11, 2026, built on Google Cloud. It includes a reader-facing chatbot called Hamilton Search, a personalized news briefing, a content recommendation engine, and a commentary-discovery tool, all designed to help readers find more of the publisher's own content directly rather than getting answers from external AI chatbots or search engines and never visiting the site.

What does Colorado's Chatbot Safety Act ban chatbots from doing?

Colorado's Chatbot Safety Act (HB26-1263) and its companion bill (HB26-1195) require AI chatbot operators to disclose that users are talking to AI, estimate user age, follow a defined self-harm response protocol, and โ€” specifically โ€” prohibit chatbots from conducting psychotherapy sessions or generating treatment plans without human review. The law was signed in May 2026 and becomes enforceable January 1, 2027. Compliance liability falls on the operator deploying the chatbot, not the company that built the underlying AI model.

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