Agents vs Chatbots (Recap)

A chatbot goes: user message → model reply → done. An agent goes: user goal → plan → tool call → observe → maybe plan again → final answer.

The difference is not how clever the model is. It is whether the system is allowed to take a step, look at the result, and keep going.

Intuition

Consider one request: "Has my order shipped?"

A chatbot can explain how shipping works, what the tracking email looks like, and how long delivery usually takes. Everything it says may be correct and none of it answers the question, because the answer lives in a database it cannot reach.

An agent looks up the order, sees it shipped on Tuesday, and says so.

How it works

Side by side

Chatbot Agent
Steps per request One As many as the task needs
Can reach live data No Yes, through tools
Can cause side effects No Yes — this is the risk
Cost per request Predictable Varies with how long the loop runs
Main failure Confidently wrong text Confidently wrong action
flowchart TB subgraph CB["Chatbot"] U1[User message] --> M1[Model] --> R1[Reply] end subgraph AG["Agent"] U2[User goal] --> M2[Model plans] M2 --> T[Call a tool] T --> O[Observe result] O --> C{Done?} C -->|No| M2 C -->|Yes| R2[Final answer] end

When you need an agent

When a chatbot is enough

The honest default is the simpler one. An agent adds cost, latency, and a category of failure that chatbots cannot have — so reach for it when the task genuinely requires acting, not because it sounds more advanced.

What goes wrong

One-line summary

Agents loop, use tools, and change things; chatbots reply — pick the agent only when the task needs action, not just words.

Key terms