> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.meetstream.ai/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.meetstream.ai/_mcp/server.

# Sarvam

> Use Sarvam saaras:v3 to transcribe or translate meeting bot recordings, with diarization and Indic-language strength — full config reference with defaults.

Sarvam's `saaras:v3` model is the strongest choice for Indic-language meetings, and it can **translate** while transcribing.

## Enable

```json
{
  "meeting_link": "https://meet.google.com/abc-defg-hij",
  "bot_name": "Notetaker",
  "recording_config": {
    "transcript": {
      "provider": { "sarvam": { "mode": "transcribe", "language_code": "en-IN" } }
    }
  }
}
```

CLI: `meetstream bot create <link> -t sarvam`.

## Configuration reference

| Field              | Type    | Default      | Notes                       |
| ------------------ | ------- | ------------ | --------------------------- |
| `model`            | string  | `saaras:v3`  | Only supported value        |
| `language_code`    | string  | `en-IN`      |                             |
| `mode`             | string  | `transcribe` | `transcribe` or `translate` |
| `with_diarization` | boolean | `true`       | Speaker separation          |

## Fetch the transcript

Resolve `transcript_id` via `GET /bots/{bot_id}/detail`, then `GET /transcript/{transcript_id}/get_transcript`. Compare engines: [Transcription Providers](/guides/transcription-recordings/providers/transcription-providers).