How do AI workflows work?

An AI workflow chains a large language model to tools and data through predefined code paths, so each step feeds the next in a fixed, predictable order. This guide explains the five patterns Anthropic named (prompt chaining, routing, parall

5 patternsThe core AI workflow building blocks: chaining, routing, parallelisation, orchestrator-workers, evaluator-optimizerAnthropic, Building Effective Agents, December 2024
54%Of UK firms actively using AI in 2026, up from 35% in 2025BCC and University of Essex, March 2026
+19ppSingle-year jump in UK AI adoption to 2026, the biggest on record (Tom & Co analysis)Tom & Co analysis of BCC adoption series, 2023-2026
2.8xAI high performers more likely to have fundamentally redesigned workflows (55% vs 20%)McKinsey State of AI 2025, November 2025

An AI workflow is a system where a large language model and its tools are orchestrated through predefined code paths. You set the steps in advance, and each one feeds the next in a fixed order: the model drafts, a tool checks, another call refines. Unlike an AI agent, which picks its own path, a workflow does exactly what you designed every time. That predictability is why 55% of AI high performers report redesigning workflows (McKinsey, November 2025).

What is an AI workflow, and how is it different from an AI agent?

The clearest definition comes from Anthropic's engineering team. In their December 2024 guide Building Effective Agents, they draw a hard line between two things people lump together.

Workflows are "systems where LLMs and tools are orchestrated through predefined code paths." You, the builder, write the sequence. Agents are "systems where LLMs dynamically direct their own processes and tool usage," deciding for themselves what to do next.

Think of it as the difference between a recipe and a chef. A workflow is the recipe: fixed steps, same result each time, easy to test. An agent is the chef: hand it a goal and a kitchen, and it works out the order itself. Most business problems that pay back in 2026 are recipes, not chefs.

Dimension

AI workflow

AI agent

Who decides the steps

You do, in advance, in code

The model does, at runtime

Predictability

High: same path every time

Lower: path varies by input

Best for

Well-defined tasks with clear steps

Open-ended tasks with unpredictable steps

Cost and latency

Easier to cap and forecast

Can escalate as the model loops

Testing and audit

Straightforward: fixed inputs and outputs

Harder: behaviour is non-deterministic

Example

Draft a document, check it, rewrite it

Resolve a GitHub issue across many files

Anthropic's own advice is to reach for the simpler option first, and to add multi-step agentic systems only when simpler solutions fall short. A workflow is that middle rung. It gives you structure without handing the model the keys.

What are the five AI workflow patterns?

Anthropic named five building blocks. Almost every useful AI workflow you will build in a UK business is one of these, or two of them stitched together. Here is what each does and where it fits.

Prompt chaining

Prompt chaining decomposes a task into a sequence of steps, where each model call processes the output of the one before it. Anthropic's example: write an outline, check the outline against criteria, then write the document from the approved outline. You trade a little speed for a lot more accuracy.

Routing

Routing classifies an input, then sends it to a specialised follow-up. The example given is customer service: general questions, refund requests, and technical support each go down a different path with its own prompt. It works when the categories are distinct and classification is reliable.

Parallelisation

Here several model calls run at once and their outputs are combined. It splits two ways. Sectioning runs independent subtasks side by side, such as one model answering a query while another screens it for unsafe content. Voting runs the same task several times, such as several prompts reviewing code for security flaws, and flags an issue if any of them do.

Orchestrator-workers

A central model call breaks a task down, delegates the pieces to worker calls, then synthesises their results. The difference from parallelisation is that the subtasks are not fixed in advance. The orchestrator decides them based on the input, which suits coding changes that touch many files at once.

Evaluator-optimizer

One model call produces a response while a second evaluates it and feeds back, in a loop, until the output is good enough. Anthropic's example is literary translation, where a first pass misses nuance and a second reviewer catches it. It shines when you have clear criteria and iteration genuinely improves the result.

"Start with simple prompts ... and add multi-step agentic systems only when simpler solutions fall short." (Anthropic, Building Effective Agents, December 2024)

How do you build an AI workflow step by step?

The mechanics matter less than the sequence. A workflow that pays back tends to come together in the same five moves, whether it runs in n8n, a Python script, or a no-code tool your ops team already has.

1. Pin down the task. Write the job in one sentence with a clear input and a clear output. "Turn an inbound enquiry email into a drafted reply plus a CRM note." If you cannot state it that plainly, it is not ready to automate yet.

2. Break it into fixed steps. List the discrete stages: read the email, classify it, pull the relevant account data, draft the reply, log the note. Each stage is one model call or one tool call. This list is your workflow.

3. Give the model its tools and data. A model on its own only writes text. Connect it to the systems that hold the facts (your CRM, a document store, a search index) so it works from real data, not guesses. Retrieval is what stops the drafts being fiction.

4. Add a check before anything leaves the building. Insert a verification step: a rules check, a second model call, or a human sign-off. For anything client-facing or regulated, that check is not optional. It is the difference between a helpful draft and a costly mistake sent under your name.

5. Measure, then expand. Run it on real cases, track how often the output needs correcting, and only widen the scope once the error rate is low and documented. Start with one low-risk task and earn the right to the next.

What do AI workflows cost, and how fast do they pay back?

The recurring cost of the model calls is usually the small part. A single workflow run of a few chained calls costs pennies. The real spend is the build time and the tooling, and that is where UK teams either save money or waste it.

The payback maths is friendlier than most people expect. A UK knowledge worker costs roughly £24 an hour of productive time (Tom & Co analysis of ONS Annual Survey of Hours and Earnings 2024 data). A workflow that reliably saves each of a ten-person team even 20 minutes a day clears well over £20,000 of freed-up time a year, against a tooling bill that rarely tops a few thousand.

The catch is the word "reliably." A workflow that produces output nobody trusts, so everyone redoes it by hand, costs you the build and saves you nothing. That is why the check in step four earns its place, and why measuring the correction rate matters more than the raw model bill.

How many UK businesses actually use AI workflows in 2026?

Adoption of AI itself is now mainstream, but structured workflows are a narrower, faster-growing slice. According to the ONS Business Insights and Conditions Survey, around 25% of UK businesses were using some form of AI in late December 2025, rising to 44% of firms with 250 or more employees.

The British Chambers of Commerce, with the University of Essex, put the March 2026 figure higher at 54% of UK firms actively using AI, up from 35% in 2025. Here is the interesting one, though. Only around one in ten firms have gone past generic tools like ChatGPT and Copilot into deeper, bespoke integration, and it is that group building genuine workflows rather than typing prompts by hand.

Tom & Co analysis of the BCC adoption series (23% in 2023, 25% in 2024, 35% in 2025, 54% in 2026) finds the jump to 2026 was +19 percentage points in a single year, the largest annual gain on record and more than the previous two years combined (+2pp then +10pp).

So the gap is not adoption. It is depth. Most firms are using AI casually. The one-in-ten who have built it into repeatable workflows are the ones starting to see structural change, and the distance between the two groups is where the competitive advantage now sits.

Why do AI workflows drive more value than one-off prompts?

Casual prompting is genuinely useful, but it does not compound. Every task starts from scratch, quality swings with whoever is typing, and nothing is auditable. A workflow fixes the steps once, so the hundredth run is as reliable as the first and anyone can trigger it.

The data backs the effort up. McKinsey's State of AI 2025 report (November 2025) found that 23% of organisations were scaling agentic systems and 62% were at least experimenting, yet only around 6% qualified as high performers drawing more than 5% of EBIT from AI. What set that 6% apart? They were 2.8 times more likely to have fundamentally redesigned workflows (55% versus 20% of everyone else).

The lesson lands cleanly for a UK SME. Bolting a chatbot onto an unchanged process gets you a novelty. Redrawing the process around what the model does well, with the checks and data connections a workflow gives you, is what moves the numbers. The tool is not the win. The redesigned workflow is.

Where should a UK business start with AI workflows?

Pick one task that is high-volume, low-stakes, and clearly defined, and turn that into your first workflow before you touch anything client-critical. The goal of the first build is to learn the pattern cheaply, not to transform the business overnight.

  • Choose a repetitive internal task first. Inbound-enquiry triage, meeting-note summaries, or first-draft standard responses are ideal. Nothing goes to a client without a human check during the pilot.

  • Map the steps before you pick a tool. The five-step build above works in any platform. Get the sequence right on paper, then choose n8n, a script, or a no-code tool.

  • Connect it to your real data. A workflow that reads from your CRM or document store beats one that guesses. This is where retrieval turns a clever demo into something trustworthy.

  • Instrument the correction rate. Track how often a human has to fix the output. That single number tells you when to expand and when to stop.

  • Only then consider an agent. If the task genuinely needs the model to decide its own steps, that is when a workflow graduates to something more autonomous. Most tasks never need to.

The firms getting the most from AI in 2026 are not the ones with the flashiest tools. They are the ones who took a dull, repetitive process, gave it fixed steps and a verification gate, and measured the result. That is all an AI workflow really is, and it is the cheapest competitive edge on the table right now.