What Is Prompt Injection? How Hidden Text Can Trick an AI Assistant

What Is Prompt Injection? How Hidden Text Can Trick an AI Assistant

Imagine you ask an AI assistant to summarise a web page. Instead of a summary, it quietly opens your email in another tab, copies a login code, and posts that code as a public comment. No pop-up, no warning, nothing you clicked.

That is not a scare story invented for clicks. Security researchers at Brave built and published exactly that attack against a real AI browser in August 2025. The technique behind it is called prompt injection, and it is now the first entry on the OWASP list of security risks for AI applications.

If you use any AI feature that reads web pages, emails, or documents for you, this one is worth ten minutes. Here is what prompt injection is, why it has proved so stubborn, and the habits that make you a harder target.

What is prompt injection, in plain English

An AI model does not really separate “the person’s instruction” from “the text I was given to read”. Everything arrives as one stream of words. So if someone hides an instruction inside content the model is about to read, the model may treat it as a command from you.

OWASP, the non-profit that publishes the well known web security top ten lists, ranks this as LLM01, the first entry on its list of risks for AI applications. Its definition contains the detail most people miss: a prompt injection does not need to be visible to a human at all. It only needs to be readable by the model.

That is why attackers use white text on a white background, zero-width characters, HTML comments, or text tucked behind a spoiler tag. You see a normal page. The AI sees an extra set of orders.

Direct and indirect prompt injection

OWASP splits the problem in two, and the difference matters.

  • Direct prompt injection is when someone types something into the chat box to push the model outside its normal behaviour. Jailbreaking is the best known version of this.
  • Indirect prompt injection is when the instruction arrives inside something the AI reads for you: a web page, a PDF, an email, a Reddit comment, a shared document. The attacker never touches your chat window.

The second one is the real problem, because it needs nothing from you except a perfectly reasonable request like “summarise this for me”.

A real case: the browser that read someone’s inbox

Brave’s security team documented an attack on the Comet AI browser. They hid instructions inside a Reddit comment, behind a spoiler tag. A user then clicked the browser’s own summarise button.

While processing that page, the assistant followed the hidden instructions. It opened the user’s account page to read their email address, triggered a one-time login code, opened Gmail where the user was already signed in, read the code, and posted both back as a reply to that same Reddit comment. Everything after the summarise click happened without further input.

Brave’s point was blunt. Classic web protections such as the same-origin policy exist to stop one site touching another site’s data. None of that helps here, because the AI is acting as you, with your full privileges, across every session you are logged into.

From my own years working with websites and cybersecurity, this is the part that changes how you think about it. We spent two decades teaching browsers to keep sites walled off from each other. An AI assistant with broad access walks through those walls on purpose, because that is its job.

Why prompt injection is so hard to fix

You might assume a filter could strip out suspicious text. Filters help, but the reason they do not close the hole is structural.

Brave returned to the topic in a June 2026 write-up and described the root cause as the collapse of the boundary between instructions and data inside the model’s context window. The model cannot tell where a piece of text came from. Trusted instructions and untrusted page content sit side by side, and the model’s willingness to follow instructions is exactly what makes it useful in the first place.

That write-up also kills a comfortable assumption. The researchers tested a cloud-hosted browsing agent and a fully on-device autocomplete tool running a local model. Both fell to hidden instructions. Running AI on your own machine changes where an attacker gets in. It does not remove the weakness.

OWASP is equally honest about it, saying it is unclear whether any fool-proof prevention exists today. Its advice is layered defence: least privilege, human approval for risky actions, and clearly separating untrusted content.

Even the big AI labs have not solved it

Anthropic published numbers when it started piloting its Claude extension for Chrome. It ran 123 adversarial test cases covering 29 attack scenarios. Before its new defences, browsing in autonomous mode had a 23.6 percent attack success rate. After the new mitigations, that fell to 11.2 percent.

Better, clearly. Still not zero, and the company said so openly. One attack it described, from before those defences were added, was an email claiming that messages had to be deleted for security reasons and no confirmation was needed. The assistant deleted them. Anthropic says its new mitigations now catch that particular trick.

