2024-12-30 13:25:30 -07:00
|
|
|
# Primarily for reference, as Dockerfile refer
|
2024-12-30 05:29:35 -07:00
|
|
|
# Core dependencies
|
|
|
|
fastapi==0.115.6
|
|
|
|
uvicorn==0.34.0
|
|
|
|
pydantic==2.10.4
|
2024-12-31 01:52:16 -07:00
|
|
|
pydantic-settings==2.7.0
|
2024-12-30 05:29:35 -07:00
|
|
|
python-dotenv==1.0.1
|
2024-12-30 13:21:17 -07:00
|
|
|
sqlalchemy==2.0.27
|
2024-12-30 05:29:35 -07:00
|
|
|
|
|
|
|
# ML/DL
|
|
|
|
transformers==4.47.1
|
2025-01-11 20:00:34 -07:00
|
|
|
numpy>=1.26.0 # Version managed by PyTorch dependencies
|
2024-12-30 05:29:35 -07:00
|
|
|
scipy==1.14.1
|
2025-01-09 13:11:04 -07:00
|
|
|
onnxruntime==1.20.1
|
2024-12-30 05:29:35 -07:00
|
|
|
|
2024-12-31 01:52:16 -07:00
|
|
|
# Audio processing
|
2025-01-06 03:32:41 -07:00
|
|
|
soundfile==0.13.0
|
2024-12-31 01:52:16 -07:00
|
|
|
|
2024-12-30 05:29:35 -07:00
|
|
|
# Text processing
|
|
|
|
phonemizer==3.3.0
|
|
|
|
regex==2024.11.6
|
|
|
|
|
|
|
|
# Utilities
|
2025-01-11 20:00:34 -07:00
|
|
|
aiofiles==23.2.1 # Last version before Windows path handling changes
|
2024-12-30 05:29:35 -07:00
|
|
|
tqdm==4.67.1
|
|
|
|
requests==2.32.3
|
|
|
|
munch==4.0.0
|
2024-12-31 01:52:16 -07:00
|
|
|
tiktoken===0.8.0
|
2024-12-31 01:57:00 -07:00
|
|
|
loguru==0.7.3
|
2024-12-30 13:25:30 -07:00
|
|
|
|
|
|
|
# Testing
|
|
|
|
pytest==8.0.0
|
|
|
|
httpx==0.26.0
|
|
|
|
pytest-asyncio==0.23.5
|