Spaces:
Sleeping
Sleeping
Update requirements.txt
Browse files- requirements.txt +16 -15
requirements.txt
CHANGED
|
@@ -7,12 +7,12 @@ tokenizers>=0.13.0,<1.0.0
|
|
| 7 |
accelerate>=0.20.0,<1.0.0
|
| 8 |
safetensors>=0.3.0,<1.0.0
|
| 9 |
|
| 10 |
-
#
|
| 11 |
-
gradio==4.
|
| 12 |
-
gradio[oauth]==4.44.1
|
| 13 |
gradio-client==1.3.0
|
|
|
|
| 14 |
fastapi>=0.111,<0.114
|
| 15 |
-
uvicorn[standard]
|
| 16 |
|
| 17 |
# Hugging Face
|
| 18 |
huggingface_hub>=0.20.0,<1.0.0
|
|
@@ -34,23 +34,24 @@ ffmpeg-python>=0.2.0,<1.0.0
|
|
| 34 |
# Speech analysis
|
| 35 |
batchalign
|
| 36 |
praat-parselmouth
|
| 37 |
-
praatio
|
| 38 |
|
| 39 |
# Visualization
|
| 40 |
matplotlib>=3.5.0,<4.0.0
|
| 41 |
seaborn>=0.11.0,<1.0.0
|
| 42 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 43 |
# Utilities
|
| 44 |
jsonlines>=3.0.0
|
| 45 |
setuptools<81
|
|
|
|
| 46 |
|
| 47 |
-
#
|
| 48 |
-
|
| 49 |
-
|
| 50 |
-
python-multipart # For file uploads in FastAPI
|
| 51 |
-
typing-extensions>=4.0.0 # For better type hints
|
| 52 |
-
|
| 53 |
-
# Development/debugging (optional)
|
| 54 |
-
# ipython
|
| 55 |
-
# jupyter
|
| 56 |
-
# tqdm # Progress bars
|
|
|
|
| 7 |
accelerate>=0.20.0,<1.0.0
|
| 8 |
safetensors>=0.3.0,<1.0.0
|
| 9 |
|
| 10 |
+
# Web frameworks
|
| 11 |
+
gradio==4.42.0
|
|
|
|
| 12 |
gradio-client==1.3.0
|
| 13 |
+
flask>=2.3.0,<4.0.0
|
| 14 |
fastapi>=0.111,<0.114
|
| 15 |
+
uvicorn[standard]>=0.23.0
|
| 16 |
|
| 17 |
# Hugging Face
|
| 18 |
huggingface_hub>=0.20.0,<1.0.0
|
|
|
|
| 34 |
# Speech analysis
|
| 35 |
batchalign
|
| 36 |
praat-parselmouth
|
| 37 |
+
praatio
|
| 38 |
|
| 39 |
# Visualization
|
| 40 |
matplotlib>=3.5.0,<4.0.0
|
| 41 |
seaborn>=0.11.0,<1.0.0
|
| 42 |
|
| 43 |
+
# Web utilities
|
| 44 |
+
requests>=2.28.0
|
| 45 |
+
aiofiles>=22.0.0
|
| 46 |
+
python-multipart
|
| 47 |
+
werkzeug>=2.3.0
|
| 48 |
+
jinja2>=3.1.0
|
| 49 |
+
|
| 50 |
# Utilities
|
| 51 |
jsonlines>=3.0.0
|
| 52 |
setuptools<81
|
| 53 |
+
typing-extensions>=4.0.0
|
| 54 |
|
| 55 |
+
# Optional for better performance
|
| 56 |
+
gunicorn>=21.0.0 # Production WSGI server
|
| 57 |
+
gevent>=23.0.0 # Async support for Flask
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|