improve test-requirements.txt

This commit is contained in:
Aleix Conchillo Flaqué
2025-02-25 17:34:33 -08:00
parent 4bd5e9c0a7
commit 3e66f2378d
3 changed files with 5 additions and 38 deletions

View File

@@ -32,7 +32,6 @@ from pipecat.frames.frames import (
UserStoppedSpeakingFrame,
)
from pipecat.processors.frame_processor import FrameDirection, FrameProcessor
from pipecat.services.ai_services import STTService
class STTMuteStrategy(Enum):
@@ -94,7 +93,7 @@ class STTMuteFilter(FrameProcessor):
"""
def __init__(
self, *, config: STTMuteConfig, stt_service: Optional[STTService] = None, **kwargs
self, *, config: STTMuteConfig, stt_service: Optional[FrameProcessor] = None, **kwargs
):
super().__init__(**kwargs)
self._config = config