Think Build Implement Repeat
AI & Machine Learning

What an AI Agent Actually Does, in Plain Terms

Last updated:

Three words that get used interchangeably and should not be

A chatbot answers questions in a conversation. An automation runs a fixed sequence of steps. An agent is given a goal and some tools, and works out the sequence itself, step by step, reacting to what it finds.

The distinction matters commercially because they have wildly different costs and risk profiles. Automations are predictable and cheap to run. Agents are flexible and cost more per task, both in tokens and in the effort required to keep them behaving.

The test for whether you need one

Ask whether the steps are the same every time. If yes, do not buy an agent. A fixed pipeline that does the same six things in the same order is cheaper, faster, easier to test and impossible to talk into doing something strange.

If you can draw the process as a flowchart and it fits on one page without loops, you want an automation. If drawing it requires the phrase “it depends what we find”, an agent starts to earn its cost.

Where agents genuinely earn their keep today

  1. Triage and routing. Read an enquiry, work out what it is, gather what is needed, route it with a summary. The variety is the point.
  2. Research and consolidation. Pull from several sources, reconcile, produce a briefing with citations. Slow for a person, well suited to a tool-using agent.
  3. Multi-step resolution with checks. A support case that needs a lookup, a policy check and an action. Each step is simple; choosing which comes next is not.

What they still get wrong

Agents fail in characteristic ways. They loop, repeating a step that did not work. They stop early and declare success. They take a plausible but wrong path when the data is ambiguous. None of these are exotic bugs — they are the normal behaviour of a system doing probabilistic planning.

Which is why every production agent needs boundaries: a step limit, a cost ceiling, a list of tools it may call, and a rule about which actions require human confirmation. Anything that spends money, sends external communication or deletes something belongs behind that confirmation.

The cost model people get wrong

Agents charge per step, not per task, and a task can take fifteen steps. Budget by expected steps rather than by request, and instrument the distribution — the average is fine, the tail is what surprises you on the invoice.

PatternTypical cost per taskBest for
Single model callFractions of a pennyClassification, extraction, drafting
Retrieval plus one callA penny or twoAnswering from your own documents
Agent, 5–15 stepsSeveral pence to tens of penceVariable multi-step work
Agent with long researchPounds, occasionallyHigh-value one-off analysis

How to start without betting the quarter

Choose one workflow with genuine variability, that a person currently does in ten to thirty minutes, and where a wrong answer is embarrassing rather than catastrophic. Run the agent in draft mode for a fortnight — it produces the output, a person approves it, and every disagreement is logged.

That log is the whole project. It tells you the real accuracy, it shows which failures are systematic, and it is the evidence you need to decide whether to let the agent act without approval.

Frequently asked questions

Do AI agents replace staff?

In our projects they have mostly replaced the queue rather than the person — the first pass happens instantly and a human handles what is escalated. Where headcount has changed, it was because volume grew without new hires rather than because roles were removed.

Which model should an agent use?

Usually more than one: a fast, cheap model for classification and routing, a stronger one for the steps that need reasoning. Paying top-tier prices for every step is the most common way to make an agent uneconomic.

How do we stop it doing something stupid?

Restrict the tools it can call, require confirmation for anything with external consequence, cap steps and spend, and log every action with its reasoning. Constraint is not a limitation on agents — it is the design.

What does an agent build cost?

A single well-scoped workflow agent with tool access, guardrails and a review interface typically runs £12,000–£35,000. The interface for humans to review and correct is often a third of that, and skipping it is a false economy.

Keep reading

Got a process that varies too much to automate?

That is exactly where agents fit. Tell us what it involves and we will say whether it is an agent job, an automation job, or neither yet.

Book a free 30-minute call Get a project estimate WhatsApp us

Related services

What we build for problems like this one

AI AgentsMachine LearningAI Integration