An interactive essay Built 2026

The Confident Machine

How to live and work with a technology that is brilliant, fluent, and sometimes wrong in ways you can’t see.

Opening

It Sounds Right

A parent types a question: What new discoveries from the James Webb Space Telescope can I tell my 9 year old about?

Here are two answers about the same discovery. One was written by people. One was generated by a machine. Which would you repeat to the child?

Answer A

JWST took the very first pictures of a planet outside of our own solar system. These distant worlds are called “exoplanets.” Exo means “from outside.”

Answer B

For the first time, astronomers have used NASA’s James Webb Space Telescope to take a direct image of a planet outside our solar system. The exoplanet is a gas giant, meaning it has no rocky surface and could not be habitable.

Choose one to see where each answer came from.

Answer A came from a machine. Answer B came from people, and it is the one that is right.

Answer A was written by Google’s Bard chatbot, in the company’s own launch demo in February 2023. Its claim is false. The first picture of a planet outside our solar system was taken in 2004, by the European Southern Observatory’s Very Large Telescope in Chile, nearly two decades before Webb launched. Answer B is the opening of NASA’s announcement from September 2022.

Astronomers noticed the mistake within hours. On the day it was reported, shares in Google’s parent company fell 7.7 percent, about $100 billion in market value.

Read the two answers again. They share most of their words. NASA’s says Webb took its own first direct image of a distant planet. Bard’s says Webb took the first picture of one, ever. Both are fluent, and both sound certain. Only one is true, and nothing in the wording tells you which.

We can’t know exactly why Bard wrote that sentence. It is, though, the kind of mistake the next chapter will teach you to expect: a smooth recombination of phrases that often appear together.

Fluency is not the same as truth. The most valuable skill of the next decade is not prompting. It is calibrated trust: knowing when to rely on AI, when to check it, and when to keep a task for yourself.

Along the way you’ll make predictions before we show you answers. Your choices collect in a case file in the corner of the screen, and at the end they become your own rules for working with AI.

From here on, machine-generated text is set in this typeface. Where we know the odds, a dotted underline and a faint flicker show how unlikely each word was when the machine chose it. We don’t know Bard’s odds, so on its answer the effect is only decorative.

Chapter 1

The Prediction Machine

How a machine can write fluently without knowing whether anything it says is true.

In 1948 the mathematician Claude Shannon built a machine like this with a book and a pencil. He opened the book at random, found a word, and wrote down the word that came after it. Then he opened the book somewhere else, found that word, and wrote down what followed it. Repeat, and you get this:

THE HEAD AND IN FRONTAL ATTACK ON AN ENGLISH WRITER THAT THE CHARACTER OF THIS POINT IS THEREFORE ANOTHER METHOD FOR THE LETTERS THAT THE TIME OF WHO EVER TOLD THE PROBLEM FOR AN UNEXPECTED.
Shannon’s “second-order word approximation” to English, 1948.

Every pair of neighbouring words is plausible English. The whole means nothing. Shannon wanted to take the idea further but noted that “the labor involved becomes enormous at the next stage.” Your browser is about to do that next stage in well under a second.

Preparing the library…

1 · Reading the library

This model learns by doing one thing: counting. For every pair of words in three public-domain books, it tallies which word came next. That is all “training” means here.

The books are Alice’s Adventures in Wonderland, most of Pride and Prejudice, and seven Sherlock Holmes stories. Watch the counters. That is the whole training process.

2 · Guess first

Before the machine answers, you do. In these three books, which word most often follows “I am”?

Pick one in the panel. The bars will show the machine’s odds for every word it knows.

3 · Your turn

Type the start of any sentence. The bars show the ten words the machine thinks most likely to come next, and how often it saw each one follow your last two words.

Choose a bar to add that word and keep going. Try “said the”, “Mr. Darcy” or “I do not know”. Then try a word the books never use, and watch the machine fall back on how common each word is overall.

4 · Turn up the temperature

Real systems don’t always pick the top word. They roll weighted dice. Temperature reshapes the odds before the roll: low values make the favourite almost certain, high values flatten the field.