When an AI lab publishes a double-digit failure rate against its own red team, that says something about the whole category rather than one weak product.

What this actually means for you

If you only chat with an AI and copy answers out by hand, your exposure is low. The worst case is bad information, which is a different problem covered in our guide to why AI sometimes gives wrong answers.

Risk climbs the moment the AI can act: browse, click, fill forms, send mail, or open files. That is the world of AI agents, and it is arriving fast in ordinary workplaces, as we covered in working with AI agents at work.

Important tip: treat every AI assistant as if it will believe the next web page it reads. Never give it standing access to anything you would not hand to a stranger who reads the internet on your behalf.

Simple habits that lower your risk

  • Keep confirmation prompts switched on. If a tool offers an autonomous mode that skips approvals, that convenience is exactly what an attacker needs.
  • Read what the assistant says it is about to do before you approve it. A step that has nothing to do with your request is your warning sign.
  • Be careful asking an AI to summarise pages with open comment sections, or documents from people you do not know. Those are the easiest places to plant hidden text.
  • Keep banking, health, and work admin out of reach. Use a separate browser profile for AI browsing so it is not signed into your important accounts.
  • Grant access per site and per task, then take it back. Standing permissions are the thing that turns a small trick into a real loss.

None of this is exotic. It is the same instinct that stops you clicking a link in a strange email, applied to a tool that reads far more of the internet than you ever will. Our guide to using AI safely covers the privacy side of the same habit.

Common Questions

Is prompt injection the same as jailbreaking?

Not quite. OWASP treats jailbreaking as one form of prompt injection, the kind where the input makes a model ignore its safety rules entirely. Prompt injection is the wider category, and the indirect version is the one that can affect you without you doing anything unusual.

Will antivirus software protect me?

No. There is no virus and no malicious file. The attack is ordinary text that the AI chooses to obey. Your protection comes from limiting what the assistant is allowed to reach and approving its actions yourself.

Does running AI locally on my own computer solve it?

It does not. Brave’s June 2026 research tested a fully on-device assistant and found hidden instructions in a local document still shaped its output. What changes is the attacker’s entry point, not the underlying weakness.

Is this getting fixed?

It is getting better. Vendors patch specific attacks, add permission controls, and train models to spot suspicious instructions. Anthropic drove one set of browser-specific attacks down to zero in its own testing. But neither Brave nor Anthropic claims the general problem is solved, so your own habits still matter.

Final takeaway

Prompt injection is not a reason to avoid AI. It is a reason to be deliberate about what you connect it to. An assistant that drafts your email is a helpful tool. An assistant that can send your email, read your inbox, and follow instructions from any page it visits is something you should set up carefully and keep on a short leash.

Give it the smallest amount of access that gets the job done, keep the approval step, and stay a little suspicious of anything it decides to do that you did not ask for. If some of the words here were new to you, our plain English AI glossary is a good next stop.

What Is RAG in AI? How Chatbots Answer From Your Own Documents

What Is RAG in AI? How Chatbots Answer From Your Own Documents

You upload a PDF, ask a question, and an answer comes back in seconds with a neat little citation beside it. It feels like the AI sat down and read your document the way you would. It did not. Something quite different happened, and once you know what, every strange answer you have had from a document chatbot starts to make sense.

The name for it is RAG. It is one of the most useful ideas in everyday AI and one of the worst explained, because nearly every guide is written for software engineers. This one is not. Here is what RAG in AI actually is, where you already use it, and why a perfectly good document can still give you a poor answer.

What is RAG in AI, in plain English

RAG stands for retrieval augmented generation. Three long words, one simple sequence: before the AI writes a word of its answer, something fetches relevant material for it, and the AI writes from that material.

AWS describes it in its own guide to the term as optimising a model’s output so that it references an authoritative knowledge base outside its training data before it answers. Strip the jargon: look it up first, then answer.

Picture an open book exam where you are not allowed to touch the book. An assistant reads your question, runs off, photocopies three pages he thinks are relevant, and slides them across the desk. You write a strong answer from those pages. That is RAG. Notice the detail that decides everything: the assistant chose the pages, and if he brought the wrong three, you never find out.

