Merge pull request #3666 from pipecat-ai/mb/deepgram-stt-smart-format

DeepgramSTTService: disable smart_format by default
This commit is contained in:
Mark Backman
2026-02-06 14:04:37 -05:00
committed by GitHub
2 changed files with 2 additions and 1 deletions

View File

@@ -0,0 +1 @@
- Changed the `DeepgramSTTService` default setting for `smart_format` to `False`, as agents don't need smart formatting. Disabling this setting provides a small performance improvement, as well.

View File

@@ -106,7 +106,7 @@ class DeepgramSTTService(STTService):
model="nova-3-general",
channels=1,
interim_results=True,
smart_format=True,
smart_format=False,
punctuate=True,
profanity_filter=True,
vad_events=False,