Spaces:
Running
Running
Update requirements.txt
Browse files- requirements.txt +6 -21
requirements.txt
CHANGED
|
@@ -1,32 +1,17 @@
|
|
| 1 |
# Core dependencies
|
| 2 |
-
fastapi
|
| 3 |
-
uvicorn[standard]
|
| 4 |
-
pydantic
|
| 5 |
|
| 6 |
-
# Audio processing
|
| 7 |
torch>=2.0.0
|
| 8 |
torchaudio>=2.0.0
|
| 9 |
-
numpy>=1.24.0
|
| 10 |
|
| 11 |
-
# OpenVoice dependencies
|
| 12 |
-
|
| 13 |
-
git+https://github.com/myshell-ai/OpenVoice.git@v2
|
| 14 |
-
|
| 15 |
-
# MeloTTS (base TTS for OpenVoice)
|
| 16 |
-
melo-tts>=0.1.0
|
| 17 |
-
|
| 18 |
-
# Audio utilities
|
| 19 |
-
librosa>=0.10.0
|
| 20 |
-
soundfile>=0.12.0
|
| 21 |
-
resampy>=0.4.2
|
| 22 |
-
|
| 23 |
-
# Voice activity detection
|
| 24 |
-
webrtcvad>=2.0.10
|
| 25 |
-
pydub>=0.25.1
|
| 26 |
|
| 27 |
# HTTP requests
|
| 28 |
requests>=2.31.0
|
| 29 |
-
httpx>=0.26.0
|
| 30 |
|
| 31 |
# Hugging Face integration
|
| 32 |
huggingface-hub>=0.20.0
|
|
|
|
| 1 |
# Core dependencies
|
| 2 |
+
fastapi>=0.109.0
|
| 3 |
+
uvicorn[standard]>=0.27.0
|
| 4 |
+
pydantic>=2.5.0
|
| 5 |
|
| 6 |
+
# Audio processing (required)
|
| 7 |
torch>=2.0.0
|
| 8 |
torchaudio>=2.0.0
|
|
|
|
| 9 |
|
| 10 |
+
# OpenVoice (includes MeloTTS and most audio dependencies)
|
| 11 |
+
git+https://github.com/myshell-ai/OpenVoice.git
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 12 |
|
| 13 |
# HTTP requests
|
| 14 |
requests>=2.31.0
|
|
|
|
| 15 |
|
| 16 |
# Hugging Face integration
|
| 17 |
huggingface-hub>=0.20.0
|