blab-fast
What is this model?
Ultra-fast text-to-speech built on Supertonic v3 (formerly blab-stable — that id keeps working as a permanent alias). The default for realtime agents and streaming: milliseconds-scale synthesis across 30 languages.
Capability & type
| Capability | Text to Speech (TTS) |
| Model type | Text-to-speech (TTS) (type=7) |
| Base model | Supertonic v3 |
| Provider | arpanet (local / self-hosted) |
| Streaming | ✓ supported |
Endpoint
POST /v1/audio/speechBase URL: https://app.qevron.ai/v1
Authentication
Every request needs the Authorization: Bearer <KEY> header.
Authorization: Bearer <KEY>Request schema & parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
model | string | ✓ | blab-fast |
input | string | ✓ | Text to synthesize |
voice | string | — | Voice id |
response_format | string | — | wav |
Response schema
audio/wav (binary) — the response body is the audio stream.
Streaming
Add "stream": true; the server replies incrementally over Server-Sent Events.
Code examples
curl
bash
curl https://app.qevron.ai/v1/audio/speech \
-H "Authorization: Bearer $QEVRON_KEY" -H "Content-Type: application/json" \
-d '{"model": "blab-fast", "input": "Merhaba dünya", "voice": "default", "response_format": "wav"}' \
--output speech.wavPython
python
from openai import OpenAI
client = OpenAI(api_key="$QEVRON_KEY", base_url="https://app.qevron.ai/v1")
r = client.audio.speech.create(model="blab-fast", input="Merhaba dünya", voice="default")
r.stream_to_file("speech.wav")Pricing
| Input | Output | Unit |
|---|---|---|
| $0.0006 | — | 1K tokens |
Rate limits
RPM/TPM are governed by your group quota. Check your current quota with: GET /v1/dashboard/billing/quota.
Notes & quirks
quality(standard/high/max) trades speed for fidelity via the engine's diffusion step count.- Serves the curated voice catalog and studio (offline) clones; your text is spoken verbatim.
Related
- All local models: Local Models