fastx commited on
Commit
c061f3a
·
verified ·
1 Parent(s): d822b20

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +24 -25
requirements.txt CHANGED
@@ -1,25 +1,24 @@
1
- # Core dependencies
2
- streamlit>=1.31.0
3
- python-dotenv>=1.0.0
4
-
5
- # LangChain ecosystem
6
- langchain>=0.1.0
7
- langchain-core>=0.1.0
8
- langchain-community>=0.0.10
9
- langchain-groq>=0.1.0
10
-
11
- # Embedding and vector storage
12
- sentence-transformers>=2.2.2
13
- faiss-cpu>=1.7.4
14
- huggingface-hub>=0.19.0
15
-
16
- # LLM and transformers
17
- transformers>=4.36.0
18
- torch>=2.0.0
19
- numpy>=1.24.0
20
-
21
- # Utilities
22
- tqdm>=4.66.0
23
- pandas>=2.0.0
24
-
25
-
 
1
+ # Core dependencies
2
+ streamlit>=1.31.0
3
+ python-dotenv>=1.0.0
4
+
5
+ # LangChain ecosystem
6
+ langchain>=0.1.0
7
+ langchain-core>=0.1.0
8
+ langchain-community>=0.0.10
9
+ langchain-groq>=0.1.0
10
+ langchain-huggingface>=0.1.0 # NEW: For updated HuggingFaceEmbeddings support
11
+
12
+ # Embedding and vector storage
13
+ sentence-transformers>=2.2.2
14
+ faiss-cpu>=1.7.4
15
+ huggingface-hub>=0.19.0
16
+
17
+ # LLM and transformers
18
+ transformers>=4.36.0
19
+ torch>=2.1.0 # UPDATED: Avoid meta tensor errors
20
+ numpy>=1.24.0
21
+
22
+ # Utilities
23
+ tqdm>=4.66.0
24
+ pandas>=2.0.0