Why AI needed this in the first place

A large language model learns from an enormous pile of text and then stops learning. It has never seen your tenancy agreement, your company handbook or your lecture notes, and it cannot be sent back to school every time one of those files changes.

Retrieval was the way around that, and the name comes from a 2020 research paper by Patrick Lewis and colleagues, presented at NeurIPS that year, which paired a language model with a searchable index of Wikipedia. On language generation tasks they reported it produced more specific and more factual language than the model working alone.

How RAG actually works, step by step

Here is the shape of it.

  1. Your documents are chopped into small pieces, rarely more than a couple of paragraphs each. These are called chunks.
  2. Each chunk is converted into a long list of numbers representing its meaning, and those numbers go into a searchable index.
  3. You ask your question, and it gets converted into numbers the same way.
  4. The index is searched for the handful of chunks closest in meaning. Good systems look for exact word matches at the same time, which matters more than you would think.
  5. Those few chunks are pasted invisibly into the prompt, alongside your question.
  6. The model reads that bundle and writes the answer.

Read steps four and six together, because this is the part most people never hear: the model does not search your documents. A separate search step does, and the model only ever sees what that step handed it. Your two hundred page report was never read. Six paragraphs of it were.

Where you are already using RAG

You almost certainly used retrieval this week without hearing the word once.

  • Every time you upload a PDF and ask questions about it.
  • Google’s research assistant, called Gemini Notebook in Google’s own help pages and still found at notebooklm.google. Google describes it as giving grounded information based on your sources with clear in line citations, and says it is designed to answer from the sources you uploaded. Our walkthrough covers the practical side.
  • The support chatbot on a company website that somehow knows that company’s refund policy.
  • AI search answers with links underneath. Those links are the retrieval step, made visible.

Building websites and small online tools is where this stops being abstract. Anyone who has set up a help chatbot learns the same lesson quickly: the bot is only ever as current as the folder behind it. Leave a superseded price list sitting in there and it will be quoted back at a customer with total confidence. The AI is not wrong. The shelf it is reading from is.

Why RAG answers can still be wrong

Retrieval reduces invented answers, which is why companies use it, but it does not remove them. The process can fail in two places: the search fetches the wrong material, or the model misreads the right material. Most people only think about the second. Anthropic published test results in which a standard retrieval setup left 5.7 percent of the relevant material out of its top twenty chunks. Their improved method brought that share down to 2.9 percent, and adding a reranking step to 1.9 percent. Those are one company’s own tests rather than a law of nature, but the direction matters: even careful retrieval misses things, and when it does, the model answers from the wrong pages with no sign anything went astray.

Chunking causes its own trouble. Anthropic gives a neat example: a chunk reading “the company’s revenue grew by 3% over the previous quarter” is hard to use on its own, because it never says which company or which quarter. The details that would anchor it were somewhere else in the document and did not travel with the chunk. This is how a document chatbot hands you a number that is real but attached to the wrong thing, which is a different failure from a plain hallucination.

Your wording decides what gets found

This is the practical part, and it sits in a troubleshooting section almost nobody opens. Google’s help pages, explaining why its notebook tool sometimes cannot answer, say that when a notebook holds many sources the tool retrieves the most relevant information based on your question first, then builds a response from what it found. Their advice is to rephrase the question to be clearer or more specific.

Sit with that for a second. Your phrasing is doing double duty as the search query. Being specific helps, and so does using the words the document itself uses. Anthropic’s engineering write up explains why: matching on meaning alone can miss an exact term, which is why serious systems run a word matching search alongside the meaning based one. Ask “what did it say about costs” of a document that only ever says “expenditure”, and you may be handed weaker chunks than the document deserves.

Important tip: if a document AI says it cannot find something, do not assume the information is missing. Ask again, more specifically, using the words the document itself uses. That one habit fixes more bad answers than any clever prompt template.

What your file loses on the way in

A second quiet failure catches people out with reports and research papers. OpenAI’s file uploads FAQ notes that its Enterprise product supports visual retrieval for PDFs, and that on all other plans document files support text based retrieval only, so ChatGPT extracts the digital text and discards the images.

