forked from Lex-au/Orpheus-FastAPI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrequirements.txt
More file actions
31 lines (26 loc) · 737 Bytes
/
requirements.txt
File metadata and controls
31 lines (26 loc) · 737 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Web Server Dependencies
fastapi==0.103.1
uvicorn==0.23.2
jinja2==3.1.2
pydantic==2.3.0
python-multipart==0.0.6
# API and Communication
requests==2.31.0
python-dotenv==1.0.0
watchfiles==1.0.4
# Audio Processing
numpy==1.24.0
sounddevice==0.4.6
snac==1.2.1 # Required for audio generation from tokens
# System Utilities
psutil==5.9.0
# PyTorch - Install separately with CUDA support:
# On Windows/Linux:
# pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu124
# On macOS:
# pip3 install torch torchvision torchaudio
# Optional Dependencies
# For MP3 conversion (not currently implemented)
# pydub==0.25.1
# For better sentence splitting (potential future improvement)
# nltk==3.8.1