Spaces:
Paused
Paused
Update requirements.txt
Browse files- requirements.txt +8 -9
requirements.txt
CHANGED
@@ -1,20 +1,19 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
# Core ML and NLP dependencies
|
4 |
torch>=2.0.0
|
5 |
transformers>=4.30.0
|
6 |
accelerate>=0.20.0
|
7 |
|
8 |
-
# Audio processing
|
9 |
pydub>=0.25.1
|
10 |
edge-tts>=6.1.0
|
11 |
|
12 |
-
#
|
13 |
PyPDF2>=3.0.0
|
|
|
14 |
|
15 |
-
#
|
16 |
gradio>=4.0.0
|
17 |
|
18 |
-
#
|
19 |
-
|
20 |
-
gitpython
|
|
|
1 |
+
# Core LLM & NLP
|
|
|
|
|
2 |
torch>=2.0.0
|
3 |
transformers>=4.30.0
|
4 |
accelerate>=0.20.0
|
5 |
|
6 |
+
# Audio processing
|
7 |
pydub>=0.25.1
|
8 |
edge-tts>=6.1.0
|
9 |
|
10 |
+
# File handling
|
11 |
PyPDF2>=3.0.0
|
12 |
+
aiofiles>=23.0.0
|
13 |
|
14 |
+
# Interface
|
15 |
gradio>=4.0.0
|
16 |
|
17 |
+
# Utility (remove if unused)
|
18 |
+
pydantic==2.10.6
|
19 |
+
gitpython # Remove if not actually used in runtime
|