Creating Pools
Via CLI
naos pool create workers --size 5 --agent researcher
Via Configuration
pools:
workers:
agent: researcher
size: 5
strategy: round-robin
Pool Strategies
| Strategy | Description |
|---|---|
| round-robin | Distribute tasks evenly across agents |
| least-busy | Send to the agent with fewest pending tasks |
| random | Random assignment |