Skip to content

· agents · llm · systems

Agents do not replace systems

An AI agent without a surrounding system is a robot without a body: it may produce answers, but it does not know what is happening, has no reliable memory and cannot validate its claims against reality.

When I built customer service agents, making the model hold a conversation was the easy part. The hard part was:

  • giving it access to real data such as products, SKUs and inventory,
  • preventing it from inventing things that do not exist,
  • preserving context across interactions,
  • integrating it with the existing operation.

Each of these is a systems problem, not a prompt problem. A language model can replace much of the interpretation and text-generation layer. It does not replace data modeling, business rules, validation or integration.

The useful question is not "where can I add AI?", but "what system needs to exist — and which part of it can AI improve?"