Skip to main content
KugelAudio TTS can be deployed on your own infrastructure. We ship to Kubernetes clusters and provide a Helm chart for installation, configuration, and upgrades.

Get in touch

Self-hosted deployments are arranged through sales. Reach out and we’ll send the Helm chart, a license key, and walk you through the rollout.

Connect your SDK

Point the SDK at your deployment by setting the API URL directly. This overrides both the region parameter and any API key prefix.
from kugelaudio import KugelAudio

client = KugelAudio(
    api_key="your_api_key",
    api_url="http://localhost:8000",
)
Or with separate backend and TTS servers:
client = KugelAudio(
    api_key="your_api_key",
    api_url="http://localhost:8001",   # Backend for REST API
    tts_url="http://localhost:8000",   # TTS server for WebSocket streaming
)
Replace localhost with your deployment hostname in production.