Update requirements.txt
Browse files- requirements.txt +14 -2
requirements.txt
CHANGED
|
@@ -11,7 +11,7 @@ safetensors>=0.3.0,<1.0.0
|
|
| 11 |
gradio==4.42.0
|
| 12 |
gradio-client==1.3.0
|
| 13 |
fastapi>=0.111,<0.114
|
| 14 |
-
uvicorn
|
| 15 |
|
| 16 |
# Hugging Face
|
| 17 |
huggingface_hub>=0.20.0,<1.0.0
|
|
@@ -33,6 +33,7 @@ ffmpeg-python>=0.2.0,<1.0.0
|
|
| 33 |
# Speech analysis
|
| 34 |
batchalign
|
| 35 |
praat-parselmouth
|
|
|
|
| 36 |
|
| 37 |
# Visualization
|
| 38 |
matplotlib>=3.5.0,<4.0.0
|
|
@@ -40,4 +41,15 @@ seaborn>=0.11.0,<1.0.0
|
|
| 40 |
|
| 41 |
# Utilities
|
| 42 |
jsonlines>=3.0.0
|
| 43 |
-
setuptools<81
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 11 |
gradio==4.42.0
|
| 12 |
gradio-client==1.3.0
|
| 13 |
fastapi>=0.111,<0.114
|
| 14 |
+
uvicorn[standard]
|
| 15 |
|
| 16 |
# Hugging Face
|
| 17 |
huggingface_hub>=0.20.0,<1.0.0
|
|
|
|
| 33 |
# Speech analysis
|
| 34 |
batchalign
|
| 35 |
praat-parselmouth
|
| 36 |
+
praatio # For CHAT file processing (if needed)
|
| 37 |
|
| 38 |
# Visualization
|
| 39 |
matplotlib>=3.5.0,<4.0.0
|
|
|
|
| 41 |
|
| 42 |
# Utilities
|
| 43 |
jsonlines>=3.0.0
|
| 44 |
+
setuptools<81
|
| 45 |
+
|
| 46 |
+
# Additional dependencies that might be needed
|
| 47 |
+
requests>=2.28.0
|
| 48 |
+
aiofiles>=22.0.0 # For async file handling in FastAPI
|
| 49 |
+
python-multipart # For file uploads in FastAPI
|
| 50 |
+
typing-extensions>=4.0.0 # For better type hints
|
| 51 |
+
|
| 52 |
+
# Development/debugging (optional)
|
| 53 |
+
# ipython
|
| 54 |
+
# jupyter
|
| 55 |
+
# tqdm # Progress bars
|