# Send Sarvam AI to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "sarvam",
    "name": "Sarvam AI",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/iammhk/sarvam",
    "canonicalUrl": "https://clawhub.ai/iammhk/sarvam",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/sarvam",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=sarvam",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "_meta.json",
      "scripts/sarvam_cli.py",
      ".clawhub/origin.json"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "sarvam",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-01T05:42:08.945Z",
      "expiresAt": "2026-05-08T05:42:08.945Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=sarvam",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=sarvam",
        "contentDisposition": "attachment; filename=\"sarvam-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "sarvam"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/sarvam"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/sarvam",
    "downloadUrl": "https://openagent3.xyz/downloads/sarvam",
    "agentUrl": "https://openagent3.xyz/skills/sarvam/agent",
    "manifestUrl": "https://openagent3.xyz/skills/sarvam/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/sarvam/agent.md"
  }
}
```
## Documentation

### Sarvam AI Skill

This skill provides access to Sarvam AI's suite of Indian language models.

### Text to Speech (TTS)

Generate speech from text in various Indian languages.

python skills/sarvam/scripts/sarvam_cli.py tts "Namaste, kaise hain aap?" --lang hi-IN --speaker meera --output hello.wav

Parameters:

text: The text to speak.
--lang: Language code (e.g., hi-IN for Hindi, bn-IN for Bengali, etc.).
--speaker: Voice ID (e.g., meera, pavithra, arvind).
--output: Output file path (default: output.wav).

### Speech to Text (STT)

Transcribe audio files.

python skills/sarvam/scripts/sarvam_cli.py stt path/to/audio.wav --model saaras:v3

Parameters:

file: Path to the audio file (wav, mp3).
--model: Model to use (default: saaras:v3).
--mode: STT Mode: transcribe (default), translate (to English), verbatim, translit, codemix.

### Translation

Translate text between Indian languages and English.

python skills/sarvam/scripts/sarvam_cli.py translate "Hello, how are you?" --source en-IN --target hi-IN

Parameters:

text: Text to translate.
--source: Source language code.
--target: Target language code.

### Chat

Interact with Sarvam's LLM (sarvam-2g).

python skills/sarvam/scripts/sarvam_cli.py chat "What is the capital of India?"

Parameters:

message: User message.
--model: Model to use (default: sarvam-2g).
--system: Optional system prompt.

### Setup

Environment Variable:
Ensure your API key is set in .env (already done for this workspace):
SARVAM_API_KEY="sk_..."



Virtual Environment:
The skill uses a local virtual environment at skills/sarvam/.venv.
Dependencies (requests) are pre-installed here.

### Usage

Use the virtual environment's Python to run commands:

### Text to Speech (TTS)

skills/sarvam/.venv/bin/python skills/sarvam/scripts/sarvam_cli.py tts "Namaste, kaise hain aap?" --lang hi-IN --speaker meera --output hello.wav

### Speech to Text (STT)

skills/sarvam/.venv/bin/python skills/sarvam/scripts/sarvam_cli.py stt path/to/audio.wav --model saaras:v3

### Translation

skills/sarvam/.venv/bin/python skills/sarvam/scripts/sarvam_cli.py translate "Hello, how are you?" --source en-IN --target hi-IN

### Chat

skills/sarvam/.venv/bin/python skills/sarvam/scripts/sarvam_cli.py chat "What is the capital of India?"
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: iammhk
- Version: 1.0.1
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-01T05:42:08.945Z
- Expires at: 2026-05-08T05:42:08.945Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/sarvam)
- [Send to Agent page](https://openagent3.xyz/skills/sarvam/agent)
- [JSON manifest](https://openagent3.xyz/skills/sarvam/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/sarvam/agent.md)
- [Download page](https://openagent3.xyz/downloads/sarvam)