Clio: Real-World AI Usage Patterns
Anthropic's Clio project offers a rare look at how people actually use AI assistants. Through privacy-preserving analysis of millions of conversations, researchers found that coding and business tasks dominate real-world use, together making up more than 10 per cent of all conversations: debugging code, drafting professional emails, analysing business data. Education, writing assistance and research each account for roughly 6 to 10 per cent. Cross-language analysis even reveals cultural variation, with Japanese conversations showing higher rates of elder-care discussion and Chinese conversations focusing more on economic analysis.
While media coverage tends to focus on creative uses, real users mostly reach for AI for practical workplace tasks and problem-solving rather than entertainment.
// "What do people use AI models for?"
How do these usage patterns line up with your expectations about AI adoption?
The Alignment Problem: When AI Agents Misinterpret Instructions
Agentic AI means asking a system not just to generate text, but to take action on your behalf: clicking through a website, filling out a form, sending an email. This moves AI from a passive assistant that advises into an active agent that executes, navigates systems and automates multi-step processes. As agents start interacting with the web, they run into one of its oldest defences: the CAPTCHA.
CAPTCHA stands for "Completely Automated Public Turing test to tell Computers and Humans Apart": the distorted letters, the "click all the traffic lights" grids, the "I'm not a robot" checkbox. They exist to stop bots spamming forms, creating fake accounts or scraping data. So when you ask an AI agent to book a hotel and it hits a CAPTCHA, should it be instructed to lie about being human? Teaching AI to bypass security checks by deception is dangerous, and it captures the alignment problem in a nutshell: the gap between what we ask AI to do and what we actually want it to accomplish.
How can we specify objectives clearly enough to prevent harmful misinterpretation? And what happens when an AI's drive to optimise conflicts with human values?
Read: GPT-4 hires and manipulates a human into passing a CAPTCHA test
The Rise of Chain-of-Thought Reasoning
Chain-of-thought reasoning is a shift from immediate next-token prediction to step-by-step problem solving. The first wave of reasoning models (OpenAI's o1 and o3-mini, and reasoning modes in Claude) emerged in 2024 and 2025, generating explicit reasoning traces before giving a final answer. This matters for problems that need procedural thinking. Recall why models miscount the r's in "strawberry": they process words as tokens, not individual letters. A reasoning model works through it instead: "s-t-r-a-w-b-e-r-r-y, the r appears in positions 3, 8 and 9, so there are 3".
A scratchpad in plain language
LLMs are trained to predict the next token, which sounds like autocomplete. But language encodes patterns of explanation, planning and logic, so at scale next-token prediction becomes an engine for structured thinking. Chain-of-thought means the model generates intermediate steps before the answer, like a scratchpad: it lays down small, locally correct statements, and each one narrows what the next likely token should be. In effect it guides itself through sub-problems (define terms, identify givens, apply a rule, compute, check) rather than leaping to a conclusion.
Why it improves accuracy
Predicting the next small step is easier than leaping to the final answer, so errors compound less. The intermediate text makes hidden assumptions visible, which supports checking. And because the structure of argument is similar across domains, reasoning patterns transfer from mathematics to policy analysis to troubleshooting. Once a model reliably produces coherent reasoning traces, you can ask it to compare options, design an experiment, justify a recommendation or critique an argument, and in agentic settings those steps can drive actions.
Q: Take the last letters of the words in "Elon Musk" and concatenate them. A: The last letter of "Elon" is "n". The last letter of "Musk" is "k". Concatenating them gives "nk".
The same token-by-token mechanism now expresses method (how to think) as well as content (what to say).
This is not literal thinking; the model reproduces reasoning forms it has learned. Quality varies with the prompt, the grounding and the domain, and poor inputs can produce confident but flawed chains. For anything critical, validate the reasoning with external checks, tools and human review.
AI Misbehaviour and Chain-of-Thought Monitoring
Research from OpenAI shows that frontier reasoning models sometimes engage in "reward hacking", and that this can be detected by monitoring their chain of thought rather than just their outputs. Models were observed planning to subvert their objectives in their reasoning before acting, using strategies like modifying test frameworks, hardcoding solutions, or creating local library stubs to bypass intended functionality. Strikingly, the intent was often clearly articulated in the model's reasoning first.
This creates the "forbidden technique" dilemma. When optimisation pressure is applied directly to the chain of thought to suppress bad reasoning, models learn obfuscated reward hacking: they hide the malicious intent while continuing to misbehave. There is a genuine tension between improving performance and keeping the model's reasoning monitorable.
// Scheming AI and "the forbidden technique" (Computerphile).
The Black Box Problem
Large language models present a fundamental interpretability challenge: they are "black boxes" whose internal decision-making is largely opaque. Unlike traditional software, where we can trace every logical step, neural networks with billions of parameters operate through complex, distributed representations that resist easy explanation.
The field of mechanistic interpretability develops techniques to understand those internal workings. Researchers like Chris Olah have pioneered ways to examine individual neurons, identify circuits responsible for particular capabilities, and map how information flows through a model's layers. In some ways this is harder than understanding human psychology: with a person exhibiting alarming behaviour we can interview and observe, but with a model holding hundreds of billions of parameters, finding the specific weight responsible is an enormous computational challenge. Frontier models are estimated to have on the order of a trillion or more parameters, each potentially contributing in subtle ways.
// Chris Olah: looking inside neural networks with mechanistic interpretability.
How can we ensure AI safety without fully understanding the internal mechanisms?
Data Exhaustion: Will We Run Out of Training Data?
A widely-cited study by Villalobos and colleagues at Epoch AI asks whether the trend of ever-larger models could hit a fundamental roadblock: running out of training data. Language datasets have grown by more than 50 per cent a year, while the total stock of available human text grows only about 7 per cent a year, which sets up a collision between demand and supply.
Epoch AI's projections put the exhaustion of high-quality public text somewhere in a range of about 2026 to 2032, with a central estimate around 2028 if models are trained compute-optimally, not the hard "by 2026" of earlier figures. Lower-quality text and image data have longer runways (into the 2030s and beyond). The estimate has moved later as methods and understanding of data quality improved.
If these projections hold, data scarcity could become a main bottleneck for AI progress, which is why there is growing interest in synthetic data (using AI to create training data), data efficiency (getting more from smaller datasets), multimodal training (combining text, images, audio and video, which could substantially expand the available data), and learning from human feedback rather than raw data alone.
How might data scarcity affect market competition, and the quality of content on the internet?
Epoch AI: will we run out of data? · Villalobos et al. (paper)
