Hasitha16 commited on
Commit
f727ed3
·
verified ·
1 Parent(s): 57d0c46

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +31 -11
requirements.txt CHANGED
@@ -1,11 +1,31 @@
1
- fastapi
2
- uvicorn
3
- transformers
4
- pandas
5
- scikit-learn
6
- nltk
7
- streamlit
8
- gtts
9
- requests
10
- openai
11
- torch
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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