> ## Documentation Index
> Fetch the complete documentation index at: https://praison.ai/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Deployment

> Deploy agents to production

Learn how to deploy your agents to production environments.

```python theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
from praisonaiagents import Agent

agent = Agent(
    name="Production Agent",
    instructions="Handle live user requests reliably.",
)

agent.start("Process the next customer message.")
```

The user picks a deployment guide, ships the agent, then routes real traffic to it.

```mermaid theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
graph LR
    U[Input] --> A[Agent]
    A --> O[Output]

    classDef agent fill:#8B0000,color:#fff
    classDef tool fill:#189AB4,color:#fff

    class A agent
    class U,O tool
```

<CardGroup cols={2}>
  <Card title="24/7 Production Minimal" icon="rocket-launch" href="/docs/guides/deployment/production-minimal">
    **Start here** - Always-on deployment with process supervision
  </Card>

  <Card title="Overview" icon="book" href="/docs/guides/deployment/overview">
    All deployment options
  </Card>

  <Card title="Docker" icon="docker" href="/docs/guides/deployment/docker">
    Deploy with Docker
  </Card>

  <Card title="Advanced Production" icon="gear" href="/docs/tutorials/production-deployment">
    Comprehensive production setup
  </Card>
</CardGroup>
