Traditional customer service chatbots have a well-deserved reputation for being useless. Click through four menus, hit a dead end, get bounced to a human who then asks for all the same information the bot already collected. If that’s your frame of reference for “AI in customer support,” the conversation happening in 2026 about AI agents is going to sound very different.

The distinction isn’t incremental. It’s architectural.

What Made Chatbots Bad

Classic chatbots were decision trees with a natural language wrapper. They matched your input to an intent, pulled a predefined response, and had no real ability to do anything with what you told them. They could tell you store hours. They couldn’t actually help you change your delivery address when the courier was already out.

The next generation — powered by large language models — was better at understanding what you were saying, but still largely stateless and action-limited. They could craft a sympathetic response. They couldn’t look up your order, check whether a refund was within policy, initiate the refund, and confirm it — all in one conversation.

AI agents can do that second thing. That’s the shift.

The Architecture of a Real Support Agent

An AI agent handling customer support is a system with several moving parts, not a single model generating text.

The intake layer parses the incoming message and establishes context: who is this person, what’s their history, what are they asking for? This usually means tool calls into your CRM, helpdesk, and order management system before the agent has typed a single word in response.

The reasoning layer works out what the customer actually needs — not just what they said. A message reading “this is ridiculous I’ve been waiting three weeks” needs to be decomposed into: emotion (frustrated), underlying issue (delayed order), what resolution looks like (refund, replacement, or status update), and what the policy constraints are.

The action layer is where the agent does something. This is the piece most traditional chatbots lacked entirely. A support agent that can call your API to check order status, apply a discount code, initiate a refund, update shipping addresses, or schedule a callback — and then confirm what it’s done in natural language — is resolving the ticket rather than just acknowledging it.

The escalation layer handles the cases where the agent recognises it’s out of its depth: policy exceptions, emotionally escalated customers, high-value accounts that warrant human handling, and genuinely novel situations that don’t fit the playbook.

What Sierra, Intercom Fin, and Zendesk Are Actually Doing

Sierra AI (co-founded by Bret Taylor) built their platform specifically around the agentic architecture — every support interaction is a goal the agent is trying to accomplish, not a response it’s generating. The key difference is that Sierra agents have persistent conversation state and can take multi-step actions across your backend systems within a single session.

Intercom’s Fin 2.0 takes their existing AI assistant and extends it with explicit action capabilities — it can look up records, trigger workflows, and close tickets without human involvement for cases that fit defined resolution paths. The company reports that a substantial portion of tickets across their customer base now reach resolution without human intervention on the first contact.

Zendesk’s approach integrates AI agents into their existing ticketing infrastructure, so the agent works within familiar queue management and reporting systems rather than as a separate overlay. For teams already invested in Zendesk workflows, this matters — you don’t want a separate system that creates visibility gaps.

Where the Human Still Matters

Here’s the thing: none of these systems are designed to replace human support agents. They’re designed to handle the volume of repeatable, policy-compliant resolutions so that human agents spend their time on cases that actually require judgement.

Refund requests within policy. Password resets. Order status queries. Billing explanation questions. These account for a large percentage of ticket volume in most support operations, and they’re exactly what AI agents handle well. Human agents then get to spend their time on the account that’s threatening to churn, the regulatory complaint that needs a careful response, and the edge case where someone needs to feel heard by an actual person.

The escalation design is genuinely important here. An agent that escalates badly — too early, too late, or without context — creates more frustration than a well-designed chatbot. The best implementations pass the full conversation transcript, the actions already taken, and a summary of why the escalation is happening when handing off to a human agent. No re-explaining from scratch.

Practical Considerations Before Deploying

Your knowledge base is the limiting factor. An AI agent can only resolve issues it has correct information to work with. If your internal documentation is out of date, contradictory, or incomplete, the agent will either give wrong answers or escalate everything. Pre-deployment knowledge auditing typically surfaces gaps you didn’t know existed.

Integration depth determines resolution rate. An agent that can only read your knowledge base resolves far fewer tickets than one that can also read and write to your order management and CRM. The deeper the tool access, the more categories of issue the agent can actually close.

And data handling needs careful design from the start. You’re processing customer personal data through AI systems, which means GDPR considerations apply directly — data retention, processing basis, customer-facing transparency about automated decision-making. This isn’t a blocker but it needs to be baked into the architecture rather than retrofitted.

The Realistic Expectation

Teams that deploy AI support agents with thoughtful implementation — good knowledge bases, meaningful action capabilities, well-designed escalation paths — typically see a substantial reduction in tickets requiring human resolution for routine categories. The customers get faster, more consistent answers. The support team handles fewer repetitive tickets.

The unrealistic expectation is that you deploy a model and your support costs halve overnight. The realistic expectation is that a well-integrated agent system makes your existing support operation significantly more efficient while improving response speed for the cases it handles well. That’s still a genuine operational improvement, and it compounds as you refine the system over time.

Sources