AI Agents vs Fixed Pipelines
How to Choose the Right Architecture for Your Workflow
Every AI vendor proposal in 2026 includes some version of the same vocabulary: AI agents, agentic AI, MCP, LangGraph. If you are evaluating AI for your business, you have almost certainly been pitched an "intelligent agent" solution.
Before signing, it is worth understanding what an agent architecture actually is, what it costs in practice, and whether it is appropriate for your workflow.
What an Agent Architecture Does
An AI agent runs an LLM in a loop: receive a goal, decide the next action, call a tool, evaluate the result, decide the next action. No human pre-defines the sequence of steps. The model determines the path dynamically.
This design is appropriate for open-ended tasks — situations where the steps cannot be predicted in advance and where the system needs to make real-time decisions about which tools to use.
Most business workflows are not open-ended.
Most Business Workflows Are Fixed Sequences
Document arrives → extract fields → classify → summarise → route to output. Daily market news → filter by topic → summarise → send to Telegram. Customer query → retrieve from knowledge base → generate response.
These workflows have known steps. Known steps warrant a fixed pipeline: each stage is explicitly defined in code, the LLM handles only the parts it is suited for (language understanding, extraction, generation), and flow control stays in the application layer.
The business advantages of a fixed pipeline over an agent are directly measurable.
Cost predictability. An agent decides at runtime how many LLM calls to make — it might be three, it might be thirty, depending on what it encounters. A fixed pipeline has the same cost per run. For a system processing documents daily, the difference compounds.
Auditability. Hong Kong's regulated industries require the ability to explain how a result was produced. A fixed pipeline records each step. An agent's decision path varies on every run and requires reconstructing the reasoning chain to audit — a significantly higher compliance overhead.
Fault isolation. In a fixed pipeline, a failure in step three is diagnosed and fixed in step three. In an agent system, a failure requires reconstructing the entire decision sequence to identify the cause.
When an Agent Architecture Is Appropriate
Agents have real value in specific scenarios: open-ended research tasks, workflows requiring dynamic queries across multiple external systems, or situations where the steps genuinely cannot be defined in advance.
These scenarios exist, but they are not common in SME day-to-day operations. If someone recommends an agent architecture without first asking detailed questions about your workflow structure, they are selling a technical approach, not solving a specific problem.
A Single Test for Your Use Case
Ask whether the workflow steps can be fully drawn on a whiteboard.
Architecture Is an Engineering Decision
The production systems I build use fixed pipelines in the large majority of cases. Not because agents are incapable, but because fixed pipelines are the correct engineering choice for predictable workflows: lower cost per run, straightforward audit trails, and localised fault diagnosis.
The appropriate architecture depends on the workflow, not on what terminology is currently prevalent in the market.
Levi is a Hong Kong-based independent AI engineer building production LLM applications and RAG pipelines for Hong Kong and Greater Bay Area businesses. Scope is defined before work begins. Deliverable is a running system.
Get in Touch →