Scaling Pools

Manual Scaling

naos pool scale workers --size 10
naos pool scale workers --size 3

Auto-Scaling

pools:
  workers:
    agent: researcher
    size: 3
    minSize: 1
    maxSize: 20
    autoScale:
      enabled: true
      scaleUpThreshold: 10
      scaleDownThreshold: 2
      cooldown: 60

Cost Considerations

More agents = more LLM calls = higher costs. Use cost budgets with pools:

cost:
  budgets:
    pool-workers:
      daily: 5000