PromptForge
AI Glossary

Agents & tools

AI agent

Also known as: agents, agentic, ai agents

Definition

An AI agent is a system where a model plans and takes actions through tools in a loop, rather than producing a single response. It decides what to do next, does it, observes the result, and continues until the goal is met.

The distinguishing feature is the loop. A chatbot answers; an agent reasons about what it needs, calls a tool, reads the output, and reasons again. That loop is what lets it complete multi-step work like researching a topic across several sources or fixing a failing test.

Agents introduce failure modes that single prompts do not have. They can loop indefinitely, take costly wrong turns, and compound early mistakes across subsequent steps. Every production agent therefore needs explicit limits: a maximum number of steps, a budget, and a clear stopping condition.

The most reliable agents today are narrow. Broad autonomy remains unreliable; a well-scoped agent with three good tools and a clear success criterion works.

Related terms

Put this into practice

Understanding the term is step one. Our free courses and tools let you actually use it.