MSEAJYTHTH commited on
Commit
465a36b
·
verified ·
1 Parent(s): e41777f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -30,9 +30,12 @@ embeddings = HuggingFaceEmbeddings(
30
  )
31
 
32
 
 
 
 
33
  def find_best_page_content(question, keywords, db):
34
 
35
- db = FAISS.load_local("faiss_index", embeddings, allow_dangerous_deserialization=True)
36
  results = db.similarity_search(question, k=50, fetch_k=50)
37
  keywords = ', '.join(keywords) #
38
 
 
30
  )
31
 
32
 
33
+ db = FAISS.load_local("MSEAJYTHTH/NFPC/faiss_index", embeddings, allow_dangerous_deserialization=True)
34
+
35
+
36
  def find_best_page_content(question, keywords, db):
37
 
38
+ db = FAISS.load_local("MSEAJYTHTH/NFPC/faiss_index", embeddings, allow_dangerous_deserialization=True)
39
  results = db.similarity_search(question, k=50, fetch_k=50)
40
  keywords = ', '.join(keywords) #
41