Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -18,6 +18,8 @@ import difflib
|
|
18 |
|
19 |
|
20 |
modelPath = "MSEAJYTHTH/NFPC"
|
|
|
|
|
21 |
|
22 |
model_kwargs = {'device':'cpu'}
|
23 |
|
@@ -30,7 +32,7 @@ embeddings = HuggingFaceEmbeddings(
|
|
30 |
)
|
31 |
|
32 |
|
33 |
-
db = FAISS.load_local(
|
34 |
|
35 |
|
36 |
def find_best_page_content(question, keywords, db):
|
|
|
18 |
|
19 |
|
20 |
modelPath = "MSEAJYTHTH/NFPC"
|
21 |
+
faiss_indexPath = "MSEAJYTHTH/NFPC/faiss_index"
|
22 |
+
|
23 |
|
24 |
model_kwargs = {'device':'cpu'}
|
25 |
|
|
|
32 |
)
|
33 |
|
34 |
|
35 |
+
db = FAISS.load_local(faiss_indexPath, embeddings, allow_dangerous_deserialization=True)
|
36 |
|
37 |
|
38 |
def find_best_page_content(question, keywords, db):
|