From fa0100c38bd1da7ab93170f71177a4d826ef659a Mon Sep 17 00:00:00 2001 From: Mark Backman Date: Mon, 24 Nov 2025 20:04:18 -0500 Subject: [PATCH] fix: remove stt_sagemaker import from deepgram/__init__.py --- src/pipecat/services/deepgram/__init__.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/pipecat/services/deepgram/__init__.py b/src/pipecat/services/deepgram/__init__.py index 227ac5c64..c23ebbec9 100644 --- a/src/pipecat/services/deepgram/__init__.py +++ b/src/pipecat/services/deepgram/__init__.py @@ -10,7 +10,6 @@ from pipecat.services import DeprecatedModuleProxy from .flux import * from .stt import * -from .stt_sagemaker import * from .tts import * sys.modules[__name__] = DeprecatedModuleProxy(globals(), "deepgram", "deepgram.[stt,tts]")