Agentic AI
Also known as: Agentic, AI agent
AI systems that don't just generate text but autonomously call tools, evaluate intermediate results, and work through multi-step tasks.
Agentic AI describes AI systems that not only formulate answers but, given a task, autonomously plan steps, call tools, and evaluate intermediate results. Instead of a one-shot question-and-answer exchange, you get a loop: plan, act, observe, next step.
What makes a system agentic
- Tool use: the model can call APIs, databases, or other tools (often via MCP).
- Intermediate checks: results are reviewed before the next step is taken.
- Memory: the agent keeps context across at least the current task.
- Stop criteria: clear conditions for when the task is done - or has to be escalated.
Why it matters
In day-to-day operations, agentic AI handles tasks that are too large for a single prompt: research across several sources, drafting documents, processing inbound mail. Quality depends on tool descriptions, clean permissions, and clear stopping behaviour when the agent is uncertain.
What it is not
A coding agent is one specific shape of agentic AI for software development. A plain chatbot is not - as soon as there are no tools or steps in play, the agentic part is missing.