From d2f56c4e8f0ce221c11965f504c49aa89b50698b Mon Sep 17 00:00:00 2001 From: Kyle Gani Date: Mon, 5 May 2025 17:13:21 +0200 Subject: [PATCH] Fix: Spacing issue --- src/pipecat/services/ultravox/stt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pipecat/services/ultravox/stt.py b/src/pipecat/services/ultravox/stt.py index 7b087d9be..2c40b9214 100644 --- a/src/pipecat/services/ultravox/stt.py +++ b/src/pipecat/services/ultravox/stt.py @@ -425,7 +425,7 @@ class UltravoxSTTService(AIService): if "content" in delta: new_text = delta["content"] if new_text: - yield LLMTextFrame(text=new_text.strip()) + yield LLMTextFrame(text=new_text) # Stop processing metrics after completion await self.stop_processing_metrics()