So if the figure you are asking about lives inside a chart, a diagram or a photographed table, it may not be in the pile the AI is searching at all. The same goes for a scanned document with no text layer. The AI is not refusing to tell you. It never received that part of your file. Quick check: open the PDF and try to select a sentence with your mouse. If the text highlights, there is something to retrieve. If nothing highlights, you have a picture of a page, and it needs an optical character recognition step first.

Four habits that get better answers from any document AI

  • Use the document’s own vocabulary, not your paraphrase of it.
  • Ask one thing at a time. A three part question pulls the search in three directions and satisfies none of them well.
  • Ask where the answer came from, then click the citation. Skipping it throws away the main safety feature you were given.
  • Move outdated files out of the folder rather than renaming them. Old documents do not look old to a retrieval system, and anything left in there is fair game.

Common Questions

Is RAG the same as the AI searching the internet?

Same process, different shelf. Web search retrieves from the open internet. RAG usually retrieves from a specific set of documents, such as your uploads or a company’s files. Both fetch first and write second.

Does RAG stop AI from making things up?

It helps a great deal, because the model has real material in front of it and can cite where each claim came from. It does not eliminate the problem. If the search fetches the wrong passages, the model writes a confident answer from them.

Is RAG the same as training or fine tuning a model?

No. Training changes the model itself and is expensive. RAG leaves the model untouched and hands it material at the moment you ask, which is why a company can add a new policy document to its chatbot in an afternoon instead of waiting for the next retraining cycle.

Final takeaway

RAG in AI is a search step wearing a very long name. Fetch first, write second. Once you picture that assistant running off to photocopy a few pages, you stop treating a document chatbot as an oracle that has read everything, and start treating it as a fast reader handed a small stack.

That shift changes how you use these tools. You word questions like search queries, keep your folders clean, and click the citation instead of trusting it. None of that requires technical skill, and it will get you better answers from the AI you already use.

AI Detectors: Can They Really Tell If Text Was Written by AI?

AI Detectors: Can They Really Tell If Text Was Written by AI?

You wrote every word of your essay yourself. Then a tool flags it as “likely AI-generated,” and suddenly you are defending work you actually did. If that fear has crossed your mind, you are not alone, and it is a fair question to ask: how reliable are AI detectors, really?

Short answer: less reliable than most people assume. In this simple guide we will look at what these tools do, where they fail, and what to do if one ever points a finger at your honest work.

What AI detectors actually do

An AI detector does not “know” who wrote something. It makes a guess based on patterns. AI writing often looks smooth and predictable, so detectors measure things like how “surprising” each word is. Human writing tends to be a little messier and more varied, and machine writing tends to be flatter.

The problem is that this is a statistical guess, not proof. A calm, well organized human writer can look “too smooth,” and a clever AI answer can look “human enough.” That gap is where the real trouble starts.

How accurate are AI detectors?

Independent tests put real-world accuracy of many AI detectors somewhere between roughly 60 and 90 percent, depending on the tool and the type of text. That range sounds fine until you remember what the errors mean for a real person: a wrong flag on a real student or worker.

Accuracy also drops fast in normal situations. Short pieces under about 200 words give the tool too little to work with. Lightly edited text, or text on an unusual topic, can slip past detectors or get wrongly flagged. So the same detector can look impressive in a lab and shaky in real classrooms.

The false positive problem nobody talks about

A “false positive” is when human writing gets labeled as AI. This is the scary one, and it is more common than the marketing suggests.

Stanford researchers tested seven popular detectors on essays written by non-native English speakers. On average, the tools wrongly flagged 61 percent of those human-written essays as AI, and on about one in five essays all seven detectors got it wrong at once. They almost never made that mistake with native English writers. You can read the summary on Stanford HAI.

This is not a small edge case. It means millions of students who learned English as a second language are more likely to be falsely accused.

Important tip: an AI detector result is an opinion, not evidence. Never accept a flag as final proof, and never let one be used against you without a real conversation and a look at your drafts and edit history.

Why universities started switching it off