Too low and the text loops on itself. Too high and it dissolves. Somewhere in between, it sounds creative.

Like many real systems, this one also ignores the long tail of very unlikely words when it rolls the dice, so one freak word can’t derail a sentence.

5 · Ask five times

Continue the same start five times. Each run rolls the dice differently, so each tells a different story, all in the same steady typeface.

The dotted underlines are this page’s way of showing which words were long shots. The machine itself gives no such signal. Its unlikely words arrive in the same confident voice as its likely ones.

From a toy to a chatbot

Real language models are vastly larger than this one. It read about 150,000 words. Meta’s Llama 3 was trained on more than 15 trillion tokens, the word-pieces these systems read, which is tens of millions of times more text.

They work differently, too. Instead of a lookup table keyed on the last two words, they use a neural network that weighs thousands of earlier words at once. After that first round of training they are tuned with human feedback to follow instructions and to be helpful.

Those differences are enormous, and the core move is the same. OpenAI’s own technical report describes GPT-4 as “a Transformer-based model pre-trained to predict the next token in a document.”

Fluency without a fact-checker

Notice what is missing. Nothing in that process asks whether a sentence is true. The model learns which words tend to follow which. Truth gets in only indirectly, to the extent that true sentences are common in what it read. To the machine, a fluent falsehood and a fluent fact are the same kind of thing: likely text.

Go back to the opening. When Webb photographed its first exoplanet in September 2022, NBC News reported that the telescope “snaps its first picture of an exoplanet.” Bard wrote that Webb took “the very first pictures.” We can’t see inside Bard to know why. But a system built to produce likely sequences only has to lose one small word, its, to turn a true headline into a false history.

Go deeperThe math inside this model

How the counting becomes probability

For the last two words u v, the model looks up how often each word w followed them. Most three-word sequences never appear in a small library, so it blends in what followed just v, and then how common w is overall. This is Witten–Bell smoothing:

P(w | u v) = λ · count(u v w) / count(u v) + (1 − λ) · P(w | v) λ = count(u v) / (count(u v) + number of different words seen after u v)

A context followed by many different words trusts itself less and leans on the shorter context more. Because each step mixes two distributions that each sum to 1, the result always sums to 1, which the page’s tests check.

Temperature, in one line

p′ᵢ = pᵢ^(1/T) / Σⱼ pⱼ^(1/T)

Large models do the same thing by dividing their raw scores (“logits”) by T before turning them into probabilities. The readout under the slider converts the distribution’s entropy H into “effective choices”, 2H: the number of equally likely words that would be just as uncertain.

Why not always take the top word?

Always choosing the most likely next word sounds safe, but it produces bland, repetitive text that gets stuck in loops, a problem researchers documented in neural models too. Sampling from the distribution keeps text varied, which is also why the same question can get different answers. The same researchers proposed “nucleus” sampling: keep only the most likely words that together make up, say, 90% of the probability, and roll the dice among those. This page samples that way, at 90%, while its bars show the full, untrimmed odds.

Words versus tokens

This model counts whole words and a few punctuation marks. Large models split text into sub-word pieces instead, so common words are one token and rare words are several. GPT-2, for example, used a vocabulary of 50,257 tokens. Chapter 3 shows one strange side effect: the model never directly sees individual letters.

What this model read

All of Alice’s Adventures in Wonderland (1865), the first 34 chapters of Pride and Prejudice (1813) and the first seven stories of The Adventures of Sherlock Holmes (1892), from Project Gutenberg.

Chapter 2

Confidently Wrong

Why the machine sounds just as sure when it’s wrong, and what actually helps.

That match between how sure you are and how often you’re right is called calibration. Weather forecasts have been scored this way since 1950. Before looking at the machine, let’s measure yours.

Ten questions, two choices each. Pick an answer, then say how sure you are, from 50% (a coin flip) to 100% (certain). You’ll see each answer as you go.

Loading the questions…

Your calibration

