Quick Start
1
Install
2
Python Code
3
CLI
What AgentOS Creates
Configuration
- Defaults
- Inline Options
- Config Class
All Configuration Options
CLI Commands
YAML Config File
agents.yaml
Architecture
Deployment Patterns
- Single Agent
- Multiple Agents
- With Teams
- With Flows
Chat API Request
Best Practices
Use for all production deployments
Use for all production deployments
Even for single agents, AgentOS provides proper API structure, CORS, health checks, and auto-generated docs.
Enable reload only in development
Enable reload only in development
Use
--reload during development. Disable in production for better performance.Configure CORS for security
Configure CORS for security
Replace
["*"] with specific origins in production: cors_origins=["https://myapp.com"]Use workers for scaling
Use workers for scaling
Increase
workers for production: workers=4 (typically 2-4x CPU cores)Related
Core Components
Compare Agent, AgentTeam, AgentFlow, AgentOS
Agents
Agent configuration reference

