Spaces:
Running
Running
Update requirements.txt
Browse files- requirements.txt +31 -11
requirements.txt
CHANGED
@@ -1,11 +1,31 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Core Backend
|
2 |
+
fastapi==0.110.0
|
3 |
+
uvicorn[standard]==0.29.0
|
4 |
+
|
5 |
+
# NLP Models & Pipelines
|
6 |
+
transformers==4.41.2
|
7 |
+
torch>=2.0.0
|
8 |
+
sentence-transformers==2.5.1
|
9 |
+
nltk==3.8.1
|
10 |
+
scikit-learn==1.4.2
|
11 |
+
|
12 |
+
# Audio + File Handling
|
13 |
+
gTTS==2.5.1
|
14 |
+
pillow==10.3.0
|
15 |
+
python-multipart==0.0.9
|
16 |
+
|
17 |
+
# Data & Utilities
|
18 |
+
pandas==2.2.2
|
19 |
+
requests==2.32.3
|
20 |
+
|
21 |
+
# Frontend
|
22 |
+
streamlit==1.35.0
|
23 |
+
matplotlib==3.8.4
|
24 |
+
seaborn==0.13.2
|
25 |
+
|
26 |
+
# LangChain-like Embeddings (no OpenAI)
|
27 |
+
faiss-cpu==1.7.4
|
28 |
+
tqdm==4.66.4
|
29 |
+
|
30 |
+
# Optional if used
|
31 |
+
openai==1.30.5
|