Skip to content

Commit 51f1b60

Browse files
committed
fix(nvidia): satisfy docs and dependency checks
1 parent ab91668 commit 51f1b60

3 files changed

Lines changed: 7 additions & 3 deletions

File tree

docs/docs_map.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4907,6 +4907,7 @@ Do not edit it by hand; run `pnpm docs:map:gen`.
49074907
- H3: Provider-only (Deepgram)
49084908
- H3: Provider-only (Mistral Voxtral)
49094909
- H3: Provider-only (SenseAudio)
4910+
- H3: Provider-only (NVIDIA Parakeet with word boosting)
49104911
- H3: Echo transcript to chat (opt-in)
49114912
- H2: Notes and limits
49124913
- H3: Resident local STT
@@ -8273,6 +8274,9 @@ Do not edit it by hand; run `pnpm docs:map:gen`.
82738274
- Headings:
82748275
- H2: Getting started
82758276
- H2: Config example
8277+
- H2: Nemotron Speech over HTTP
8278+
- H3: Speech to text
8279+
- H3: Text to speech
82768280
- H2: Featured catalog
82778281
- H2: Nemotron 3 Ultra
82788282
- H2: Bundled fallback catalog

extensions/nvidia/nvidia-speech-config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export const NVIDIA_TDT_ASR_BASE_URL =
88
"https://d3fe9151-442b-4204-a70d-5fcc597fd610.invocation.api.nvcf.nvidia.com";
99
export const NVIDIA_CTC_ASR_BASE_URL =
1010
"https://1598d209-5e27-4d3c-8079-4751568b1081.invocation.api.nvcf.nvidia.com";
11-
export const NVIDIA_MAGPIE_TTS_BASE_URL =
11+
const NVIDIA_MAGPIE_TTS_BASE_URL =
1212
"https://877104f7-e885-42b9-8de8-f6e4c6303969.invocation.api.nvcf.nvidia.com";
1313

1414
export const NVIDIA_DEFAULT_ASR_MODEL = "nvidia/parakeet-tdt-0.6b-v2";
@@ -17,7 +17,7 @@ export const NVIDIA_DEFAULT_TTS_MODEL = "magpie-tts-multilingual";
1717
export const NVIDIA_DEFAULT_VOICE = "Magpie-Multilingual.EN-US.Aria";
1818
export const NVIDIA_DEFAULT_LANGUAGE = "en-US";
1919

20-
export type NvidiaTtsConfig = {
20+
type NvidiaTtsConfig = {
2121
apiKey?: string;
2222
baseUrl: string;
2323
model: string;

extensions/nvidia/nvidia-speech-http.runtime.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ export async function transcribeNvidiaAudio(
271271
}
272272
}
273273

274-
export type MagpieSynthesizeParams = {
274+
type MagpieSynthesizeParams = {
275275
text: string;
276276
apiKey: string;
277277
baseUrl: string;

0 commit comments

Comments
 (0)