firehose> #llmops

Bounded Fan-Out

How many agents you spin up is a design variable with its own costs — a fixed, small roster and an unbounded, dynamically-sized swarm are two different operating points, and more agents is not monotonically better. A bounded fan-out fixes the roster up front: N named workers, known before the run, the same every time (STORM's five expert lenses + a fixed verification pass ≈ 12 agents). An unbounded fan-out lets an orchestrator decide the count at runtime and can balloon into hundreds (the source's Claude Deep Research run spawned "103 agents"). The bounded operating point buys predictable cost, predictable latency, a consistent output shape, and low provider-rate-limit exposure; the unbounded point buys breadth on topics whose sub-questions you can't enumerate in advance, at the price of cost/latency variance and rate-limit risk.

This is a distinct axis from Model-Tier Routing (which tier each agent runs, not how many) and from Agent Communication Topology (whether the agents can talk to each other). It sharpens the Agent Task Graph observation that "more agents, more autonomy, more compute do not always mean better outcomes" into a sizing decision: pick the roster cardinality deliberately, and default small when the task's angles are known.

Claims


Linked from