Because of these errors, several universities stepped back from automatic AI detection. Vanderbilt University publicly disabled Turnitin’s AI detector and explained the math clearly: even a claimed 1 percent false-positive rate would wrongly flag roughly 750 of the 75,000 papers their students submit in a year. Their full explanation is on the Vanderbilt Brightspace blog.

That is 750 real students who could face a stressful accusation over an honest paper. When you see it that way, “1 percent” stops sounding safe.

Even OpenAI could not make it work

Here is the detail that surprises people most. OpenAI, the company behind ChatGPT, built its own AI text detector and then shut it down. As stated on its own classifier page, the tool was pulled on July 20, 2023 “due to its low rate of accuracy.” It had correctly caught only about 26 percent of AI text while wrongly flagging 9 percent of human text.

If the maker of the most famous AI model could not reliably detect its own output, that tells you a lot about the other tools making bold accuracy claims.

From my own work running websites and digital projects, I have learned to be careful with any tool that promises near-perfect results. The louder the accuracy claim, the more it deserves a second look.

What this means for you

If you are a student, treat detector scores as a starting point for a conversation, not a verdict. Keep your evidence. If you are a teacher or manager, use these tools as one weak signal at most, and never as an automatic judgment.

And if you do use AI to help with drafts, use it honestly and check its output, because AI makes plenty of its own mistakes. It is worth understanding why AI sometimes gives wrong answers and how to check the citations and sources AI hands you. If privacy is on your mind too, our guide on how to use AI safely walks through the basics.

How to protect your honest work

  • Write in a tool that saves version history, like Google Docs, so you can show your edits over time.
  • Keep your rough notes, outlines, and old drafts.
  • If a detector flags you unfairly, calmly ask which specific tool was used and how accurate it really is.
  • Understand the basics of how these tools work so you can explain your case clearly. Our simple AI glossary can help.

Common Questions

Are AI detectors accurate? Not consistently. Independent testing shows wide swings in accuracy and a real risk of false positives, especially on short or non-native English writing.

Can an AI detector be wrong about my essay? Yes. Human work is regularly flagged as AI, which is exactly why some universities stopped relying on these tools.

Is there any detector I can fully trust? No tool is reliable enough to stand alone as proof. Even OpenAI shut down its own detector for being too inaccurate.

How can I prove I wrote something myself? Keep your drafts and version history, and be ready to talk through your process. That evidence is far stronger than any detector score.

Final takeaway

AI detectors can be a rough hint, but they are not lie detectors and they are not proof. They get things wrong often enough that big institutions have quietly stepped away from them. So use them with caution, keep your own evidence, and remember that a machine guessing about your writing is never the final word. You are.

AI Terms Explained: A Simple Glossary for Beginners (2026)

AI Terms Explained: A Simple Glossary for Beginners (2026)

Ever read an article about AI and felt like everyone skipped the part where they explain the words? You are not alone. Terms like “large language model,” “tokens,” and “multimodal” get tossed around as if we all agreed on their meaning at some meeting nobody was invited to.

So here are the main AI terms explained in plain English, all in one place. No math, no jargon for its own sake. Just the words you keep seeing, what each one means, and a quick example. I work with websites and online tools every day, and most of these ideas are simpler than they sound once you strip away the buzzwords. Where a term has its own full guide on the site, I’ve linked it so you can go deeper whenever you want. For a much bigger technical version, Google keeps a detailed machine learning glossary too.

AI terms explained: start with the big picture

Artificial intelligence (AI). Software that does things we usually think need human intelligence, like understanding language, recognizing images, or making a decision. Your spam filter is AI. So is the app that suggests the next word as you type. Here is what AI actually is in simple terms.

Machine learning (ML). The main way modern AI is built. Instead of a person writing every rule by hand, you show the system thousands of examples and it learns the patterns itself. Show it enough photos of cats and it learns to spot one. This is machine learning explained more fully.

Deep learning. A powerful type of machine learning that uses layered networks to handle messy, real-world data like images, sound, and text. It powers voice assistants and the vision in self-driving cars. If the overlap confuses you, this guide sorts out AI vs machine learning vs deep learning.

Neural network. The structure behind deep learning. It’s a web of connected units, loosely inspired by how brain cells pass signals along, arranged in layers that each hand information to the next until an answer comes out. More in what a neural network is.

