MSEAJYTHTH commited on
Commit
30c25f1
1 Parent(s): 93c89e0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -17,7 +17,6 @@ import difflib
17
 
18
 
19
  modelPath = "MSEAJYTHTH/NFPC"
20
- # db_files = ["MSEAJYTHTH/NFPC/index.faiss", "MSEAJYTHTH/NFPC/index.pkl"]
21
 
22
  model_kwargs = {'device':'cpu'}
23
 
@@ -31,7 +30,7 @@ embeddings = HuggingFaceEmbeddings(
31
 
32
 
33
  # 두 파일을 업로드한 후에는 다음과 같이 코드를 수정할 수 있습니다.
34
- db = FAISS.load_local(modelPath, embeddings, allow_dangerous_deserialization=True)
35
 
36
 
37
  def find_best_page_content(question, keywords, db):
 
17
 
18
 
19
  modelPath = "MSEAJYTHTH/NFPC"
 
20
 
21
  model_kwargs = {'device':'cpu'}
22
 
 
30
 
31
 
32
  # 두 파일을 업로드한 후에는 다음과 같이 코드를 수정할 수 있습니다.
33
+ db = FAISS.load_local("index.faiss", embeddings, allow_dangerous_deserialization=True)
34
 
35
 
36
  def find_best_page_content(question, keywords, db):