Update requirements.txt
Browse files- requirements.txt +5 -24
requirements.txt
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
# Core
|
2 |
numpy==1.24.4
|
3 |
scipy==1.11.3
|
4 |
soundfile==0.12.1
|
@@ -7,19 +7,14 @@ opencv-python==4.7.0.72
|
|
7 |
moviepy==1.0.3
|
8 |
librosa==0.10.0.post2
|
9 |
|
10 |
-
#
|
11 |
transformers==4.38.1
|
12 |
torch==2.1.2
|
13 |
sentencepiece==0.1.99
|
14 |
sentence-transformers==2.2.2
|
15 |
git+https://github.com/openai/whisper.git@c0d2f62
|
16 |
-
git+https://github.com/suno-ai/bark.git@f4f32d4
|
17 |
|
18 |
-
#
|
19 |
-
TTS==0.22.0
|
20 |
-
gTTS==2.5.4
|
21 |
-
|
22 |
-
# Langchain ecosystem
|
23 |
langchain==0.3.26
|
24 |
langchain_groq==0.3.6
|
25 |
langchain_community==0.3.27
|
@@ -27,28 +22,14 @@ langchain_huggingface==0.3.0
|
|
27 |
llama-index==0.12.48
|
28 |
cohere==5.16.1
|
29 |
|
30 |
-
# Vector
|
31 |
qdrant-client==1.14.3
|
32 |
|
33 |
-
#
|
34 |
-
deepface==0.0.93
|
35 |
-
tensorflow==2.14.0
|
36 |
-
tf-keras==2.14.0
|
37 |
-
|
38 |
-
# Document parsing (CV/Job Description)
|
39 |
-
textract==1.6.3
|
40 |
PyPDF2==3.0.1
|
41 |
python-docx==1.2.0
|
42 |
-
|
43 |
-
# Audio I/O and video support
|
44 |
ffmpeg-python==0.2.0
|
45 |
pyaudio==0.2.14
|
46 |
-
|
47 |
-
# Misc tools
|
48 |
-
fuzzywuzzy==0.18.0
|
49 |
inputimeout==1.0.4
|
50 |
evaluate==0.4.5
|
51 |
-
datasets==4.0.0
|
52 |
-
|
53 |
-
# Pinned pip version
|
54 |
pip==23.3.1
|
|
|
1 |
+
# Core
|
2 |
numpy==1.24.4
|
3 |
scipy==1.11.3
|
4 |
soundfile==0.12.1
|
|
|
7 |
moviepy==1.0.3
|
8 |
librosa==0.10.0.post2
|
9 |
|
10 |
+
# Models
|
11 |
transformers==4.38.1
|
12 |
torch==2.1.2
|
13 |
sentencepiece==0.1.99
|
14 |
sentence-transformers==2.2.2
|
15 |
git+https://github.com/openai/whisper.git@c0d2f62
|
|
|
16 |
|
17 |
+
# LangChain stack
|
|
|
|
|
|
|
|
|
18 |
langchain==0.3.26
|
19 |
langchain_groq==0.3.6
|
20 |
langchain_community==0.3.27
|
|
|
22 |
llama-index==0.12.48
|
23 |
cohere==5.16.1
|
24 |
|
25 |
+
# Vector DB
|
26 |
qdrant-client==1.14.3
|
27 |
|
28 |
+
# Extras
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
PyPDF2==3.0.1
|
30 |
python-docx==1.2.0
|
|
|
|
|
31 |
ffmpeg-python==0.2.0
|
32 |
pyaudio==0.2.14
|
|
|
|
|
|
|
33 |
inputimeout==1.0.4
|
34 |
evaluate==0.4.5
|
|
|
|
|
|
|
35 |
pip==23.3.1
|