From cd07937c5dcc413000ede5bbc8a232f477a6cd25 Mon Sep 17 00:00:00 2001 From: zack Date: Thu, 26 Feb 2026 22:18:02 -0500 Subject: [PATCH] Fix missing imports: Add UserStartedSpeakingFrame and UserStoppedSpeakingFrame --- src/pipecat/services/assemblyai/stt.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/pipecat/services/assemblyai/stt.py b/src/pipecat/services/assemblyai/stt.py index edd5ac7b7..9881c145f 100644 --- a/src/pipecat/services/assemblyai/stt.py +++ b/src/pipecat/services/assemblyai/stt.py @@ -26,6 +26,8 @@ from pipecat.frames.frames import ( InterimTranscriptionFrame, StartFrame, TranscriptionFrame, + UserStartedSpeakingFrame, + UserStoppedSpeakingFrame, VADUserStartedSpeakingFrame, VADUserStoppedSpeakingFrame, )