Skip to main content

Official Python SDK for Audixa AI Text-to-Speech API

Project description

Audixa Python SDK

PyPI version Python 3.10+ License: MIT

Official Python SDK for the Audixa AI Text-to-Speech API. Production-ready with both synchronous and asynchronous support.

Features

  • Simple API - One-line TTS generation
  • Sync & Async - Full support for both paradigms
  • Custom Endpoints - Dedicated enterprise routing via slug
  • Type Hints - Complete type annotations (Python 3.10+)
  • Retry Logic - Automatic retries with exponential backoff
  • Rate Limiting - Built-in concurrency control for async
  • File Downloads - Download audio directly to disk
  • Error Handling - Comprehensive exception hierarchy

Installation

pip install audixa

For async file downloads, also install:

pip install aiofiles

Quick Start

Synchronous Usage

import audixa

# Set your API key
audixa.set_api_key("your-api-key")
# Or use environment variable: AUDIXA_API_KEY

# Generate TTS and get audio URL
audio_url = audixa.tts_and_wait(
    "Hello, world! Welcome to Audixa AI text-to-speech.",
    voice_id="emma",
)
print(f"Audio URL: {audio_url}")

# Or save directly to file
audixa.tts_to_file(
    "Hello, world! Welcome to Audixa.",
    "output.wav",
    voice_id="emma",
)

Asynchronous Usage

import asyncio
import audixa

audixa.set_api_key("your-api-key")

async def main():
    # Generate TTS asynchronously
    audio_url = await audixa.atts_and_wait(
        "Hello, world! This is async generation.",
        voice_id="emma",
    )
    print(f"Audio URL: {audio_url}")
    
    # Save to file
    await audixa.atts_to_file(
        "Hello from async world!",
        "output.wav",
        voice_id="emma",
    )

asyncio.run(main())

Using Models and Parameters

import audixa

audixa.set_api_key("your-api-key")

# Base model with speed adjustment
audio_url = audixa.tts_and_wait(
    "Welcome to Audixa AI, your text-to-speech solution.",
    voice_id="emma",
    model="base",
    speed=1.1,  # Slightly faster (0.5 to 2.0)
)

# Advanced model with fine-tuning
audio_url = audixa.tts_and_wait(
    "This is exciting news! We have launched.",
    voice_id="emma",
    model="advanced",
    cfg_weight=2.5,
    exaggeration=0.6,
    audio_format="mp3",
)

Custom Endpoints

Enable a custom endpoint by providing a slug (disabled by default):

from audixa import AudixaClient

client = AudixaClient(
    api_key="your-api-key",
    custom_endpoint_slug="client1",
)

gen_id = client.tts("Hello from a custom endpoint!", voice_id="emma")
status = client.status(gen_id)
print(status["status"])

Low-Level Client API

For more control, use the client classes directly:

from audixa import AudixaClient

# Create client with custom settings
client = AudixaClient(
    api_key="your-api-key",
    timeout=60.0,
    max_retries=5,
)

# Use as context manager
with client:
    # Start generation (non-blocking)
    gen_id = client.tts(
        "Hello, world! Welcome to Audixa.",
        voice_id="emma",
    )
    
    # Check status manually
    status = client.status(gen_id)
    print(f"Status: {status['status']}")
    
    # List available voices
    voices = client.list_voices()
    for voice in voices:
        print(f"{voice['voice_id']}: {voice['name']}")

Async Client

from audixa import AsyncAudixaClient
import asyncio

async def main():
    async with AsyncAudixaClient(
        api_key="your-api-key",
        max_concurrency=10,  # Rate limit protection
    ) as client:
        # Concurrent generation
        texts = [
            "First sentence to generate.",
            "Second sentence to generate.",
            "Third sentence to generate.",
        ]
        tasks = [
            client.tts_and_wait(text, voice_id="emma")
            for text in texts
        ]
        urls = await asyncio.gather(*tasks)
        print(urls)

asyncio.run(main())

API Reference

Configuration Functions

Function Description
set_api_key(key) Set the global API key
set_base_url(url) Set the API base URL
set_custom_endpoint_slug(slug) Enable a custom endpoint slug globally

TTS Parameters

Parameter Type Required Description
text str Yes Text to convert (min 30 chars)
voice_id str Yes Voice ID (e.g., "emma")
model str No "base" or "advanced" (default: "base")
speed float No 0.5 to 2.0 (default: 1.0)
audio_format str No "wav" or "mp3" (default: "wav")
custom_endpoint_slug str No Route request to a custom endpoint slug

Advanced Model Parameters

Parameter Type Default Description
cfg_weight float 2.5 CFG weight (1.0-5.0)
exaggeration float 0.5 Exaggeration (0.0-1.0)

Synchronous Functions

Function Description
tts(text, voice_id, ...) Start TTS generation, returns generation ID
status(generation_id, custom_endpoint_slug=None) Check generation status
tts_and_wait(text, voice_id, timeout=300) Generate and wait, returns audio URL
tts_to_file(text, filepath, voice_id) Generate and save to file
list_voices() Get available voices
history() Get generation history

