Remove unused import and correction to docs.

This commit is contained in:
Sam Sykes
2026-01-07 07:45:26 -08:00
parent ecfd93544a
commit 3e00a16f0f

View File

@@ -29,7 +29,6 @@ from pipecat.frames.frames import (
TranscriptionFrame, TranscriptionFrame,
UserStartedSpeakingFrame, UserStartedSpeakingFrame,
UserStoppedSpeakingFrame, UserStoppedSpeakingFrame,
VADUserStartedSpeakingFrame,
VADUserStoppedSpeakingFrame, VADUserStoppedSpeakingFrame,
) )
from pipecat.processors.frame_processor import FrameDirection from pipecat.processors.frame_processor import FrameDirection
@@ -615,7 +614,7 @@ class SpeechmaticsSTTService(STTService):
The service will: The service will:
- Send a BotInterruptionFrame upstream to stop bot speech - Send a BotInterruptionFrame upstream to stop bot speech
- Send a VADUserStartedSpeakingFrame downstream to notify other components - Send a UserStartedSpeakingFrame downstream to notify other components
- Start metrics collection for measuring response times - Start metrics collection for measuring response times
Args: Args:
@@ -636,7 +635,7 @@ class SpeechmaticsSTTService(STTService):
The service will: The service will:
- Stop processing metrics collection - Stop processing metrics collection
- Send a VADUserStoppedSpeakingFrame to signal turn completion - Send a UserStoppedSpeakingFrame to signal turn completion
Args: Args:
message: the message payload. message: the message payload.