Each dot groups your answers by how sure you said you were. On the diagonal, confidence matches accuracy.

Your curve appears here as you answer.

The machine has a confidence gap too

When OpenAI built GPT-4, it measured this directly. On a multiple-choice test, the raw pre-trained model was “highly calibrated”: its confidence in an answer generally matched its chance of being right. After the extra training that turned it into a helpful assistant, in the report’s words, “the calibration is reduced.” The average gap between its confidence and its accuracy grew from under one percentage point to more than seven.

When researchers ask models to state their confidence in words, the models tend to be overconfident, much like people. And people take the bait. In one study, readers overestimated how often a model’s answers were right, and longer explanations raised their confidence even when the extra length added no accuracy.

The tone of an answer tells you nothing about whether it is right.

Why the machine makes things up

“Hallucination” sounds mysterious. The mechanics are not. Three forces push the same way.

  1. It predicts; it doesn’t look up. As Chapter 1 showed, the model produces likely text. For facts that were rare in its training data, such as an obscure person’s birthday, there is no reliable pattern to follow, so it fills the gap with something that fits.
  2. Tests reward bluffing. Most benchmarks score a wrong answer and “I don’t know” the same: zero. On a test like that, a guess can only help, so a model trained to score well learns to guess.
  3. People reward confidence. Assistants are tuned on human ratings, and raters tend to prefer answers that sound sure and agree with them, sometimes even over correct ones.

Grade the machine

An illustration: a model knows the answers to 60% of the questions on a four-option test. On the rest it can guess (a 1-in-4 chance of being right) or say “I don’t know”. Choose how much a wrong answer costs.

That is the whole incentive problem in one slider. When a test does charge for wrong answers, the differences between models are stark.

What actually reduces it

Give it the source. Answering from memory is a closed-book exam. Paste in the document, or use a tool that retrieves sources, and the job changes from recalling to reading: the right words are sitting in the prompt, and the likeliest continuation is to use them. Retrieval measurably reduces hallucination. It does not remove it. Legal research tools built this way still made things up 17% to 33% of the time in a 2024 test. And even with the document in front of them, the 15 best models on one leaderboard added unsupported claims to 1.8% to 5.4% of their summaries.

Ask for citations, then open them. A citation doesn’t make an answer true. It makes the answer cheap to check, which matters because the cost of not checking is now well documented. In 2023 a New York court fined two lawyers and their firm $5,000 over a brief that cited six cases ChatGPT had invented. Since then,

Make it check itself, separately. In one method the model drafts an answer, writes questions that would verify it, answers those questions on their own, and then revises. Keeping the check apart from the draft stops the draft from steering the check, and it reduced hallucinations across several tasks.

Let “I don’t know” win. The researchers who described the bluffing incentive propose a direct fix: tell the model what a wrong answer costs, and grade it that way. You can do a version of this yourself by saying, in your request, that “I’m not sure” is an acceptable answer.

Go deeperHow your score works, and its limits

The calibration curve and the Brier score

Your answers are grouped into five bins by stated confidence (50–59%, 60–69% and so on). Each dot sits at the average confidence of a bin and the share of that bin you got right. The Brier score is the average squared gap between your stated probability and what happened (1 if right, 0 if wrong): 0 is perfect, and always saying 50% scores 0.25.

Why ten questions is a snapshot, not a verdict

With ten answers, each dot rests on a handful of questions, so treat the curve as a hint. Calibration also depends on the questions. People tend to be overconfident on hard questions and underconfident on easy ones, a pattern called the hard–easy effect. These questions deliberately include several surprises, so they lean hard.

Machines can be calibrated, under the right conditions

Large pre-trained models turn out to be well calibrated on multiple-choice questions when the question is posed in the right format, and they can estimate the probability that they know an answer. The catch is that this internal signal usually isn’t shown to you, and the tone of the final answer doesn’t carry it.

The size of errors matters too

Calibration asks how often you are wrong, not how badly. On one 2026 test, the best model read analog clocks correctly about half the time, and when it was wrong, its median error was one to three hours; for people it was three minutes.

