nemotron-speech
Original:🇺🇸 English
Translated
1 scriptsChecked / no sensitive code detected
Routes NVIDIA Nemotron Speech (Riva) NIM tasks — deploys, runs, and tests ASR, TTS, and NMT NIMs on build.nvidia.com or self-hosted.
12installs
Sourcenvidia/skills
Added on
NPX Install
npx skill4agent add nvidia/skills nemotron-speechTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →Nemotron Speech Skills
Note: "Nemotron Speech" is the public-facing name for what NVIDIA documents today as Riva / Riva NIM. All commands, container images, gRPC APIs, Python imports, and documentation URLs still use "Riva" — the rename is brand-only. Do not rename commands, images, or doc URLs.Agent: When walking the user through a multi-step workflow, announce each step before presenting it: Step N/M — Step Title (e.g., "Step 1/4 — Deploy the Container").
Purpose
Single entry point for all NVIDIA Nemotron Speech (Riva) NIM workflows: ASR (speech-to-text), TTS (text-to-speech), and NMT (translation). Covers cloud-hosted inference via build.nvidia.com, self-hosted Docker deployment, client-protocol choice for ASR (gRPC, HTTP, WebSocket), custom NeMo model deployment via , ASR pipeline tuning (VAD, diarization, language models), and the prerequisite Docker / NGC / driver setup.
riva-buildWhen to Use This Skill
Use this skill for any Nemotron Speech / Riva NIM task — deployment, testing, custom model build, system requirements check, or model selection across ASR / TTS / NMT modalities.
Workflow
Identify the user's task type, then load the corresponding reference file from . The reference files contain the detailed per-workflow content; this SKILL.md is a routing surface. Load only the reference relevant to the task at hand.
references/Prerequisites
- For self-hosted deployment: NVIDIA AI Enterprise (NVAIE) entitlement, then complete the environment setup — NVIDIA drivers, Docker, Container Toolkit, NGC API key, Riva Python client. See .
references/setup.md - For cloud-hosted inference: and a valid
pip install -U nvidia-riva-clientfrom https://build.nvidia.com.NVIDIA_API_KEY - Treat and
NVIDIA_API_KEYas secrets: never print, paste, commit, or log real key values. PreferNGC_API_KEYfor Docker login and store persistent keys in a credential manager or a--password-stdinenv file rather than world-readable shell startup files.chmod 600 - For self-hosted Docker model caching: host directories mounted at must be writable by the container user (the NIM container runs as
/opt/nim/.cacheinternally), not just the host user. Runnvs:1000after creating the directory so the container can write to it. Avoid world-writable modes — they let any local user replace cached model artifacts. Also avoidsudo chown 1000:1000 $LOCAL_NIM_CACHEon the docker run —-u "$(id -u):$(id -g)"inside the container isn't writable to arbitrary UIDs. If you see/opt/nim/workspaceduring model download, the host directory ownership is the issue.I/O error Permission denied (os error 13)
Instructions
- Match the user's task to one reference file and load only that file; the references are detailed, so progressive disclosure keeps context tight.
- Route setup requests for drivers, Docker, Container Toolkit, and NGC to .
references/setup.md - Route GPU compatibility, deployment readiness, and container health checks to .
references/deployment-readiness-checks.md - Route model choice across ASR, TTS, and NMT to .
references/model-selection.md - Route ASR deployment or inference for Parakeet, Canary, Whisper, and Nemotron ASR Streaming to .
references/asr.md - Route custom-trained NeMo ASR deployment (→ RMIR → NIM) to
.nemo.references/asr-custom.md - Route ASR pipeline configuration for VAD, diarization, language models, and chunk size to .
references/pipelines.md - Route TTS deployment or inference for Magpie to .
references/tts.md - Route NMT deployment or inference for Riva Translate, language pairs, and DNT tags to .
references/nmt.md
Source of truth
For per-release detail — current model catalog, container IDs, function IDs, voice lists, VRAM minimums, per-model feature support — fetch or open the canonical NVIDIA doc rather than relying on text in this SKILL.md or the references. Each reference file includes its own routing table to the relevant doc pages.
Top-level landing pages:
| Topic | URL |
|---|---|
| ASR support matrix | https://docs.nvidia.com/nim/speech/latest/reference/support-matrix/asr.html |
| TTS support matrix | https://docs.nvidia.com/nim/speech/latest/reference/support-matrix/tts.html |
| NMT support matrix | https://docs.nvidia.com/nim/speech/latest/reference/support-matrix/nmt.html |
| Prerequisites (driver / GPU / OS) | https://docs.nvidia.com/nim/speech/latest/get-started/prerequisites.html |
| ASR pipeline configuration | https://docs.nvidia.com/nim/speech/latest/asr/customization/pipeline-configuration.html |
| ASR runtime customization | https://docs.nvidia.com/nim/speech/latest/asr/customization/customization.html |
| Cloud function IDs (per model) | |
| NGC catalog | https://catalog.ngc.nvidia.com/orgs/nim/teams/nvidia/models |
Examples
"Deploy a Parakeet ASR NIM" → load , follow Option B (self-hosted), Steps 1–4.
references/asr.md"Synthesize speech with Magpie" → load , follow Option A (cloud) or Option B (self-hosted).
references/tts.md"Translate English to German" → load , follow the 4-step flow.
references/nmt.md"Convert my fine-tuned to a NIM" → load for the 4-phase pipeline and for build-time config.
.nemoreferences/asr-custom.mdreferences/pipelines.md"Can my GPU run this?" → load and run the 6-step system check.
references/deployment-readiness-checks.md"Which Riva model should I use?" → load , apply the decision framework, then fetch the support matrix for the specific current model name.
references/model-selection.mdNaming & Terminology
- Skill brand: Nemotron Speech (public-facing name).
- Internal naming preserved: commands (,
riva-build,riva-deploy), Python client (riva_streaming_asr_client), gRPC namespace (riva.client), container registry (nvidia.riva.asr.*), and all NVIDIA documentation URLs still use "Riva". Do not rename these in code, commands, or docs.nvcr.io/nim/nvidia/*
Troubleshooting
For task-specific runtime or modality issues, use the relevant reference file (). Cross-cutting readiness checks:
references/<task>.md- Container does not become ready → (system check + health check table)
references/deployment-readiness-checks.md - Health check fails →
references/deployment-readiness-checks.md - from
docker pullreturns 403 →nvcr.io(Step 5 — Docker login)references/setup.md - Wrong base image / model architecture mismatch → (Phase 2 base image)
references/asr-custom.md - VRAM / GPU compatibility → , then verify on the support matrix
references/deployment-readiness-checks.md
Limitations
- x86_64 architecture only — WSL2 on Windows requires Podman and supports a subset of NIMs (see )
references/setup.md - Self-hosted deployment requires an NVIDIA AI Enterprise license
- Cloud-hosted inference requires an active and internet access
NVIDIA_API_KEY - Public skill branding is "Nemotron Speech"; commands, container images, Python imports (), gRPC services (
riva.client), and NVIDIA documentation URLs still use "Riva" — follow official docs and catalogs for naming, do not rename these in commands or codenvidia.riva.*
Next Steps
- Verify hardware compatibility:
references/deployment-readiness-checks.md - Set up the environment:
references/setup.md - Pick a model:
references/model-selection.md - Deploy: ,
references/asr.md, orreferences/tts.mdreferences/nmt.md