Upload requirements.txt
Browse files- requirements.txt +54 -0
requirements.txt
ADDED
@@ -0,0 +1,54 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Core Scientific Stack
|
2 |
+
numpy==1.24
|
3 |
+
scipy
|
4 |
+
soundfile
|
5 |
+
sounddevice
|
6 |
+
opencv-python==4.7.0.72
|
7 |
+
moviepy
|
8 |
+
librosa
|
9 |
+
|
10 |
+
# Hugging Face Transformers + Whisper + Bark
|
11 |
+
transformers
|
12 |
+
torch
|
13 |
+
sentencepiece==0.1.99 --prefer-binary
|
14 |
+
sentence-transformers
|
15 |
+
git+https://github.com/openai/whisper.git
|
16 |
+
git+https://github.com/suno-ai/bark.git
|
17 |
+
|
18 |
+
# TTS + gTTS
|
19 |
+
TTS
|
20 |
+
gTTS
|
21 |
+
|
22 |
+
# Langchain ecosystem
|
23 |
+
langchain
|
24 |
+
langchain_groq
|
25 |
+
langchain_community
|
26 |
+
langchain_huggingface
|
27 |
+
llama-index
|
28 |
+
cohere
|
29 |
+
|
30 |
+
# Vector database
|
31 |
+
qdrant-client
|
32 |
+
|
33 |
+
# Emotion & face recognition
|
34 |
+
deepface
|
35 |
+
tensorflow
|
36 |
+
tf-keras
|
37 |
+
|
38 |
+
# Document parsing (CV/Job Description)
|
39 |
+
textract
|
40 |
+
PyPDF2
|
41 |
+
python-docx
|
42 |
+
|
43 |
+
# Audio I/O and video support
|
44 |
+
ffmpeg-python
|
45 |
+
pyaudio
|
46 |
+
|
47 |
+
# Misc tools
|
48 |
+
fuzzywuzzy
|
49 |
+
inputimeout
|
50 |
+
evaluate
|
51 |
+
datasets
|
52 |
+
|
53 |
+
# Ensure compatibility with pip
|
54 |
+
pip==23.3.1
|