Metadata-Version: 2.4
Name: audra
Version: 0.2.4
Summary: Audra v2 TTS client — OpenAI-compatible speech API
Author-email: Audra <hello@audratalks.com>
License-Expression: MIT
Project-URL: Homepage, https://audratalks.com
Project-URL: Documentation, https://audratalks.com/docs
Project-URL: Migration, https://audratalks.com/migrate
Project-URL: Repository, https://github.com/nickaisbitt/audra-voice-api
Keywords: tts,audra,text-to-speech,openai-compatible
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: httpx>=0.27

# audra

Thin httpx wrapper for the [Audra](https://audratalks.com) v2 TTS API.

```python
from audra import Audra

client = Audra("sk-audra-...")

audio = client.speech(
    "Hello[pause:1.2s]world",
    voice="kore",
    delivery_profile="podcast_v3",
    normalize=True,
)

result = client.speech_captioned("Hello captioned world", voice="kore")
open("out.mp3", "wb").write(result["audio"])
print(result["captions"]["words"])

phonemes = client.phonemize("Roth IRA", voice="kore")
```

Migration guide: https://audratalks.com/migrate
