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

# Introduction

> Deploy your AI agents to production at scale

[Pipecat Cloud](https://pipecat.daily.co) is a managed platform for deploying and scaling Pipecat agents in production. It handles infrastructure, scaling, and operations so you can focus on building your agent.

<Frame>
  <img src="https://mintcdn.com/daily/CImcmUmDs-Bldzqh/images/pipecatcloud-overview.png?fit=max&auto=format&n=CImcmUmDs-Bldzqh&q=85&s=8df286922e937cc3ed7712fdfc5b70dc" width="1545" height="573" data-path="images/pipecatcloud-overview.png" />
</Frame>

## Key Capabilities

* **One-command deploy**: Package and deploy agents with `pipecat cloud deploy`
* **Auto-scaling**: Scale from zero to thousands of concurrent sessions
* **Built-in WebRTC**: Daily WebRTC transport included, no separate infrastructure needed
* **Secrets management**: Securely store and inject API keys and credentials
* **Session management**: Start, stop, and monitor agent sessions via REST API or SDK
* **Logging & monitoring**: Built-in logging with Datadog integration support
* **Global regions**: Deploy close to your users for lowest latency

## How It Works

<Steps>
  <Step title="Build your agent">
    Write a Pipecat pipeline as you normally would, using any supported services.
  </Step>

  <Step title="Deploy">
    Use the CLI to build and deploy your agent image to Pipecat Cloud.

    ```bash theme={null}
    pipecat cloud deploy
    ```
  </Step>

  <Step title="Start sessions">
    Use the REST API or Python SDK to start agent sessions on demand.

    ```bash theme={null}
    curl --request POST \
    --url https://api.pipecat.daily.co/v1/public/{agentName}/start \
    --header 'Authorization: Bearer <token>' \
    --header 'Content-Type: application/json' \
    ```
  </Step>
</Steps>

## Next Steps

<CardGroup cols={2}>
  <Card title="Create your account" icon="user" href="https://pipecat.daily.co">
    Get your account set up and ready to deploy your first agent.
  </Card>

  <Card title="Deploy your first agent" icon="cloud" href="/pipecat/get-started/quickstart">
    Deploy the quickstart agent to Pipecat Cloud.
  </Card>
</CardGroup>
