Vol. XVI · No. 261Friday 18 September 2026World Edition
TheNewsRupt coat of arms crest

The NewsRupt

Artificial intelligence

What is an AI agent?

Published 18 Sep 2026Last reviewed 18 Sep 2026Last updated 18 Sep 2026
Short answer

An AI agent is a system in which a language model decides which actions to take, executes them through tools, observes the results and repeats until a goal is met or a limit is reached. The distinguishing feature is not autonomy in the abstract but a loop: the model''s output becomes an action, and the action''s result becomes the model''s next input. Reliability falls as the number of steps in that loop rises.

How it works

The model is given a goal and a set of tool definitions — functions with typed inputs. It emits a structured tool call; the runtime executes it and returns the result; the model continues. Production systems add step limits, retries, validation of tool arguments, permission checks for irreversible actions, and persistent state so a run can be resumed or audited. Long runs also require context management, since the transcript grows with every observation.

Example

A support agent reads a ticket, queries the order system, checks a refund policy, and either issues a refund below a threshold or escalates to a human above it — with every tool call logged.

Why it matters

Agents shift the engineering problem from prompt quality to systems design: permissions, idempotency, observability and failure handling. Organisations that treat agents as prompts rather than as distributed systems tend to see pilots that demo well and fail in production.

Common misunderstandings
  • That a single per-step success rate is reassuring. At 95% per step, a 20-step task succeeds about 36% of the time.
  • That more tools improve results. Large tool sets increase selection errors.
  • That agent and workflow are the same. A fixed pipeline with model calls is usually more reliable and cheaper.
What we cannot claim
  • Agent benchmarks use synthetic environments and rarely capture messy enterprise systems or partial failures.
  • Vendor-reported completion rates are usually measured on tasks the vendor selected.
Sources
Related