solab-stt-ckb
What is this model?
A model hosted by Qevron on our own GPU infrastructure.
Capability & type
| Capability | Speech to Text (STT) |
| Model type | Speech-to-text (STT) (type=8) |
| Provider | arpanet (local / self-hosted) |
| Streaming | ✓ supported |
Endpoint
POST /v1/audio/transcriptionsBase 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 | ✓ | solab-stt-ckb |
file | file | ✓ | Audio file (multipart) |
language | string | — | Language code (e.g. tr, en) |
Response schema
json
{ "text": "transcribed text ..." }Streaming
Add "stream": true; the server replies incrementally over Server-Sent Events.
Code examples
curl
bash
curl https://app.qevron.ai/v1/audio/transcriptions \
-H "Authorization: Bearer $QEVRON_KEY" \
-F model="solab-stt-ckb" \
-F file=@audio.wavPython
python
from openai import OpenAI
client = OpenAI(api_key="$QEVRON_KEY", base_url="https://app.qevron.ai/v1")
with open("audio.wav", "rb") as f:
r = client.audio.transcriptions.create(model="solab-stt-ckb", file=f)
print(r.text)Pricing
| Input | Output | Unit |
|---|---|---|
| $0.005 | — | 1K tokens |
Rate limits
RPM/TPM are governed by your group quota. Check your current quota with: GET /v1/dashboard/billing/quota.
Related
- All local models: Local Models