MSEAJYTHTH commited on
Commit
cc6c2c0
·
verified ·
1 Parent(s): 5a59379

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
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("faiss_index", embeddings, allow_dangerous_deserialization=True)
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):