An orchestrator must analyze 40 independent contract clauses. Sequential specialist calls exceed the latency SLO. How should you implement scaling of multi-agent execution?
Select an answer to reveal the explanation.
Short Explanation
Correct answer: A. Independent work is a parallel highway with a speed limit: fan out clause specialists, batch when APIs allow, respect rate limits, aggregate at the end. Unlimited spawn is a thundering herd; silent clause dropping is fraud-by-latency.
Full Explanation
Implementing multi-agent solutions includes scaling and control of spawning, batching, and concurrent execution, and optimizing task duration with parallelism and rate limits. Option A applies parallel fan-out with bounds, batching, rate-limit awareness, and aggregation.
Option B risks cascading failure.
Option C fails the latency SLO without need.
Option D violates correctness and transparency.
Exam tip: Parallelism answers should mention bounded concurrency and rate limits, not infinite spawn.