Changelog files for the new nvidia features.

This commit is contained in:
filipi87
2026-05-12 14:43:12 -03:00
parent 6a27ed35b1
commit 7f98dba925
3 changed files with 3 additions and 0 deletions

View File

@@ -0,0 +1 @@
- Added NVIDIA Magpie TTS services via AWS SageMaker: `NvidiaSageMakerHTTPTTSService` (single HTTP invocation, streams raw PCM back) and `NvidiaSageMakerWebsocketTTSService` (persistent HTTP/2 bidi-stream with full interruption support via `InterruptibleTTSService`).

View File

@@ -0,0 +1 @@
- Added `sanitize_text_for_tts()` utility (`pipecat.utils.text.tts_text_sanitizer`) that strips markdown formatting (fenced code blocks, headers, bold/italic, tables, blockquotes, inline code) and emojis from text before sending it to a TTS service.

1
changelog/4464.added.md Normal file
View File

@@ -0,0 +1 @@
- Added `NvidiaSageMakerWebsocketSTTService` for streaming speech recognition using NVIDIA Nemotron ASR via an AWS SageMaker bidirectional-stream endpoint. Produces `InterimTranscriptionFrame` and `TranscriptionFrame` frames, is VAD-aware, and automatically reconnects on error.