One task, four strategies. Watch the LLM calls and the critical-path depth change while the answer stays the same.
LLM calls is the cost lever; depth is the sequential rounds. Tool calls never change.
| Strategy | LLM calls | Tool calls | Crit-path depth |
|---|
Writing the plan down once cuts LLM calls from 5 (one per hop) to 2 (plan plus synthesize). ReWOO removes every mid-run model call via #E binding. The DAG additionally cuts critical-path depth from 4 to 2: the three independent lookups collapse into one round; only E2 -> E3 chains.