aura 2 en
unofficialtts
aura 2 en specifications
| Context window | — |
|---|---|
| Max output tokens | — |
| Release date | — |
| Input | Text |
| Output | Audio |
aura 2 en 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,0039 ₽ per character |
Prices are in rubles and may change with exchange rates.
What aura 2 en can do
- Streaming responses
aura 2 en 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-2-en-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-2-en-08130", "input": "Привет!"}' \
--output speech.mp3API endpoints
POST /v1/audio/speechprimary | Audio — speech Σύνθεση ομιλίας: κείμενο ως είσοδο, αρχείο ήχου ως έξοδο. |
Supported request parameters
| Parameter | Default | Allowed values | Description |
|---|---|---|---|
voice | thalia | amalthea, andromeda, apollo, arcas, aries, asteria, athena, atlas, aurora, callista, cora, cordelia, delia, draco, electra, harmonia, helena, hera, hermes, hyperion, iris, janus, juno, jupiter, luna, mars, minerva, neptune, odysseus, ophelia, orion, orpheus, pandora, phoebe, pluto, saturn, thalia, theia, vesta, zeus | Φωνή σύνθεσης. Οι διαθέσιμες φωνές αναφέρονται στις προδιαγραφές του μοντέλου. |
language | — | — | Γλώσσα του υλικού: υπόδειξη στο μοντέλο σε ποια γλώσσα μιλάται ή είναι γραπτό το κείμενο. Συνήθως επιταχύνει και διευκρινίζει την επεξεργασία. |
speed | 1 | — | Ταχύτητα ομιλίας σε σχέση με τη φυσιολογική: λιγότερο από 1 — πιο αργά, περισσότερο — πιο γρήγορα. |
response_format | mp3 | — | Μορφή απάντησης: απλό κείμενο ή αυστηρό JSON σύμφωνα με το καθορισμένο σχήμα. |