This is documentation for Kamiwaza **0.8.0**, which is no longer actively maintained. For the current GA release, see [**1.0.1**](https://docs.kamiwaza.ai/).

Version: 0.8.0

## Installation

```bash
pip install kamiwaza-client
```

## Quick Start

```python
from kamiwaza_client import KamiwazaClient

# Initialize the client for local development

client = KamiwazaClient("http://localhost:7777/api/")

# List deployments

deployments = client.serving.list_deployments()

for deployment in deployments:

print(f"Deployment: {deployment}")
```

- [Installation](https://docs.kamiwaza.ai/sdk/0.8.0#installation)
- [Quick Start](https://docs.kamiwaza.ai/sdk/0.8.0#quick-start)
