2026-01-17 03:14:40 +02:00
|
|
|
# STT Container Requirements
|
|
|
|
|
|
|
|
|
|
# Core dependencies
|
|
|
|
|
fastapi==0.115.6
|
|
|
|
|
uvicorn[standard]==0.32.1
|
|
|
|
|
websockets==14.1
|
|
|
|
|
aiohttp==3.11.11
|
|
|
|
|
|
2026-01-18 03:35:50 +02:00
|
|
|
# Audio processing (install numpy first for sox dependency)
|
2026-01-17 03:14:40 +02:00
|
|
|
numpy==2.2.2
|
|
|
|
|
soundfile==0.12.1
|
|
|
|
|
librosa==0.10.2.post1
|
|
|
|
|
|
|
|
|
|
# VAD (CPU)
|
|
|
|
|
torch==2.9.1 # Latest PyTorch
|
|
|
|
|
torchaudio==2.9.1
|
|
|
|
|
silero-vad==5.1.2
|
|
|
|
|
|
2026-01-18 03:35:50 +02:00
|
|
|
# STT (GPU) - NVIDIA NeMo for Parakeet
|
|
|
|
|
# Parakeet TDT 0.6b-v3 requires NeMo 2.4
|
|
|
|
|
# Fix huggingface-hub version conflict with transformers
|
|
|
|
|
huggingface-hub>=0.30.0,<1.0
|
|
|
|
|
nemo_toolkit[asr]==2.4.0
|
|
|
|
|
omegaconf==2.3.0
|
2026-01-20 23:06:17 +02:00
|
|
|
cuda-python>=12.3 # Enable CUDA graphs for faster decoding
|
2026-01-17 03:14:40 +02:00
|
|
|
|
|
|
|
|
# Utilities
|
|
|
|
|
python-multipart==0.0.20
|
|
|
|
|
pydantic==2.10.4
|