Spaces:
Running
Running
- requirements.txt +14 -3
requirements.txt
CHANGED
@@ -1,3 +1,14 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# This file tells Hugging Face which Python libraries to install in the environment.
|
2 |
+
# These are the libraries that will be installed in your Hugging Face Space environment.
|
3 |
+
|
4 |
+
# Gradio for the web interface
|
5 |
+
gradio==3.41.0
|
6 |
+
|
7 |
+
# Transformers library (for pipelines)
|
8 |
+
transformers==4.33.2
|
9 |
+
|
10 |
+
# PyTorch (required for most HF models)
|
11 |
+
torch==2.0.1
|
12 |
+
|
13 |
+
# pydub can help process audio if needed (optional, but often useful)
|
14 |
+
pydub==0.25.1
|