What Are Workers?
Workers are long-lived processes that execute your agent code. Each agent has a pool of workers.How Workers Stay Warm
Unlike serverless (where containers die after each request), Orpheus workers:- Start when you deploy
- Handle requests one at a time
- Stay alive between requests
- Only die when idle too long
Worker Pool
Each agent has a pool with:min_workers: Always keep this many readymax_workers: Never exceed this many
Worker Lifecycle
Check Worker Status
current: How many workers runninghealthy: How many ready for requestsqueue.depth: Requests waiting
When Workers Scale
- Scale up: Queue building up (more requests than workers can handle)
- Scale down: Workers idle (no requests for a while)

