AI systems that can autonomously decompose goals into subtasks, plan execution strategies, use tools, and iteratively refine their approach based on intermediate results. Agentic AI enables complex multimodal workflows that require reasoning, tool use, and adaptive decision-making.
Agentic AI systems use large language models as reasoning engines that perceive their environment, plan sequences of actions, execute those actions using tools (search, code execution, API calls), observe results, and decide next steps. Unlike single-turn question answering, agents maintain state across multiple turns, recover from errors, and adapt their strategy based on intermediate outcomes to achieve complex goals.
Agent architectures include ReAct (reasoning + acting), Plan-and-Execute (separate planning and execution), and multi-agent systems (specialized agents collaborating). Tool integration uses function calling or structured output APIs. Memory systems include short-term (conversation context), working memory (scratchpad), and long-term (vector store retrieval). Frameworks include LangGraph, AutoGen, and CrewAI for building agent systems.