AI Week Radar

Agentic systems

Agentic

LLM-driven loops that plan, take actions in the world (call tools, edit files, hit APIs), observe results, and iterate — rather than just answering a single prompt. The dominant 2026 paradigm for AI engineering.

An "agentic" system is one where the LLM is in a loop: it picks an action, executes it (via tools, code, or another agent), reads the result, and decides what to do next. Compare to a chat completion, where the model produces one response and the loop is closed.

The agentic shift happened because tool-use got reliable enough that you can string 20+ steps without the agent collapsing. Coding agents (Claude Code, Cursor Agent, Aider), research agents (Deep Research, OpenAI's o-series with tools), and operator-style agents (browse-the-web) are all expressions of the same pattern.

Production agentic systems care about: tool reliability, checkpoint/resume, observability (because debugging a 50-step run is hell without traces), cost-per-task budgets, and human-in-the-loop checkpoints for irreversible actions.

See also