The words behind chatbots

Generative AI. AI that creates new content rather than only sorting or labeling what already exists. Text, images, music, code, it can produce them from a request. ChatGPT drafting an email is generative AI at work. Start with what generative AI means.

Large language model (LLM). The engine inside chatbots like ChatGPT, Gemini, and Claude. It’s trained on huge amounts of text, and at its core it predicts the most likely next chunk of text based on what came before. That one idea, done at enormous scale, is what lets it write and answer. See what a large language model is.

Token. The small piece of text a model reads and writes, usually a word or part of a word. Models measure their input and output in tokens, and many tools price their usage that way. A common word might be one token, while a rare one gets split into two or three. Here is how tokens work.

Transformer. The model design that made today’s chatbots possible. Google researchers introduced it in a 2017 paper called “Attention Is All You Need,” and nearly every large AI model since has been built on it. It’s the “T” in GPT. More in what a transformer is.

How AI models are made

Training data. The examples a model learns from, often text and images pulled from many sources. The range and quality of that data shapes what a model is good at and where its blind spots are. Weak data in, weak answers out.

Parameters. The internal values a model adjusts while it learns, a bit like millions of tiny dials it keeps tuning to get better. When you hear a model has “billions of parameters,” that is a rough measure of its size, though bigger does not always mean smarter.

Fine-tuning. Extra training that takes a general model and specializes it for one job, such as customer support or legal language, using a smaller focused set of examples. It’s far cheaper than building a model from scratch.

Talking to AI day to day

Prompt. Simply what you type to an AI: your question, instruction, or request. Clearer prompts get better answers, and it’s a real skill worth practicing. We have a full guide on writing better AI prompts.

Hallucination. When AI gives you an answer that sounds confident but is wrong or invented, like citing a source that does not exist. It happens because the model predicts plausible text, not verified facts. For a user, this is the single most important term to understand. Here is why AI hallucinates and how to catch it.

Tip: treat AI as a fast first draft, not a final answer. Check anything that matters, especially names, numbers, dates, and links, against a trusted source before you rely on it.

The words you’ll see in the news

AI agent. An AI that does more than chat. It takes steps to complete a task, like searching, filling in a form, or booking something, often with some independence. Think of it as an assistant that can take actions on your behalf. See what AI agents are.

Multimodal AI. AI that works with more than one kind of data at once: text, images, audio, and video together. It’s why you can show a chatbot a photo and ask about it, or talk to it out loud. As IBM explains, early chatbots handled text only, while newer models mix inputs and outputs.

Reasoning model. A model that takes a moment to work through a problem in steps before it answers, which helps with math, logic, and multi-part questions. It trades a little speed for more careful answers. More in AI reasoning models explained.

Artificial general intelligence (AGI). The headline term. It means a hypothetical future AI that could match or beat humans across almost any task, not one narrow skill. We are not there. As IBM puts it, AGI is still a “hypothetical stage,” and experts do not even agree on how we would know we had reached it. Today’s tools are impressive, but they are narrow specialists.

Common Questions

Do I need to memorize all these AI terms? No. Skim them once, then come back when a word trips you up. You will pick up the common ones, like AI, prompt, LLM, and hallucination, just by using the tools for a week.

What is the difference between AI, machine learning, and deep learning? Picture nested circles. AI is the big idea, machine learning is the main way we build it today, and deep learning is a powerful type of machine learning. The full comparison is here.

Is AGI here yet? No. Today’s AI is “narrow,” meaning it’s strong at specific tasks but cannot flexibly do everything a person can. AGI is still a goal and a debate, not something you can download.

Final takeaway

You do not need a technical background to follow the AI conversation. Once you know that a model predicts tokens, that a prompt is just your instruction, and that a hallucination is always possible, most headlines stop reading like a foreign language. Bookmark this page, keep it open the next time you read about AI, and use the linked guides when you want the deeper version. The jargon was the hard part, and you have just gotten past most of it.

AI vs Machine Learning vs Deep Learning: What’s the Difference?

