Kamiwaza SDK | Kamiwaza Docs
This is documentation for Kamiwaza 0.9.3, which is no longer actively maintained. For the current GA release, see 1.0.1.
Version: 0.9.3
The Kamiwaza SDK provides a Python interface to interact with the Kamiwaza AI Platform.
Installation
pip install kamiwaza-client
Quick Start
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}")