File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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" ;
99export 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
1414export const NVIDIA_DEFAULT_ASR_MODEL = "nvidia/parakeet-tdt-0.6b-v2" ;
@@ -17,7 +17,7 @@ export const NVIDIA_DEFAULT_TTS_MODEL = "magpie-tts-multilingual";
1717export const NVIDIA_DEFAULT_VOICE = "Magpie-Multilingual.EN-US.Aria" ;
1818export const NVIDIA_DEFAULT_LANGUAGE = "en-US" ;
1919
20- export type NvidiaTtsConfig = {
20+ type NvidiaTtsConfig = {
2121 apiKey ?: string ;
2222 baseUrl : string ;
2323 model : string ;
Original file line number Diff line number Diff 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 ;
You can’t perform that action at this time.
0 commit comments