Spaces:
Sleeping
Sleeping
Modified requirements.txt and vectorstore
Browse files- requirements.txt +1 -1
- src/vectorstore.py +2 -2
requirements.txt
CHANGED
|
@@ -3,7 +3,7 @@ openai==1.68.2
|
|
| 3 |
python-dotenv==1.1.0
|
| 4 |
langchain-community==0.3.20
|
| 5 |
langchain-core==0.3.48
|
| 6 |
-
langchain-huggingface==0.3.1
|
| 7 |
faiss-cpu==1.10.0
|
| 8 |
faiss-gpu==1.7.2
|
| 9 |
sentence-transformers==3.4.1
|
|
|
|
| 3 |
python-dotenv==1.1.0
|
| 4 |
langchain-community==0.3.20
|
| 5 |
langchain-core==0.3.48
|
| 6 |
+
# langchain-huggingface==0.3.1
|
| 7 |
faiss-cpu==1.10.0
|
| 8 |
faiss-gpu==1.7.2
|
| 9 |
sentence-transformers==3.4.1
|
src/vectorstore.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
| 1 |
from langchain_community.vectorstores import FAISS
|
| 2 |
-
|
| 3 |
-
from langchain_huggingface import HuggingFaceEmbeddings
|
| 4 |
from huggingface_hub import snapshot_download
|
| 5 |
import logging
|
| 6 |
|
|
|
|
| 1 |
from langchain_community.vectorstores import FAISS
|
| 2 |
+
from langchain_community.embeddings import HuggingFaceEmbeddings
|
| 3 |
+
# from langchain_huggingface import HuggingFaceEmbeddings
|
| 4 |
from huggingface_hub import snapshot_download
|
| 5 |
import logging
|
| 6 |
|