Lesson 1 of 7

5 min read

What is an AI agent, really?

You have almost certainly used an AI chatbot. An AI agent is the next step: instead of waiting for your next message, it goes and does the work. This lesson makes the difference concrete.

By David Silva

The word agent gets thrown around a lot right now, often to mean nothing more than a chatbot with a new coat of paint. There is a real distinction underneath, and once you see it, the whole field gets easier to reason about.

A chatbot answers. An agent acts.

A chatbot is a conversation. You type, it replies, and nothing happens in the world until you type again. It is a very capable text box. An agent is different in one specific way: you give it a goal, and it decides what steps to take to reach that goal, then takes them. It can look things up, use tools, send messages, and check its own work, looping until the job is done or it needs your input.

Example

Same request, two very different tools

Ask a chatbot to "keep an eye on flight prices to Lisbon," and it will explain how you might do that. Ask an agent the same thing, and it can actually check the prices every morning, notice when one drops below your number, and message you the moment it does. One gives you instructions. The other does the task.

The shift: from answers to outcomes

That is the mental model to hold on to. A chatbot produces answers. An agent produces outcomes. To get outcomes, an agent needs a few things a plain chatbot does not have:

  • A goal, written by you in plain language, that it works toward.
  • Tools it is allowed to use, like searching the web, reading your calendar, or sending an email.
  • The ability to run on its own, on a schedule or when something happens, without you prompting each step.
  • Some memory of what it has already done, so it does not repeat itself or lose the thread.

Everything else in this course builds on that sentence. Next we will look at the tasks in an ordinary week that an agent can quietly take off your plate, so the idea stops being abstract and starts being useful.

Key takeaways

  • A chatbot answers questions; an agent takes actions to reach a goal.
  • Agents need a goal, tools, the ability to run on their own, and memory.
  • The point of an agent is outcomes, not just replies.

Get the next lesson in your inbox

Up next: What an AI agent can actually do for you. Join the free course and we'll send new lessons and practical ways to put agents to work.

Common questions

Not quite. A tool like ChatGPT is mostly a chatbot: it answers whatever you ask in the moment. An agent uses a similar underlying model but adds a goal, tools, and the ability to act on its own over time.