Chapter 3

The Jagged Frontier

Superhuman at some tasks, oddly bad at others, and the line between them doesn’t follow your intuition.

Researchers studying consultants at Boston Consulting Group gave this pattern a name. AI’s abilities form a “jagged technological frontier,” where “some tasks are easily done by AI, while others, though seemingly similar in difficulty level, are outside the current capability of AI.”

The frontier is invisible. Nothing in the machine’s tone tells you which side of it you’re on. So test your own map first. For each of these twelve tasks, decide whether today’s AI does it well or struggles.

0 of 12 sorted

    These verdicts describe patterns that have held across several generations of models, not the score of any one product. Where a number is likely to change, it carries a date.

    Same tool, opposite results

    In the consulting experiment, 758 consultants were randomly assigned to work with or without GPT-4. On 18 realistic tasks inside the frontier, such as developing ideas for a new product, those with AI finished 12.2% more tasks, worked 25.1% faster and produced work rated more than 40% higher in quality.

    Then the researchers set a task just outside the frontier: a business problem that meant combining numbers in a spreadsheet with subtle clues in interview notes. They designed it so that GPT-4 would get it wrong.

    One experiment, two sides of the frontier

    Inside the frontier

    +40%

    Work rated more than 40% higher in quality with GPT-4, on a creative product task

    • No AIbaseline
    • GPT-4+38%
    • GPT-4 + training+42.5%

    Just outside it

    −19 points

    In the share who reached the right answer, on a task GPT-4 was set up to get wrong

    • No AI84.5%
    • GPT-470.6%
    • GPT-4 + training60.0%
    Left: average quality relative to consultants without AI, with bars scaled to the best group. Right: share correct, with bars on a 0–100% scale. “Training” was a short overview of how to prompt GPT-4. The −19 points averages the two AI groups.

    The tool didn’t just fail to help. It made skilled people worse, on a task that seemed no harder than the ones where it helped. And the group given extra training in using GPT-4 gained the most inside the frontier and lost the most outside it.

    A harder case. Experienced software developers used AI tools on their own large projects, which they had worked on for about five years. With AI allowed, how did their speed change?

    They were slower. Tasks took 19% longer when AI was allowed. Before the study the developers expected AI to cut their time by 24%, and afterwards they still believed it had cut their time by 20%. Experts in economics and machine learning had predicted savings of 38% to 39%.

    Elsewhere the same kind of tool shines. In a study of 5,172 customer-support agents, an AI assistant raised the number of issues resolved per hour by 15% on average. The least experienced agents gained the most; the most experienced saw small gains in speed and small declines in quality.

    Notice what happened to the developers’ own judgment. They felt faster while being slower: confident, and wrong. The frontier is hard to see even from inside it. That is why trust has to be set task by task, and checked against results rather than against how the work feels.

    Why the frontier is jagged

    It learned from text, not from the world. Tasks that appear in text millions of times with a clear pattern to imitate, such as emails, summaries, common code and textbook questions, sit well inside the frontier. Tasks that need perception, exact counting or a check against reality sit outside it.

    It reads in chunks. As Chapter 1 showed, models see pieces of words, not letters, so “how many r’s are in strawberry?” asks about something the model never directly sees. Reading a clock means locating two hands precisely and combining them, which models still get wrong surprisingly often.

    It has no sense of its limits, and no calendar. It doesn’t know what it doesn’t know (Chapter 2), and without a search tool it knows nothing after its training data ends.

    The task includes you. In a 2026 study of 1,298 people, models tested alone named the right condition in 94.9% of written medical scenarios. People using the same models found it in under 34.5% of cases, no better than people using whatever sources they normally would. The knowledge was there. It got lost in the conversation.

    The frontier also moves, unevenly.

    Go deeperCentaurs, cyborgs, and how the tasks were chosen

    Two ways to work at the frontier

    The consulting study saw two successful patterns. “Centaurs” divided the work, handing the AI the parts it is good at (such as drafting) and keeping the rest (such as analysis and the final recommendation). “Cyborgs” wove the AI into every step, working with it sentence by sentence. Both approaches depend on knowing where the frontier is for the task in front of you.

    Why test scores overstate usefulness

    Benchmarks measure clean, self-contained problems with a known answer. Real work is messier: context lives in people’s heads, requirements shift, and quality is judged by standards nobody wrote down. The developer study is a reminder that a model can be strong on coding tests and still slow down experts working in a codebase they know deeply.

    How these twelve tasks were chosen

    Each task needed a primary source and a pattern that has held across model generations. Two candidates were dropped in research: AI-text detectors being biased against non-native writers (the evidence has since become mixed) and multi-digit multiplication (current models often call a calculator, so the result depends on the product, not the model). Specific percentages here come from studies of particular models and will date; the direction of each verdict is what to take away.

    Chapter 4

    The Trust Map

    Two questions that tell you when to rely on AI, when to check it, and when to keep the work yourself.

    The first three chapters showed a machine that is fluent, often right, and wrong in ways its tone won’t reveal. So “Can I trust AI?” is the wrong question. Ask two better ones about the task in front of you:

    1. How easy is it for you to check? Can you tell a good answer from a bad one, quickly, yourself?
    2. How bad is a mistake? If a wrong answer slips through, who pays, and how much?

    Place twelve everyday tasks on the map. Drag them, or select one and pick a spot. There are no right answers here, only reasons. When you’re done, compare your map with ours.

    Loading the map…

    Use AI where checking is cheaper than doing.

    The right side of the map is where checking is cheap. You were in the meeting. You can test the formula on three rows. You can look up the case. There, AI turns hours into minutes, and a quick check catches its mistakes.

    On the left, checking costs as much as doing the work, like reading the whole contract, or it is simply beyond you, like judging a diagnosis. The speed there is an illusion: you are accepting an answer you can’t evaluate. That is where to keep the work, or bring in someone who can check it.

    The court that fined the lawyers in Chapter 2 made the same distinction. “There is nothing inherently improper about using a reliable artificial intelligence tool for assistance,” the judge wrote. “But existing rules impose a gatekeeping role on attorneys to ensure the accuracy of their filings.” Looking up six cases would have taken minutes.

    The check has its own trap

    People who work alongside automated aids tend to accept what the aid says, and to miss what it leaves out. Researchers call this automation bias. A review of decades of studies found it in experts as well as beginners, and found that training or instructions alone did not prevent it.

    A 2025 survey of 319 knowledge workers found the same pull with AI. The more people trusted the AI, the less critical thinking they reported doing. The more confident they were in their own skill at the task, the more they did. So make checking a habit you do by default, not a mood you wait for.

    How to work with it

      Go deeperThe arithmetic behind the map

      An expected-cost rule

      The map is a picture of a simple calculation. Using AI on a task pays off when the time it saves is bigger than the time you spend checking, plus the expected cost of the errors your check misses:

      use AI if time saved > time checking + P(error gets past you) × cost of that error

      The horizontal axis is about the first two terms and the chance an error gets past you: a task that is easy to check makes checking quick and misses rare. The vertical axis is the cost of an error. Top left is where both work against you: checking is slow or unreliable, and a miss is expensive.

      The map is personal

      “Easy to check” means easy for you. A statistician can check an AI’s explanation of a statistical idea in seconds; a beginner cannot, which is why a learning task sits further left than you might expect. Stakes are personal too. A menu translation is a low-stakes adventure, unless you have a severe allergy.

      Why medicine is the hard corner

      In the 2026 medical study from Chapter 3, the models alone usually named the right condition, but people using them did not do better than people using their usual sources. Symptom-checking is hard to verify for a layperson and costly to get wrong, which puts it firmly top left: use it, if at all, to prepare questions for a professional.

      Chapter 5

      When Trust Scales

      When one person trusts a machine too much, one decision goes wrong. When an organization does, thousands do. Here is how bias hides inside a system that never sees it.

      Until now this essay has been about you and one answer. When AI is built into a process, such as screening job applicants, answering customers or approving loans, the same judgment is applied to everyone who passes through. A mistake stops being an error and becomes a policy.

      In 2018 Reuters reported that Amazon had scrapped an experimental tool for rating job applicants. It had been trained on résumés submitted to the company over ten years, most of them from men. The system “penalized resumes that included the word ‘women’s,’ as in ‘women’s chess club captain,’” and downgraded graduates of two all-women’s colleges. Amazon edited the programs to be neutral to those terms, but that was “no guarantee that the machines would not devise other ways of sorting candidates that could prove discriminatory.”

      That last line is the important one. You can delete the obvious clue and leave the bias in place. Here is how, in a small world where we know exactly what is true.

      Building the town…

      1 · A town with a history

      Meet 2,000 past applicants to one employer, from two groups we will call A and B. We built this town so that the groups are equally qualified: the same skills-test scores and the same experience, on average.

      But past hiring managers favoured group A. And because the town’s neighbourhoods reflect its history, most of group B lives in Eastfield and most of group A in Westfield. Everything here is invented; nothing is estimated.

      2 · Your prediction

      Now we train a screener on those past decisions, the way many real systems are built. It sees each applicant’s skills-test score, years of experience and zip code. It never sees which group anyone belongs to.

      Then it screens 2,000 new applicants. Will it treat the two groups equally?

      3 · What the screener learned

      It advances far fewer applicants from group B. It found that living in Eastfield predicted rejection in the past, and learned to count it against people. The zip code stood in for the group it was never shown.

      The ratio of the two selection rates falls well below four-fifths, the line US hiring guidelines have used since 1978 as a sign of possible discrimination.

      4 · Remove the proxy

      Take the zip code away and retrain. With only qualifications left, which are equal by construction, the gap closes.

      Notice what else changes: the screener agrees less with the past decisions. It is a worse copy of a biased history, which is exactly the point. Try the switches yourself, including one that hands the screener the group directly.

      5 · One applicant

      Behind every rate is a person. Here is one applicant the screener rejected while it could see zip codes, and what would have changed the decision.

      An explanation like this, “what would have to change”, is also how people can challenge a decision.

      The zip code was never the problem

      The history was. A model trained to reproduce past decisions learns whatever predicted them, and any feature that correlates with a group, such as an address, a school, a hobby or a turn of phrase, can carry the old pattern forward. Legal scholars have described how this lets a model discriminate without ever seeing a protected characteristic.

      It happens outside hiring too. A widely used health-care algorithm predicted patients’ future medical costs as a stand-in for how sick they were. Because less money had been spent on Black patients with the same needs, at a given risk score Black patients were considerably sicker than white patients. Fixing the disparity would have raised the share of Black patients receiving additional help from 17.7% to 46.5%.

      Real data rarely has one tidy proxy to delete. It has dozens of weak ones. That is why fairness checks look at outcomes by group, as the screener’s readout does, instead of trusting that sensitive columns were left out. The four-fifths test is one such check: a selection rate for any group below four-fifths of the highest group’s rate “will generally be regarded” as evidence of adverse impact under the 1978 federal guidelines.

      Three decisions you might actually face

      Fairness is one principle. The others show up in more ordinary choices. There is no scored answer to these; each option buys something and risks something. Your choices go into your case file.

      What the principles are for

      Frameworks from standards bodies and governments list similar principles. They can sound abstract. Each one is easier to remember as the mistake it exists to prevent.

      Go deeperInside the screener, and why fairness has no single score

      The screener is logistic regression

      Each applicant gets a score: a weighted sum of their features, z = b + w₁·skill + w₂·experience + w₃·Eastfield. The sigmoid function turns the score into a probability of “would have been hired”. Training adjusts the weights, step by step, to make the past decisions as likely as possible (gradient descent on the log loss). The screener then advances the top 30% of the new pool by score.

      P(hired) = 1 / (1 + e^(−z)) z = b + Σ wᵢ·xᵢ

      Features are standardized first, so each weight shows how much a one-standard-deviation change moves the score. The code is in src/engine/logistic.ts, and the page’s tests check that removing the zip code lifts the ratio above 0.8 in this town.

      Fairness has more than one definition

      Equal selection rates are one definition of fairness. Others ask that a score mean the same thing in every group, or that error rates be equal. When groups differ in their underlying rates, these goals conflict: except in special cases, no score can satisfy them all at once. Choosing among them is a value judgment, which is one more reason it should not be left to a model by default.

      The limits of this demo

      The town is synthetic, and its numbers are invented to make one mechanism visible. The size of the gap depends on how segregated the neighbourhoods are and on the random draw; across the seeds we tested, the ratio with the zip code ranged from about 0.44 to 0.66, and removing it lifted the ratio above 0.8 every time. Real systems are messier, with many correlated features and outcomes that are themselves biased measurements.

      Chapter 6

      The Moving Boundary

      Everything in this essay with a date on it will change. Here is how fast, and how the trust question changes with it.

      How long it can work on its own

      The research group METR measures progress in an unusually concrete unit: how long a task takes a skilled person. It gives AI agents self-contained software problems of many lengths, then finds the length at which the agent succeeds half the time. In early 2023, for GPT-4, that was about four minutes of human work.

      Length of task AI agents can finish

      Measured in how long the task takes a skilled person. Log scale: each gridline is a multiple.

      Source: METR, Time Horizon 1.1, frontier models at release. Solid line: tasks finished half the time. Dashed: four times in five.

      Two cautions keep this honest. These are software tasks with clear success criteria, the kind of work Chapter 3 put well inside the frontier. And “half the time” is a low bar for anything that matters: the dashed line, for tasks finished four times in five, sits far lower. The frontier moves fastest where it was already strong.

      What it costs

      Meanwhile, the price of a given level of ability has collapsed. The chart follows the cheapest model that matched two well-known models, GPT-3.5 and GPT-4, on a standard knowledge test.

      Price of matching GPT-3.5 and GPT-4, in US dollars per million tokens

      Cheapest model at or above each benchmark score. Log scale. A token is a word or a piece of one.

      Source: Epoch AI.

      Cheap capability changes who uses AI and how often. It also changes the arithmetic of the trust map: when producing an answer costs almost nothing, checking it becomes most of the cost.

      From answers to actions

      The newest systems don’t just answer. As agents, they click, type, send, buy and delete on your behalf. That changes the trust question.

      Chatbot

      “Is this answer right?”

      It says something. You decide what to do with it, and a wrong answer can simply be ignored.

      Agent

      “What might it do, and can it be undone?”

      It acts. Your check has to come before the action, and the cost of a mistake depends on whether it can be reversed.

      One failure became a parable. The last two sentences are the whole essay in miniature: a confident statement, wrong, from a system with its hands on something real.

      Agents also add a new risk: For an agent, add a third question to the trust map: can the action be undone? Let it draft, search and propose freely. Make it ask before it sends, pays, deletes or publishes.

      The rules are moving too

      Laws are catching up unevenly, and the dates keep shifting. The European Union’s AI Act shows how.

      When the EU AI Act’s rules apply

        Source: European Commission. Struck-through dates were the original deadlines, moved by a 2026 amendment.

        The half-life of a fact

        Here are eleven claims about AI, each true when it was published. For each one, decide whether it still holds today. As you answer, its lifeline appears.

        Go deeperHow these trends are measured, and their limits

        Time horizons

        METR times skilled people on each task, runs the AI agent many times, and fits a curve of success against task length. The 50% time horizon is where that curve crosses one half. Its fitted doubling time since 2023 is about 129 days, with a 95% confidence interval of 104 to 158 days. The latest points sit above the 16 hours its current task suite can measure reliably, so treat them as “more than 16 hours”.

        Prices

        Epoch AI blends input and output token prices three to one and tracks the cheapest model above each score, excluding reasoning models, which spend extra tokens thinking. Its broader 2026 analysis warns that models can be tuned to benchmarks, that benchmark scores are not the same as useful work, and that people rarely switch to the cheapest option.

        How this page keeps its dates honest

        Every dated claim on this page lives in one file, with its source, the date it describes and the date it was last checked. A small script flags any claim that hasn’t been checked in 120 days, and the page marks such claims “may be out of date”. The lifelines above use the first source that recorded each change, so real lifespans were often shorter.

        Close

        What We Keep

        Nobody knows how fast this will move. Here is how to tell which future is arriving, where the evidence disagrees, and what is worth keeping either way.

        Three futures

        We merge the first two below. Each path comes with signposts, things you can watch for yourself. The signposts are our suggestions, not the report’s, and no one can tell you today which path is the real one.

        Uncertain

        It levels off

        By 2030, AI is a capable assistant that still needs detailed prompts, review and context. Hallucinations and brittleness persist, and it struggles to keep long, complex tasks on track.

        Like passenger-jet speed, which climbed fast from 1930 to 1960, then levelled off.

        Watch for new models gaining less on the tests in Chapter 6; the length of tasks AI can finish stops doubling; investment falls.

        Uncertain

        It keeps climbing

        By 2030, AI works like an expert collaborator. It handles digital tasks that would take a person a month, working with a lot of independence towards goals that people set.

        Like Moore’s law, when computing power on chips doubled about every two years for five decades.

        Watch for the task-length trend keeps doubling every few months; agents fail less often on real work; the same capability keeps getting cheaper.

        Uncertain

        It speeds up

        By 2030, AI matches or beats people at most cognitive work, learns new skills on the job, and increasingly speeds up the research that improves AI itself.

        Like DNA sequencing, which improved faster than exponentially from 2000 to 2020.

        Watch for AI doing a large share of AI research; forecasters raising their odds of years of progress arriving in months.

        Scenario descriptions and analogies condensed from the International AI Safety Report 2026, which presents four OECD scenarios.

        Where the evidence disagrees

        On the questions people most want answered, careful researchers looking at the same period reach different conclusions. Here they are side by side. Each is dated, because each will be overtaken.

        Jobs

        Who expects what

        Timelines and risk

        What gets lost when the machine does it

        Every tool that does something for us also stops us practising it. Sometimes that is a fair trade. Sometimes it is a skill we will need back in a hurry.

        Aviation learned this first. Autopilot made flying safer and more precise, and in 2013 the US regulator warned airlines that “continuous use of autoflight systems could lead to degradation of the pilot’s ability to quickly recover the aircraft from an undesired state,” and encouraged them to make sure pilots still get to fly by hand.

        Medicine is seeing early signs. At four centres in Poland, doctors who had started using an AI tool that flags polyps during colonoscopies were then observed on their procedures without it. Their detection rate fell from 28.4% before the AI arrived to 22.4% after. The study was observational, so it can’t prove cause, but the direction is a warning.

        So is school. When nearly a thousand high-school students practised maths with GPT-4 in a standard chat window, their grades on the practice problems rose 48%. When the AI was taken away, those who had used the standard chatbot scored 17% worse than students who never had it. A version designed to tutor rather than hand over answers largely avoided the harm.

        None of this means refusing help. Learning researchers have long found that some difficulty is desirable: the effort that makes practice feel slow is often what makes a skill last. And judgment is a skill. The survey from Chapter 4 found that the more people trusted AI, the less critical thinking they reported. The ability to notice that a confident answer is wrong is the one thing in this essay that can’t be delegated, because it is what does the checking.

        Choose what you let the machine do. Choose, too, what you keep doing yourself.

        Pick up to three things you will keep doing yourself.

        My Rules for AI

        Your case file, turned into a card. Edit the three rules until they sound like you, then save the card as an image or copy it as text. It is built in your browser; nothing is sent anywhere.

        The machine will keep getting more fluent. Fluency was never the thing to trust. Trust the checking, keep the judgment, and be as honest about your own confidence as you would want the machine to be.