Getting Started
MODELS
All available models on CallMissed β Sarvam AI for STT/TTS/LLM, and 300+ text models via OpenRouter. All accessible through one OpenAI-compatible API.
Overview
CallMissed provides access to two model providers through a single OpenAI-compatible API:
- Sarvam AI β purpose-built for Indian languages. STT, TTS, and LLM optimized for Indic languages (Hindi, Tamil, Telugu, Bengali, and 18 more).
- OpenRouter β 300+ text models from every major provider (OpenAI, Anthropic, Google, Meta, Mistral, DeepSeek, and more) through one endpoint.
All models use the same authentication and request format. Just change the model field.
Sarvam AI Models
Speech to Text
| Model | Description | Languages |
|---|---|---|
saaras:v3 | Latest STT β best accuracy | 22 Indic + English |
Text to Speech
| Model | Description | Voices |
|---|---|---|
bulbul:v3 | Natural TTS | meera, kalpana, arvind, amol |
Chat Completion (LLM)
| Model | Context | Best For |
|---|---|---|
sarvam-30b | 32K tokens | General purpose, Indic languages |
sarvam-105b | 32K tokens | Flagship β highest quality |
OpenRouter Models
Access 300+ models via the same /v1/chat/completions endpoint. Use the OpenRouter model ID as the model field.
Popular Models
| Model ID | Provider | Input | Output | Context |
|---|---|---|---|---|
openai/gpt-5.4 | OpenAI | $2.50/1M | $15.00/1M | 272K |
openai/gpt-5.4-mini | OpenAI | $0.75/1M | $4.50/1M | 400K |
anthropic/claude-sonnet-4.6 | Anthropic | $3.00/1M | $15.00/1M | 200K |
google/gemini-3.1-pro | $2.00/1M | $12.00/1M | 200K | |
x-ai/grok-4 | xAI | $3.00/1M | $15.00/1M | 256K |
Model Selection
Pass the model ID in your request:
python
# Sarvam LLM
response = client.chat.completions.create(
model="sarvam-30b",
messages=[{"role": "user", "content": "Hello in Hindi"}]
)
# OpenRouter model
response = client.chat.completions.create(
model="openai/gpt-5.4-mini",
messages=[{"role": "user", "content": "Hello"}]
)The API automatically routes to the correct provider based on the model ID prefix:
- No prefix or
sarvam/β Sarvam AI openai/,anthropic/,google/, etc. β OpenRouter
Was this page helpful?