Open main menu
Article
Quizzes
Tools
EN
Article
Quizzes
Tools
All quizzes
/
Sub-Agents & Parallel Execution
/
A coordina...
A coordinator needs to process 10 customer orders, and each order can be processed independently. What is the best architecture?
Dispatch up to 10 sub-agents in parallel, one per order, and aggregate results when all complete
Use a single sub-agent and pass all 10 orders in one prompt to minimise cost
Process orders sequentially using a single sub-agent to avoid race conditions
Have the coordinator process all orders itself since sub-agents add unnecessary overhead for small batches
Submit answers