
Nemotron Speech
OfficialFreeStreamline NVIDIA Riva NIM tasks with ease.
Free · Opens the source repo
What Nemotron Speech does
The Nemotron Speech skill provides a unified interface for managing NVIDIA's Riva NIM workflows, which include Automatic Speech Recognition (ASR), Text-to-Speech (TTS), and Neural Machine Translation (NMT). This skill is designed for developers and data scientists who need to deploy, run, and test various speech and language processing tasks using NVIDIA's powerful tools. By acting as a single entry point, it simplifies the setup and execution of complex workflows, ensuring that users can efficiently navigate through the necessary steps.
Users can leverage this skill for both cloud-hosted and self-hosted deployments. For cloud-based inference, it directs users to install the NVIDIA Riva client and obtain the necessary API key, while for self-hosted scenarios, it guides them through the installation of required software components, including Docker and NVIDIA drivers. The skill also emphasizes the importance of security, reminding users to handle API keys with care to prevent unauthorized access.
The routing functionality of the skill is particularly noteworthy. It intelligently matches user tasks with the appropriate reference files, providing detailed guidance on how to complete each workflow. This progressive disclosure approach helps maintain context and reduces the cognitive load on users, allowing them to focus on their specific needs without being overwhelmed by unnecessary information.
Whether you are deploying a custom-trained model, testing an existing deployment, or selecting the best model for your needs, the Nemotron Speech skill streamlines the process and enhances productivity. It is an essential tool for anyone looking to harness the capabilities of NVIDIA's Riva technology for speech and language applications.
When to use it
Use this skill when you need to perform deployment, testing, or model selection for ASR, TTS, or NMT tasks using NVIDIA Riva.
When not to use it
This skill may not be suitable for users who are not working with NVIDIA's Riva technology or who require features outside the scope of ASR, TTS, and NMT workflows.
What you can build with it
Deploy a Parakeet ASR NIM
Follow the skill's guidance to deploy a Parakeet ASR NIM using the appropriate reference file.
Synthesize speech with Magpie
Utilize the skill to access instructions for synthesizing speech through the Magpie TTS model.
Translate English to German
Use the skill to navigate the steps required for translating text from English to German using Riva's NMT capabilities.
How to install Nemotron Speech
View source1. Install with the skills CLI
npx skills add nvidia/skills/nemotron-speech --agent claude-code2. Or install it manually
Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.
Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs
Inside SKILL.md
Written by nvidiaNemotron 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 riva-build, ASR pipeline tuning (VAD, diarization, language models), and the prerequisite Docker / NGC / driver setup.
When 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 references/. 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.
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:
pip install -U nvidia-riva-clientand a validNVIDIA_API_KEYfrom https://build.nvidia.com. - Treat
NVIDIA_API_KEYandNGC_API_KEYas secrets: never print, paste, commit, or log real key values. Prefer--password-stdinfor Docker login and store persistent keys in a credential manager or achmod 600env file rather than world-readable shell startup files. - For self-hosted Docker model caching: host directories mounted at
/opt/nim/.cachemust be writable by the container user (the NIM container runs asnvs:1000internally), not just the host user. Runsudo chown 1000:1000 $LOCAL_NIM_CACHEafter creating the directory so the container can write to it. Avoid world-writable modes — they let any local user replace cached model artifacts. Also avoid-u "$(id -u):$(id -g)"on the docker run —/opt/nim/workspaceinside the container isn't writable to arbitrary UIDs. If you seeI/O error Permission denied (os error 13)during model download, the host directory ownership is the issue.
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 (
.nemo→ RMIR → NIM) toreferences/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) | https://build.nvidia.com/<org>/<model>/api |
| NGC catalog | https://catalog.ngc.nvidia.com/orgs/nim/teams/nvidia/models |
Examples
"Deploy a Parakeet ASR NIM" → load references/asr.md, follow Option B (self-hosted), Steps 1–4.
"Synthesize speech with Magpie" → load references/tts.md, follow Option A (cloud) or Option B (self-hosted).
"Translate English to German" → load references/nmt.md, follow the 4-step flow.
"Convert my fine-tuned .nemo to a NIM" → load references/asr-custom.md for the 4-phase pipeline and references/pipelines.md for build-time config.
"Can my GPU run this?" → load references/deployment-readiness-checks.md and run the 6-step system check.
"Which Riva model should I use?" → load references/model-selection.md, apply the decision framework, then fetch the support matrix for the specific current model name.
Naming & Terminology
- Skill brand: Nemotron Speech (public-facing name).
- Internal naming preserved: commands (
riva-build,riva-deploy,riva_streaming_asr_client), Python client (riva.client), gRPC namespace (nvidia.riva.asr.*), container registry (nvcr.io/nim/nvidia/*), and all NVIDIA documentation URLs still use "Riva". Do not rename these in code, commands, or docs.
Troubleshooting
For task-specific runtime or modality issues, use the relevant reference file (references/<task>.md). Cross-cutting readiness checks:
- Container does not become ready →
references/deployment-readiness-checks.md(system check + health check table) - Health check fails →
references/deployment-readiness-checks.md docker pullfromnvcr.ioreturns 403 →references/setup.md(Step 5 — Docker login)- Wrong base image / model architecture mismatch →
references/asr-custom.md(Phase 2 base image) - VRAM / GPU compatibility →
references/deployment-readiness-checks.md, then verify on the support matrix
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
NVIDIA_API_KEYand internet access - Public skill branding is "Nemotron Speech"; commands, container images, Python imports (
riva.client), gRPC services (nvidia.riva.*), and NVIDIA documentation URLs still use "Riva" — follow official docs and catalogs for naming, do not rename these in commands or code
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,references/tts.md, orreferences/nmt.md
Frequently asked questions about Nemotron Speech
Similar skills
WinMD API Search
Easily find and explore Windows desktop APIs.
WebMCPify
Transform any web app into an agent-ready platform.
Phoenix Tracing
Instrument LLM applications with OpenInference tracing.
Foundry Hosted Agent CopilotKit
Guidance for developing agentic web apps on Azure.
Power Automate Foundation
Connect AI agents to Power Automate seamlessly.
Power Automate Flow Builder
Efficiently build and deploy Power Automate flows programmatically.
