absiitr commited on
Commit
4b89b00
·
verified ·
1 Parent(s): c0dd4f4

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +16 -18
requirements.txt CHANGED
@@ -1,22 +1,20 @@
1
- # ---------- Core ----------
2
- streamlit==1.28.0
3
- requests==2.31.0
4
- python-dotenv==1.0.0
5
 
6
- # ---------- Groq ----------
7
- groq==0.9.0
8
 
9
- # ---------- LangChain ----------
10
- langchain==0.0.350
11
- langchain-community==0.0.19
12
- langchain-text-splitters==0.0.1
13
 
14
- # ---------- RAG ----------
15
- chromadb==0.4.22
16
- sentence-transformers==2.2.2
17
- transformers==4.36.0
18
- pypdf==3.17.0
19
 
20
- # ---------- Torch (CPU) ----------
21
- torch==2.1.0
22
- --extra-index-url https://download.pytorch.org/whl/cpu
 
1
+ # Core - keep Streamlit flexible
2
+ streamlit>=1.28
3
+ requests
 
4
 
5
+ # Groq
6
+ groq>=0.9.0
7
 
8
+ # LangChain - use newer versions
9
+ langchain>=0.1
10
+ langchain-community>=0.0.10
11
+ langchain-text-splitters>=0.0.1
12
 
13
+ # RAG Components
14
+ chromadb>=0.4
15
+ sentence-transformers
16
+ transformers
17
+ pypdf
18
 
19
+ # Torch CPU - specify the CPU version correctly
20
+ torch --index-url https://download.pytorch.org/whl/cpu