AI vs Machine Learning vs Deep Learning: What’s the Difference?

You have probably seen “AI,” “machine learning,” and “deep learning” used as if they all mean the same thing. They are related, but they are not identical, and the difference is easier to understand than most articles make it sound.

This quick AI vs machine learning vs deep learning guide gives you a simple way to keep them straight, with everyday examples, so the next time you read a headline or a product description you know exactly what it means.

AI vs machine learning vs deep learning: the simple version

Picture three circles, one inside the other. Artificial intelligence is the big outer circle. Machine learning sits inside it. Deep learning is a smaller circle inside machine learning. So every deep learning system is machine learning, and every machine learning system is a type of AI, but not the other way around.

As IBM puts it, AI is the overarching system, machine learning is a subset of AI, and deep learning is a subset of machine learning. That single picture clears up most of the confusion. Now let us look at each one.

What is artificial intelligence?

Artificial intelligence is the broadest term. It describes any machine that does things we associate with human intelligence, like recognising a face, understanding speech, making a decision, or translating a language.

AI is the goal, not one specific method. Some AI is very simple, following fixed rules a person wrote. Some is far more advanced. The AI you meet every day, like a chatbot or a photo tagger, is what researchers call narrow AI: it is good at one task. The idea of a machine that can do almost anything a human can, often called artificial general intelligence, does not exist yet. If you want the fuller picture, our guide on what AI is walks through it in plain English.

What is machine learning?

Machine learning is a subset of AI, and it is where most of today’s useful AI actually lives. Instead of a programmer writing every rule by hand, a machine learning system learns patterns from data and uses them to make predictions.

A good example is the way Netflix suggests shows or Amazon recommends products. Nobody wrote a rule that says “this person likes cooking videos.” The system learned it from what you watched and clicked before.

Classic machine learning still needs a fair bit of human help. A person often has to decide which features in the data matter before the system can learn from them. Our explainer on what machine learning is goes deeper, and Google’s free Machine Learning Crash Course is a good hands-on next step.

What is deep learning?

Deep learning is a subset of machine learning. It uses neural networks, which are layers of connected “nodes” loosely inspired by the brain. When a neural network has many layers stacked up, we call it deep, and that depth is where the name comes from.

The big advantage is that deep learning can work directly with messy, unstructured data like images, audio, and text, and it figures out the important features on its own instead of waiting for a human to point them out. That is why it powers things like voice assistants, self-driving car vision, and the large language models behind tools like ChatGPT and Gemini. You can read more in our guide on how neural networks work.

Where do generative AI and LLMs fit?

This is a common follow-up question. Generative AI, and the large language models that power chatbots, are built on deep learning. So a tool like ChatGPT is deep learning, which is machine learning, which is a form of AI. All three labels are correct at the same time, they just describe different levels of zoom.

Which term should you actually use?

For everyday conversation, “AI” is a safe general word. Reach for “machine learning” when you specifically mean a system that learns from data, and “deep learning” when that system is built on multi-layer neural networks.

Tip: When a product says it uses “AI,” it almost always means machine learning, and often deep learning, working quietly in the background. Knowing that helps you see past the marketing and ask the better question: what data did it learn from?

From my own experience building websites and working with online tools, nearly every “AI feature” I touch, from spam filters to search to writing helpers, is really machine learning or deep learning under a friendlier label. The words on the box matter less than understanding that these systems learn from data, and that the data can be biased or wrong.

Common Questions

Is deep learning the same as AI?
No. Deep learning is one specific type of AI. All deep learning is AI, but plenty of AI is not deep learning.

Do I need to know the difference to use AI tools?
Not to use them, no. But knowing the difference helps you understand what a tool can and cannot do, and why it sometimes gets things wrong.

Is generative AI machine learning?
Yes. Generative AI is built on deep learning, which is a branch of machine learning, which is a branch of AI.

Final takeaway

The easiest way to remember it: AI is the big idea, machine learning is how most modern AI learns from data, and deep learning is a powerful type of machine learning built on neural networks. Keep those three circles in mind and the buzzwords stop being confusing. Next time you see “AI” in a headline, you will know what is really going on underneath.

