transcribe-small
Transcribes uploaded audio - meetings, voice notes, calls, dictation - into text with timestamps and language detection; answers the OpenAI-compatible /v1/audio/transcriptions endpoint (never chat).
Requests per day this target answered on this deployment, with the cost line.
No requests yet. Route something from the playground to see usage here.
Domains the signal layer detected on requests that ended here.
No routed requests yet. Declared domains: General, Customer Support.
Hard stops enforced before scoring.
Pin this target with model="transcribe-small", or send a candidate list and let the router choose and fall back.
curl https://api.opensmartroute.ai/v1/chat/completions \
-H "Authorization: Bearer $OSR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"model": "transcribe-small", "messages": [{"role": "user", "content": "Transcribe the attached audio file meeting.mp3."}]}'from openai import OpenAI
client = OpenAI(base_url="https://api.opensmartroute.ai/v1", api_key="osr_live_...")
resp = client.chat.completions.create(
model="transcribe-small", # pin this target, or "auto" to let the router choose
messages=[{"role": "user", "content": "Transcribe the attached audio file meeting.mp3."}],
extra_body={"models": ["transcribe-small", "auto"]}, # fall back to the router's pick if it fails
)
print(resp.model, resp.choices[0].message.content)Examples the similarity strategy matches against.