Lesson 2 of 5·10 min read

Autonomous vs. Assistive Agents

Not every AI agent needs to act fully autonomously. Choosing the right autonomy level is one of the most important architectural decisions — with direct implications for risk, cost, and acceptance.

The 5 Autonomy Levels

LevelNameDescriptionExample
1InformingAgent provides information, human decides and actsResearch assistant
2SuggestingAgent recommends actions, human confirmsEmail drafting agent
3DelegatingAgent acts, but human can intervene at any timeMeeting scheduling agent
4Autonomous with oversightAgent acts independently, reports resultsData monitoring agent
5Fully autonomousAgent acts without human interventionAlgorithmic trading agent

Calibrating Decision Authority

The autonomy level depends on three factors:

1. Reversibility

  • Highly reversible (Level 3–5 possible): Email drafts, calendar entries, report generation
  • Hard to reverse (max Level 2–3): Contract sending, orders, hiring decisions
  • Irreversible (max Level 1–2): Data deletion, financial transactions, legal declarations

2. Error Cost

What does a mistake cost? The higher the potential cost, the lower the autonomy level should be:

  • Low: Wrong meeting summary → Level 4–5 OK
  • Medium: Wrong price in a quote → max Level 3
  • High: Incorrect compliance assessment → max Level 1–2

3. Predictability

  • Structured tasks (clear rules, low variance): Higher autonomy possible
  • Unstructured tasks (lots of context, discretion required): Lower autonomy recommended

Risks of High Autonomy

Higher autonomy brings specific risks:

  • Hallucinations in actions: The agent acts on false information.
  • Goal drift: The agent optimizes for a goal that has diverged from the original purpose.
  • Cascade errors: An error in step 1 is amplified by autonomous follow-up steps.
  • Accountability gap: Who is liable when an autonomous agent makes a mistake?
  • Loss of control: From Level 4 onward, human intervention becomes time-critical.

Practical Recommendation: Ramp Up Gradually

Start every agent project at Level 2 (suggesting):

  1. Week 1–4: Agent works at Level 2 — all suggestions are manually reviewed
  2. Month 2–3: Collect data — How often are suggestions correct? Where are the errors?
  3. From Month 4: Gradually increase to Level 3 — but only for validated sub-areas
  4. Level 4–5: Only when error rate is below 1% and monitoring is active

Remember: Autonomy isn't a feature you switch on. It's a trust level that must be earned.