neerajkalyank commited on
Commit
166742b
·
verified ·
1 Parent(s): a159664

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +22 -11
requirements.txt CHANGED
@@ -1,11 +1,22 @@
1
- streamlit
2
- langchain
3
- langchain-community
4
- langchain-groq
5
- faiss-cpu
6
- sentence-transformers
7
- python-dotenv
8
- pypdf
9
- docx2txt
10
- pandas
11
- reportlab
 
 
 
 
 
 
 
 
 
 
 
 
1
+ streamlit>=1.32.0
2
+
3
+ # LangChain core (modular)
4
+ langchain==0.1.20
5
+ langchain-core==0.1.52
6
+ langchain-community==0.0.38
7
+ langchain-groq==0.1.4
8
+
9
+ # Embeddings & Vector DB
10
+ sentence-transformers==2.7.0
11
+ faiss-cpu==1.7.4
12
+
13
+ # File parsing
14
+ pypdf==4.2.0
15
+ docx2txt==0.8
16
+ pandas==2.2.2
17
+
18
+ # PDF generation
19
+ reportlab==4.2.0
20
+
21
+ # Env handling (HF secrets compatible)
22
+ python-dotenv==1.0.1