Asynchronous Functions

Function Description
atts(text, voice_id, ...) Async TTS generation
astatus(generation_id, custom_endpoint_slug=None) Async status check
atts_and_wait(text, voice_id, timeout=300) Async generate and wait
atts_to_file(text, filepath, voice_id) Async generate and save
alist_voices() Async get voices
ahistory() Async generation history

Error Handling

The SDK provides a comprehensive exception hierarchy:

import audixa

try:
    audio_url = audixa.tts_and_wait(
        "Hello, this is a test message.",
        voice_id="emma",
    )
except audixa.AuthenticationError:
    print("Invalid API key")
except audixa.RateLimitError as e:
    print(f"Rate limited. Retry after: {e.retry_after}s")
except audixa.TimeoutError:
    print("Generation timed out")
except audixa.GenerationError as e:
    print(f"Generation failed: {e.message}")
except audixa.NetworkError:
    print("Network error occurred")
except audixa.AudixaError as e:
    print(f"General error: {e}")

Exception Reference

Exception Description
AudixaError Base exception for all SDK errors
AuthenticationError Invalid or missing API key
RateLimitError Rate limit exceeded (429)
APIError General API error (4xx/5xx)
NetworkError Connection/network failure
TimeoutError Request or generation timeout
GenerationError TTS generation failed
UnsupportedFormatError Invalid audio format
ValidationError Invalid input parameters

Audio Format

Audixa supports WAV and MP3 output:

audixa.tts_to_file("Hello", "output.wav", voice_id="emma")
audixa.tts_to_file("Hello", "output.mp3", voice_id="emma", audio_format="mp3")

Logging

Enable debug logging to see SDK activity:

import logging

# Enable debug logging
logging.basicConfig(level=logging.DEBUG)

# Or configure the audixa logger specifically
logging.getLogger("audixa").setLevel(logging.DEBUG)

Production Best Practices

1. Use Environment Variables

export AUDIXA_API_KEY="your-api-key"
import audixa
# API key is automatically loaded from environment
audio_url = audixa.tts_and_wait("Hello!", voice_id="emma")

2. Handle Errors Gracefully

import audixa
import time

def generate_audio(text: str, voice_id: str) -> str | None:
    try:
        return audixa.tts_and_wait(text, voice_id=voice_id, timeout=120)
    except audixa.RateLimitError:
        time.sleep(60)
        return generate_audio(text, voice_id)  # Retry
    except audixa.AudixaError as e:
        logging.error(f"TTS failed: {e}")
        return None

3. Use Async for High Throughput

async def batch_generate(texts: list[str], voice_id: str) -> list[str]:
    async with AsyncAudixaClient(max_concurrency=5) as client:
        tasks = [client.tts_and_wait(text, voice_id=voice_id) for text in texts]
        return await asyncio.gather(*tasks, return_exceptions=True)

4. Configure Timeouts

client = AudixaClient(
    api_key="your-key",
    timeout=60.0,      # HTTP request timeout
    max_retries=5,     # Retry attempts
)

audio_url = client.tts_and_wait(
    "Long text...",
    voice_id="emma",
    timeout=300.0,     # Wait timeout for generation
)

Building from Source

# Clone the repository
git clone https://github.com/audixa/audixa-python.git
cd audixa-python

# Install in development mode
pip install -e ".[dev]"

# Run tests
pytest

# Build package
python -m build

Publishing to PyPI

# Build distribution
python -m build

# Upload to PyPI
twine upload dist/*

License

MIT License - see LICENSE file.

Links

audixa-python-sdk

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

audixa-1.0.0.tar.gz (22.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

audixa-1.0.0-py3-none-any.whl (26.8 kB view details)

Uploaded Python 3

File details

Details for the file audixa-1.0.0.tar.gz.

File metadata

  • Download URL: audixa-1.0.0.tar.gz
  • Upload date:
  • Size: 22.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.11

File hashes

Hashes for audixa-1.0.0.tar.gz
Algorithm Hash digest
SHA256 046d6cf040c98d6430f331f5e61204ad7a45fb3f8af3fa0294f4811a5cc922b5
MD5 b9bb1fa8887d571901a4dd5e6d07c2f3
BLAKE2b-256 b84033d6e3cb9b2178e07abaa1452fd04aa7b5bbc8731432a7a013c389c76ba0

See more details on using hashes here.

File details

Details for the file audixa-1.0.0-py3-none-any.whl.

File metadata

  • Download URL: audixa-1.0.0-py3-none-any.whl
  • Upload date:
  • Size: 26.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.11

File hashes

Hashes for audixa-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 6374bf5516a0d555353d9bb63cb23a50280fbccf0ded17253be3d249d67249d4
MD5 2b8718d17eca70fbe7a9c932fd32df45
BLAKE2b-256 d3aaa03c0c5325f48c0499b0b83bcaed1a7d671fc2c1bbec65bd68dc263a83d8

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page