1. A research agent must gather facts from eight independent web sources and produce one synthesis. None of the sources depend on each other. Which dispatch pattern stays fast without flooding the coordinator context?
B. Dispatch eight sub-agents in parallel, each returning a short structured summary with citations, then synthesize from the summaries. (correct)
Independent work runs concurrently, and compact per-source summaries keep the coordinator context small enough to reason over all eight.
Why: Independent sources are a fan-out: run them in parallel and return compact, cited summaries so the coordinator can synthesize without holding every full page.