“Agent” has become the word for anything with AI in it. That makes buying decisions harder, because a deterministic workflow, a workflow with a few AI steps and a genuinely autonomous agent differ in cost, reliability and what you have to govern.
Three levels, defined plainly
Deterministic workflow. A fixed sequence of steps with explicit rules. Same input, same output, every time. “When a form is submitted, create a CRM contact, assign the owner by region, send a Slack message.” It has no judgement, which is exactly why it is predictable and easy to test.
Workflow with bounded AI steps. The same fixed sequence, but one or more steps call a language model for a narrowly defined task: classify this email, extract these five fields, draft a reply in this tone. The model does not decide what happens next; the workflow does. AI output is checked against a confidence threshold, and uncertain cases are routed to a person.
Agent. A system given a goal and a set of tools that decides for itself which steps to take, in which order, and when it is finished. “Resolve this support ticket” rather than “classify this ticket”. Agents are flexible and can handle situations nobody scripted. They are also harder to test, harder to explain and harder to bound.
Most of what is sold as an agent today is the second category with a better name. That is not a criticism. For most business processes, the second category is what you should want.
Decision table
| Question | Deterministic workflow | Workflow with AI steps | Agent |
|---|---|---|---|
| Are the rules fully known and stable? | Yes | Mostly; some inputs are unstructured | No; the path varies per case |
| Is the input structured? | Forms, database records, webhooks | Emails, PDFs, free text, images | Anything, including ambiguous goals |
| Can you write a test that must pass? | Yes, exactly | Yes, with a tolerance and a sample set | Only statistically |
| Cost of a wrong action | Low to high; caught by validation | Bounded by threshold and approval | Potentially compounding across steps |
| Typical running cost | Platform fees only | Platform plus modest model usage | Platform plus significant, variable model usage |
| Explainability | Complete | Per step, with logged outputs | Partial; reasoning traces, not guarantees |
| Best for | Syncing, routing, reminders, reporting | Triage, extraction, drafting, summarising | Open-ended research, multi-system investigation, exploratory tasks |
Where agents fail
The failure modes are well understood, and they are structural rather than temporary.
- Compounding error. If each of eight steps is 95% reliable, the whole chain succeeds about two-thirds of the time. A deterministic workflow with one bounded AI step has one place to be wrong, and a threshold to catch it.
- Silent scope creep. An agent with write access to a CRM and a mailbox will, on some fraction of runs, take an action nobody intended. The action is usually reasonable-looking, which makes it worse.
- Unbounded cost. Agents loop. Without hard limits on steps, tokens and time, a stuck run can burn a month’s model budget in an afternoon.
- Untestable acceptance. “It usually does the right thing” is not an acceptance criterion a finance manager can sign.
- Model drift. A model update changes how an agent plans. A workflow’s structure survives an update; its one AI step can be regression-tested in an hour.
Governance implications
The choice is also a governance choice. Under the EU AI Act, most provisions apply from August 2026, and use cases touching employment, access to essential services, credit or certain biometric data need particular care. Under GDPR and UK data-protection law, automated decisions with legal or similarly significant effects on people require safeguards. None of this makes agents illegal; it makes autonomy expensive to justify.
In practice, moving from a bounded AI step to an agent raises these questions:
- Which actions can the system take without a person, and how is that list enforced technically rather than in a prompt?
- What data does the agent see, and is that the minimum for the task?
- How is every action logged so that a decision can be reconstructed and, if necessary, reversed?
- Who reviews the logs, how often, and what triggers a rollback?
- Where is the kill switch, and who can press it?
We design privacy, access controls, human oversight and documentation into each workflow, then identify where specialist legal or security review is required. We do not claim blanket compliance with any regulation, because compliance depends on the exact role, data and use case.
When an agent is the right answer
There are real cases. Investigating a customer complaint across five systems where the path depends on what is found. Researching a supplier before onboarding. Drafting a first-pass analysis where the value lies in exploration rather than repetition. The common features: the task is open-ended, the output goes to a person who reviews it before anything happens, and the cost of a wrong run is time rather than money or trust.
Even then, the agent should run inside a workflow. The workflow decides when the agent starts, what tools it has, how many steps it may take, and what happens to its output. The agent is a component, not the system.
Our recommendation
Start deterministic. Add a bounded AI step where the input is unstructured and the task is narrow. Put a confidence threshold and a human approval on every AI output that writes to a system of record or reaches a customer. Introduce an agent only for a task that is genuinely open-ended, only with hard limits on actions, steps and cost, and only after the surrounding workflow has been running reliably for a while.
This is not caution for its own sake. It is the sequence that produces workflows a business can still explain a year later, after two model updates and a change of staff.
Next actions
- Take one process you want to automate and write down its rules. If you can, it is a workflow. Where you cannot, mark the step — that is where an AI step belongs.
- Decide which outputs may reach a customer or a system of record without a person seeing them first. Usually the answer is “none yet”.
- Read how we handle security and governance, or look at the example workflows to see where the AI steps sit.
Sources
- European Commission, Regulatory framework for AI (EU AI Act), 2026 — https://digital-strategy.ec.europa.eu/en/policies/regulatory-framework-ai
- European Commission, Navigating the AI Act FAQ, 2026 — https://digital-strategy.ec.europa.eu/en/faqs/navigating-ai-act
- ICO, AI and data protection guidance, 2025 — https://ico.org.uk/for-organisations/uk-gdpr-guidance-and-resources/artificial-intelligence/
- NIST, AI Risk Management Framework, 2023 — https://airc.nist.gov/airmf-resources/airmf/
- McKinsey, The State of AI: Global Survey, 2026 — https://www.mckinsey.com/capabilities/quantumblack/our-insights/the-state-of-ai