The Compound Mistake Problem Flashcards

(5 cards)

1
Q

What is the Compound Mistake Problem?

A

In a multi-step agent workflow, errors accumulate exponentially: Accuracy_total = (Accuracy_step)^n. A 95%-per-step agent on a 10-step task has only ~60% overall success. A 50-step task drops to nearly zero.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What agent design principles follow from the Compound Mistake Problem?

A

(1) Avoid monolithic “do everything” agents; (2) Design systems as chains of specialized, smaller agents; (3) Use error-correction loops where agents reflect on outputs before proceeding; (4) Keep chains as short as possible.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is the Planner-Evaluator-Executor pattern?

A

A decoupled agent architecture: (1) Planner LLM generates proposed actions; (2) Evaluator (deterministic policy or judge model) reviews the plan for safety, compliance, and correctness; (3) Executor carries out only approved actions. Supports human-in-the-loop and Policy-as-Code.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Why is the Planner-Evaluator-Executor pattern important for federal AI?

A

It enables Policy-as-Code enforcement — deterministic rules can block unsafe actions regardless of what the probabilistic model generates. For High-Impact AI (OMB M-25-21), the Evaluator step can include human review of the plan before execution.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is a “mixture of agents” approach?

A

Designing agentic systems as chains of specialized, smaller agents rather than one large monolithic agent. Each agent handles a focused sub-task, reducing the number of steps per agent chain and mitigating the Compound Mistake Problem.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly