Skip to content

Chapter 2 — Five modes of AI use

Most of the noise about AI lumps every use into one pile. This book does not. There are five recognisable modes, and only one of them is what the rest of the book teaches. The other four are legitimate, mostly don't need this method, and are out of scope — but only up to a point. At G3 Route, where the method picks AI tools for a piece of a problem, the four come back as the capability palette the method draws from.

2.1 The five, briefly

Generative work. AI produces an artefact. Copy, image, audio, video, code snippet, slide, jingle. The output is the point. Someone with taste asks the AI to make the thing, reads or watches or listens, and keeps what is useful. Examples: marketing copy, a storyboard, product imagery, a draft blog post.

Conversation and reflection. AI as thinking partner. Researching, learning, summarising, interpreting, challenging, steel-manning, talking a decision through. The primary output is a better-informed person — even when the work leaves behind notes, a briefing, or a themes document along the way. The artefact, if there is one, is a working document for the thinker; the point is still the thinking. Examples: researching an unfamiliar field before a decision, pressure-testing a draft argument, interpreting a long report, asking for the view from a different angle.

Building. AI as co-builder. Code, prototypes, drafts, small utilities. Faster, smoother, more ambitious than the builder alone — but the builder is still in charge of what gets built. Examples: pair-programming on a feature, drafting a spec with the AI in the room, prototyping a data transform you would never otherwise find time for.

Augmentation. AI enables a faculty that was limited. Real-time translation during a conversation, image description for a blind user, live captioning, voice for a non-verbal user. Not producing, not deciding — removing friction that was in the way. Examples: accessibility tools, real-time language support, situational awareness during a meeting.

Problem-solving. AI deployed inside an organisation to help carry or make a decision, where the person running the system and the person affected by its output are usually not the same. Examples: triaging a support queue, scoring a loan application, recommending a treatment path, routing an incident. This is the mode the rest of the book teaches. It is the only mode where the six answers of Chapter 1Off-limits to AI, Not a tech problem, Human-operated, Non-AI automation, AI as assistant, Autonomous AI — are the right question to ask.

See Illustration 2.1.

Five modes of AI use Five modes of AI use Generative work AI makes the artefact. copy, image, audio Conversation & reflection AI as thinking partner. research, learn Building AI as co-builder. code, prototypes Augmentation AI enables a faculty. translation, access Problem- solving AI deployed in an organisation. ← this book Four solo modes — user is also beneficiary Deployed use

Illustration 2.1 — Five modes of AI use. The first four are solo: the person asking the AI is the person who lives with the answer. The fifth is different — a system deployed inside an organisation, where the operator and the affected person are usually not the same. The book's method is for the fifth.

2.2 What sets problem-solving apart

The first four modes are voluntary. The user of the AI is also the beneficiary of the AI. If generated copy is bad, the copywriter throws it away. If the thinking partner gives bad advice, the thinker ignores it. If the co-builder produces broken code, the builder does not ship it. If the augmentation mis-translates a sentence, the speaker clarifies. The consequences of a bad output fall on the same person who asked for the output.

The fifth mode breaks that loop. A triage queue running on a model routes real calls from real customers; a loan-scoring system declines real applicants; a clinical-decision support tool nudges real treatments. The operator of the system is not the affected party. The operator can walk away from a bad output; the affected party cannot.

That asymmetry is why the book's scaffolding exists. The Tier 0 gates, the routing discipline, the controls overlay, the named owner at G5 — all of them are answers to the question what has to be true for one person to use a machine to shape another person's day? In the first four modes, that question barely arises; a prompt and a moment of taste will do. The book is written for the harder case.

2.3 And the tool itself misbehaves

There is a second reason the fifth mode needs a method, and it has nothing to do with organisational asymmetry. The tool is not deterministic.

