LearnAI home

What They Are ยท Lesson 1

What Is an AI Agent, Really?

The difference between something that answers you and something that goes and does the job.

Directions versus the parcel

There are two favours you might ask a colleague on a Tuesday morning.

The first is where is the post office. They tell you. Left at the lights, past the bakery, grey building with the unfortunate blue door. Genuinely useful. You still have to put your coat on and walk there yourself.

The second is could you go and collect my parcel. They stand up, leave, queue behind a man posting a canoe paddle, sign something, and come back holding a box. Somewhere in the middle they made a dozen small decisions you never heard about and never needed to.

That is the entire difference between a chatbot and an agent. One gives you directions. The other comes back with the parcel.

Almost everything else you have been told about agents in the past two years is decoration on top of that one idea.

What changes when it does instead of says

A chatbot has exactly one move: produce text and hand it to you. Ask it to book a table and you will get a lovely paragraph about booking a table. Nothing has been booked. Nothing outside the conversation has moved a millimetre.

An agent gets the same request plus a set of things it is allowed to actually use: a search box, a calendar, a document, an inbox. It picks one, uses it, looks at what came back, and decides what to do next. It keeps going until the job is finished or it gets stuck. (A sibling course, Understanding Loops in AI, takes that repeat-until-done cycle apart properly, so we will leave it alone here.)

The practical consequence is worth sitting with for a second. A chatbot that misunderstands you wastes ninety seconds of your time. An agent that misunderstands you emails the wrong document to the wrong client. Identical misunderstanding, very different Tuesday.

In plain English

Chatbot:
AI that answers you in words. Everything it produces arrives inside the conversation and stays there.
Agent:
AI that has been given a goal and the ability to take actions, so it can change things outside the conversation.
Tool:
Anything the agent is allowed to use: a web search, a file, a calendar, a spreadsheet, an email account.
Autonomy:
How far the agent is allowed to go before it has to stop and ask you something.
Task:
The job you hand over. For an agent this is a goal with a finish line, not a question with an answer.

Three things an agent has that a chatbot does not

A goal, not a question. You do not ask an agent what it thinks. You tell it what should be true when it stops.

Tools it can reach. Without tools an agent is just a chatbot with ambition. The next lesson is entirely about this.

Permission to continue. A chatbot answers once and waits. An agent takes a step, sees the result, and takes another one without asking you first. That permission is the thing that makes it useful and the thing that makes it risky, in exactly equal measure.

Three questions that tell you if it is really an agent
  1. When it finished, had anything changed outside the chat window? No = chatbot Yes = agent

  2. Did it take more than one step on its own? No = chatbot Yes = agent

  3. Could it have got the job wrong in a way you would need to undo? No = chatbot Yes = agent, and it needs boundaries

The word is doing a great deal of work

Be warned: agent is now a marketing word. It gets stapled onto anything with a text box. In practice there is a spectrum, and most products sit somewhere in the middle of it rather than at either end.

The spectrum from answering to doing

ANSWERS ONLY Writes you a draft. You copy, paste, send. SUGGESTS ACTIONS Prepares the email and shows it. You press send. ACTS WITH A CHECK Does the work, pauses at the risky step, asks you. ACTS ALONE Does the whole job. You see the result afterwards.

Most tools sold as agents today live in the middle two rows, and honestly that is the sensible place for them to live. Acts with a check is not a watered down agent. For anything that touches customers or money, it is the design you actually want.

Checkpoint

A chatbot produces words. An agent produces changes. The moment something outside the conversation is different, you are dealing with an agent, and you are responsible for whatever it touched.

Ask it like a chatbot and you get chatbot results

The most common mistake with an agent is talking to it the way you talk to a chat window. Questions get answers. Agents need a destination.

โŒ Weak prompt

Prompt

What should we do about the overdue invoices?

Output

There are several approaches to overdue invoices. You could send a reminder sequence, offer a payment plan, or escalate to a formal collections process. Best practice generally suggests starting with a polite reminder...

That is a question, so you got an essay. Nothing was checked, nothing was found, nothing changed. You are exactly where you started, only better informed about invoicing in general.

โœ… Good prompt

Prompt

Open the accounts file I shared. Find every invoice more than 30 days overdue. For each one, write a short chase email and save it as a draft. Do not send any of them. Finish with a list of client name, amount and days overdue.

Output

Found 7 invoices past 30 days. Drafted 7 chase emails, all saved, none sent. Summary list below, sorted by amount owed.

A destination (drafts written), a boundary (do not send), and a finish line (the summary list). That is agent shaped work, and you can check every piece of it before anything leaves the building.

Where this leaves you

You do not need to know how any of this is built. You need to know one thing when someone offers you an agent: what can it touch, and what happens if it gets that wrong. That single question will carry you through the rest of this course.

A safe first agent task worth trying this week

Pick a job with these three properties:

  • It is boring and you do it repeatedly
  • Every step of it is easy to check afterwards
  • If it goes wrong, you can undo it in under five minutes

Good candidates: tidying a list, summarising a folder of documents, drafting (not sending) routine replies, collecting links on a topic.

Bad first candidates: anything involving payments, customers, public posts, or deleting things.

When you are sizing up a new tool, ignore the word agent on the homepage entirely and go straight to the permissions screen. What it asks for access to tells you what it really is.

๐Ÿ“ Quiz

Question 1 of 4

What is the core difference between a chatbot and an AI agent?

Found this useful? Pass it on.