Reasoning & Agents

Agentic AI

Plan and execute multi-step goals autonomously

Automation Multimodal Advanced Emerging
Capability type
Automation
Modality
Multimodal
Typical input
Goal + available tools
Typical output
Completed task + trace
Measured by
Task completion rate

Overview

Agentic AI describes systems that take a goal rather than an instruction, decide their own steps, use tools, observe what happened and adjust. The distinguishing feature is the loop: the system keeps working until the goal is met or it gives up.

How it works

An agent loop alternates between deciding the next action, executing it through a tool, and observing the result. Memory carries state across steps. Guardrails — step limits, budgets, approval gates — stop the loop running away.

Use cases

Research assistants

Gather, read and synthesise sources across the web into a briefing.

Research

Software agents

Take an issue, write the change, run tests and open a pull request.

Software

Operations agents

Monitor systems and carry out routine remediation within set bounds.

IT

Sales research

Build qualified account briefs from public sources before outreach.

Sales

Benefits

  • Completes work end to end instead of producing a draft.
  • Adapts when a step fails rather than halting.
  • Coordinates across many tools without hand-holding.
  • Handles goals too open-ended to script in advance.

Limitations

  • Errors compound across steps; a wrong turn early derails everything.
  • Cost and latency are hard to predict per run.
  • Autonomy plus write access is a genuine security risk.
  • Still immature — supervision is not optional in production.

What to look for when choosing a tool

  • Step, time and spend limits per run
  • Full execution trace for every action taken
  • Human approval before irreversible operations
  • Scoped, least-privilege credentials for each tool
  • Sandboxed execution environment

FAQ

Is agentic AI reliable enough for production?
For bounded, reversible tasks with a human reviewing the output, yes. For unsupervised action on production systems or customer data, not yet — keep approval gates in place.
How do I stop an agent running up a huge bill?
Hard limits: maximum steps, maximum spend per run, and a wall-clock timeout. Treat an agent without budget caps as a production incident waiting to happen.
What is the difference from workflow automation?
A workflow follows a path you defined. An agent decides its own path toward a goal. Workflows are more predictable; agents handle situations you did not anticipate.