> ## 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.

# Gateway

> WebSocket control plane for multi-agent coordination and real-time communication

<Note>
  This page has moved. The canonical gateway guide now lives at [**Gateway & Control Plane**](/docs/gateway) under the **Gateway & Bots** tab.
</Note>

Gateway provides a WebSocket-based control plane for coordinating agents, managing sessions, and streaming real-time replies.

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

agent = Agent(name="assistant", instructions="Be helpful")
config = GatewayConfig(host="127.0.0.1", port=8765)
```

## Related

<CardGroup cols={2}>
  <Card title="Gateway & Control Plane" icon="network-wired" href="/docs/gateway">
    Full gateway architecture, quick start, and best practices
  </Card>

  <Card title="Gateway Overview" icon="tower-broadcast" href="/docs/features/gateway-overview">
    High-level tour of gateway capabilities
  </Card>
</CardGroup>