What Are AI Reasoning Models? Why AI Now Thinks Before It Answers

What Are AI Reasoning Models? Why AI Now Thinks Before It Answers

Have you noticed that ChatGPT, Gemini, or Claude sometimes pauses and shows a little “thinking” note before it answers? That pause is not for show. You are watching an AI reasoning model at work, and it is one of the biggest changes in how AI tools answer questions.

This guide explains what AI reasoning models are in simple words, how the thinking modes in ChatGPT, Gemini, and Claude differ, and when that extra thinking actually helps you.

What are AI reasoning models?

AI reasoning models are AI models that work through a problem step by step before giving you a final answer. Instead of predicting a reply straight away, the model first writes out a private chain of reasoning, checks it, and only then answers.

Researchers call this a chain of thought. OpenAI, which released the first widely known reasoning model in 2024, describes it as the model learning to break tricky steps into simpler ones, notice its own mistakes, and try a different approach when one is not working. If you know how a large language model predicts text, a reasoning model is the same idea with an extra habit built in: think first, answer second.

Why thinking longer makes AI smarter

The surprising discovery behind these models is simple: the longer the model is allowed to think, the better its answers get on hard problems. In OpenAI’s own research on its o1 model, accuracy on competition maths problems kept climbing as the model was given more thinking time. That model went from solving around 12 percent of exam problems without reasoning to 74 percent with it.

The thinking is not free, though. Reasoning happens in tokens, the small text pieces AI works with, so a long think costs more computing time and, on paid plans and APIs, more money. That is why the tools let you choose when to use it.

How ChatGPT, Gemini, and Claude handle thinking

All three big assistants now have a thinking mode, but they present it differently.

ChatGPT does not show you the raw chain of thought. OpenAI keeps that hidden and displays a short summary of the reasoning instead. Claude took the opposite path: Anthropic’s extended thinking can show the thought process, and it is the same model simply giving itself more time rather than a separate one. Google’s current Gemini models think by default and let developers set how much effort to spend, from minimal up to high.

If you are still choosing between the three, our ChatGPT vs Gemini vs Claude comparison covers the basics.

When thinking mode helps, and when it does not

Google’s own guidance for developers matches what I see in daily use around websites and digital projects: match the effort to the task.

  • Worth the wait: maths, debugging code, planning a project, comparing options with many moving parts, tricky spreadsheet logic.
  • Not worth it: quick facts, simple rewrites, casual questions. A normal fast answer is fine and cheaper.

A practical habit: if you would grab a pen and paper to work it out yourself, turn thinking on. If you would answer from memory, leave it off.

The honest limits

Reasoning models are better at hard problems, but they are not truth machines. They can still make things up, so the checking habit from our guide on AI hallucinations still applies to every answer, thinking or not.

There is a subtler limit too. Anthropic openly notes that the visible thoughts may not fully reflect what is happening inside the model, a problem researchers call faithfulness. In plain words: the thinking text is useful to read, but it is not proof of how the answer was really made.

Tip: use thinking mode for decisions and calculations, and always check the final numbers yourself. A confident, well written chain of thought can still lead to a wrong answer.

Common Questions

Do I need to pay to use AI reasoning models?

No. All three assistants include some form of thinking on free tiers, though paid plans get stronger models and higher limits. Gemini’s current models think by default, and ChatGPT and Claude switch to deeper thinking for harder questions.

Is a reasoning model a different AI from the normal one?

Sometimes, but not always. Claude’s extended thinking is the same model given more time. OpenAI trained dedicated reasoning models with reinforcement learning. Either way, what you experience is similar: a pause, then a more worked-through answer.

Does thinking mode stop wrong answers?

It reduces them on hard reasoning tasks, sometimes dramatically, but it does not remove them. Reasoning models can still invent facts and citations, so verify anything important before you rely on it.

Final takeaway

AI reasoning models are the reason your chatbot suddenly feels better at maths, code, and planning: it now works through problems instead of guessing in one go. Use the thinking mode where the extra effort pays off, skip it for quick questions, and keep checking the answers that matter. The thinking is impressive; your judgement is still the final step.

Verified by MonsterInsights