Skip to content

Commit 3e66f23

Browse files
committed
improve test-requirements.txt
1 parent 4bd5e9c commit 3e66f23

File tree

3 files changed

+5
-38
lines changed

3 files changed

+5
-38
lines changed

dev-requirements.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ coverage~=7.6.12
33
grpcio-tools~=1.67.1
44
pip-tools~=7.4.1
55
pre-commit~=4.0.1
6-
pyright~=1.1.393
6+
pyright~=1.1.394
77
pytest~=8.3.4
8-
pytest-asyncio~=0.25.2
9-
ruff~=0.9.5
8+
pytest-asyncio~=0.25.3
9+
ruff~=0.9.7
1010
setuptools~=70.0.0
1111
setuptools_scm~=8.1.0
1212
python-dotenv~=1.0.1

src/pipecat/processors/filters/stt_mute_filter.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@
3232
UserStoppedSpeakingFrame,
3333
)
3434
from pipecat.processors.frame_processor import FrameDirection, FrameProcessor
35-
from pipecat.services.ai_services import STTService
3635

3736

3837
class STTMuteStrategy(Enum):
@@ -94,7 +93,7 @@ class STTMuteFilter(FrameProcessor):
9493
"""
9594

9695
def __init__(
97-
self, *, config: STTMuteConfig, stt_service: Optional[STTService] = None, **kwargs
96+
self, *, config: STTMuteConfig, stt_service: Optional[FrameProcessor] = None, **kwargs
9897
):
9998
super().__init__(**kwargs)
10099
self._config = config

test-requirements.txt

+1-33
Original file line numberDiff line numberDiff line change
@@ -1,33 +1 @@
1-
aiohttp~=3.10.3
2-
anthropic~=0.30.0
3-
azure-cognitiveservices-speech~=1.40.0
4-
boto3~=1.35.27
5-
cartesia~=1.3.1
6-
daily-python~=0.11.0
7-
deepgram-sdk~=3.5.0
8-
fal-client~=0.4.1
9-
fastapi~=0.115.0
10-
faster-whisper~=1.0.3
11-
google-cloud-speech~=2.31.0
12-
google-cloud-texttospeech~=2.25.0
13-
google-genai~=1.2.0
14-
google-generativeai~=0.8.4
15-
langchain~=0.2.14
16-
livekit~=0.13.1
17-
lmnt~=1.1.4
18-
loguru~=0.7.2
19-
Markdown~=3.7
20-
numpy~=1.26.4
21-
openai~=1.37.2
22-
openpipe~=4.24.0
23-
Pillow~=10.4.0
24-
pyaudio~=0.2.14
25-
pydantic~=2.8.2
26-
pyloudnorm~=0.1.1
27-
pyht~=0.1.4
28-
python-dotenv~=1.0.1
29-
silero-vad~=5.1
30-
soxr~=0.5.0
31-
together~=1.2.7
32-
transformers~=4.48.0
33-
websockets~=13.1
1+
-e ".[anthropic,google,langchain]"

0 commit comments

Comments
 (0)