Zum Inhalt springen
Agent Hub
Back to glossary
fundamentals

AI agent

An AI agent is a program built on a language model that completes tasks on its own: it understands a request, plans steps, calls tools, and responds with a result instead of just text.

Also known as: AI Agent, Autonomer Agent

In detail

Unlike a classic chatbot, an AI agent doesn't just answer questions — it acts. It can book a meeting in a calendar, create a ticket in the CRM, send an email, or look up data in a database.

Technically, an agent has three building blocks:

  1. Language model (LLM) like Claude or GPT for understanding and generation.
  2. Tools — functions with a clearly defined API the agent can call.
  3. State (memory) where conversation and intermediate results are stored.

Good agents are specialized: a support agent, a sales agent, an ops agent — coordinated by a router.

Example

A support agent receives the question 'Where's my order 12345?'. It extracts the order ID, calls the shipping API, fetches the DHL tracking link, and replies: 'Your order shipped yesterday, expected delivery tomorrow. Here's the tracking link.' — all in under 5 seconds, without human help.

Related terms