Classical software has bugs; AI does not behave. A rule given the same input returns the same output every time — that is what makes it a rule. A language model, by design, does not. The same prompt sent twice can return different answers. The shape is stable, the particulars drift: a summary written Tuesday phrases things the Wednesday summary does not; a classifier that scored a borderline case as refer yesterday scores it approve today; an extraction pulls four fields the first time and five the second. Even at temperature zero, determinism is a best-effort property — floating-point order, batch boundaries, prompt-cache state, and model-version changes all introduce variance the calling code cannot control.

This is not a defect. It is constitutive. Probabilistic generation is why the models can cover the long tail of language, image and code that deterministic systems cannot reach. Remove the variance and you remove the coverage. The right question is not how do I make the AI behave; it is which problems tolerate this variance and which do not.

Two classes sit on opposite sides of the line.

Problems AI fits. Median-good-enough work — summaries, drafts, classifications with a confidence score, option generation, extraction from messy inputs, first-pass routing. A second run returning a slightly different answer is not a failure, and the human in the loop or the downstream check catches the occasional bad draw. Most of the solo modes live here: the consumer is the chooser; a bad output is thrown away and another is requested.

Problems AI fits badly. Exact-repeatability work — decisions that must match a pinned template, calculations defined by matching a reference, auditable determinations a regulator expects to be reproducible. Worst-case-matters work — safety-critical decisions, dosing, operations where one rare bad output is not amortised by a thousand good ones. Adversarial work, where an attacker will find the variance the median user did not. These become AI problems only if a deterministic wrapper is built around the model to absorb the variance, and that wrapper is where most of the engineering lives.

This is why every gate downstream looks the way it does. G3 Route defaults to the lowest adequate level because a rule that returns the same answer twice beats a model that returns almost-the-same-answer twice — unless the problem needs coverage the rule cannot give. G4 Sequence demands reversibility because variance means some draws will be wrong, and a system that cannot undo a wrong draw compounds harm. G5 Commit demands a named owner and rollback triggers because no amount of ex-ante review substitutes for someone watching the variance land on real people in real time. The Abolition check, at the other end, is partly a response to the same fact: some decisions should not ride on a probabilistic tool regardless of how narrow the variance gets, because the possibility of variance on this decision is itself the harm.

A method that treats AI as deterministic software will under-scaffold its placements and be surprised by the first drift. A method that treats AI as an unmanageable oracle will over-scaffold its placements and ship nothing. The book's method does neither: it places variance where variance can be absorbed, and refuses placements where it cannot.

2.4 When the four come back at G3

The four modes do not disappear when the method runs. They reappear at G3 Route as the capability palette the method picks from. When G3 places a sub-problem against an AI level — an LLM feature, retrieval-augmented generation, a single agent, a tool-using agent — it is choosing which of the four capabilities the AI will perform inside the larger system:

  • A drafting step in a legal workflow is a generative placement.
  • A retrieval-and-summarisation step in a clinician's cockpit is a conversation-and-reflection placement — the clinician is doing the thinking, and the system is lowering the cost of asking good questions.
  • A pair-programming step inside a development agent is a building placement.
  • A live-transcription step in a call-centre product is an augmentation placement.

The capability is the same; the scaffolding around it is different. A generative placement inside a regulated decision (producing the loan denial letter) carries obligations a standalone generative use (drafting marketing copy) does not. The method is what tells you what those obligations are, where in the system they sit, and who owns them.

2.5 Why this chapter earns its space

Most AI books collapse the five modes and try to sell one framework for all of them. The result is an uncomfortable fit in both directions. A reader who wants better marketing copy gets dragged through governance theatre that does not apply to them. A reader who needs to deploy a triage model gets advice about prompt styling for creative use. Neither is served.

So the book draws the line here, in the second chapter, before the method runs. The first four modes are legitimate. They do not need this method, and this method is not written for them. The fifth mode — problem-solving inside an organisation, where the operator and the affected party are different people, and where the tool itself does not behave deterministically — is where every page from Chapter 3 onwards is aimed. If the problem in front of you is a mode-one-to-four problem, the book's second-best offering is this: enjoy the tool, skip to the AI capability levels, pick what fits, and get on with it.

Next: the method.