stevafernandes commited on
Commit
fefeb04
·
verified ·
1 Parent(s): 87ff579

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +19 -7
requirements.txt CHANGED
@@ -1,7 +1,19 @@
1
- streamlit
2
- PyPDF2
3
- langchain>=0.2.0
4
- langchain-google-genai
5
- langchain-community
6
- faiss-cpu
7
- langchain-text-splitters
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Core dependencies
2
+ streamlit==1.40.2
3
+ PyPDF2==3.0.1
4
+
5
+ # LangChain ecosystem
6
+ langchain==0.3.12
7
+ langchain-text-splitters==0.3.4
8
+ langchain-google-genai==2.0.7
9
+ langchain-community==0.3.11
10
+
11
+ # Vector store
12
+ faiss-cpu==1.9.0.post1
13
+
14
+ # Google AI
15
+ google-generativeai==0.8.3
16
+
17
+ # Additional dependencies that might be needed
18
+ numpy<2.0.0
19
+ tiktoken==0.8.0