Spaces:
Sleeping
Sleeping
Update requirements.txt
Browse files- requirements.txt +15 -6
requirements.txt
CHANGED
@@ -1,8 +1,17 @@
|
|
1 |
-
|
|
|
|
|
|
|
|
|
|
|
2 |
langchain==0.3.7
|
3 |
langchain_community==0.3.5
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
|
|
|
|
|
|
|
|
|
1 |
+
# Core
|
2 |
+
streamlit==1.39.0
|
3 |
+
python-dotenv==1.0.1
|
4 |
+
pymongo==4.10.1
|
5 |
+
|
6 |
+
# LangChain + Embeddings
|
7 |
langchain==0.3.7
|
8 |
langchain_community==0.3.5
|
9 |
+
sentence-transformers==2.6.1
|
10 |
+
transformers==4.41.2
|
11 |
+
accelerate==0.30.1
|
12 |
+
torch==2.3.0 # Make sure your machine supports this. Downgrade if needed.
|
13 |
+
|
14 |
+
# File handling
|
15 |
+
PyPDF2==3.0.1
|
16 |
+
huggingface_hub==0.26.2
|
17 |
+
|