aura 1
unofficialtts
aura 1 specifications
| Context window | — |
|---|---|
| Max output tokens | — |
| Release date | — |
| Input | Text |
| Output | Audio |
aura 1 pricing in rubles
You pay for what you use, per token and per unit. The final request cost is returned in the API response.
| Type | Price |
|---|---|
| Speech synthesis | 0,002 ₽ per character |
Prices are in rubles and may change with exchange rates.
What aura 1 can do
- Streaming responses
aura 1 API: connection and code examples
The service exposes a single OpenAI-compatible API. Set our base_url and the key from your dashboard.
OpenAI Python SDK
from openai import OpenAI
client = OpenAI(api_key="YOUR_API_KEY", base_url="https://api.neuralbridge.ru/v1")
audio = client.audio.speech.create(model="deepgram/aura-1-08130", voice="default", input="Привет!")
audio.write_to_file("speech.mp3")cURL
curl https://api.neuralbridge.ru/v1/audio/speech \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"model": "deepgram/aura-1-08130", "input": "Привет!"}' \
--output speech.mp3API endpoints
POST /v1/audio/speechprimary | Audio — speech Síntese de fala: texto na entrada, arquivo de áudio na saída. |
Supported request parameters
| Parameter | Default | Allowed values | Description |
|---|---|---|---|
voice | asteria | angus, arcas, asteria, athena, helios, hera, luna, orion, orpheus, perseus, stella, zeus | Voz de síntese. As vozes disponíveis são listadas nas características do modelo. |
language | — | — | Idioma do material: dica para o modelo sobre em que idioma o texto é falado ou escrito. Normalmente acelera e refina o processamento. |
speed | 1 | — | Velocidade da fala em relação ao normal: menos que um — mais lenta, mais que um — mais rápida. |
response_format | mp3 | — | Formato da resposta: texto simples ou JSON estrito conforme o esquema definido. |