MSEAJYTHTH commited on
Commit
bee2308
·
verified ·
1 Parent(s): 34f8c66

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -7
app.py CHANGED
@@ -17,13 +17,8 @@ import os
17
  import difflib
18
 
19
 
20
- API_URL = "https://huggingface.co/MSEAJYTHTH/NFPC/tree/main/faiss_index"
21
-
22
-
23
-
24
-
25
  modelPath = "MSEAJYTHTH/NFPC"
26
- faiss_indexPath = "MSEAJYTHTH/NFPC/faiss_index"
27
 
28
 
29
  model_kwargs = {'device':'cpu'}
@@ -37,7 +32,8 @@ embeddings = HuggingFaceEmbeddings(
37
  )
38
 
39
 
40
- db = FAISS.load_local(API_URL, embeddings, allow_dangerous_deserialization=True)
 
41
 
42
 
43
  def find_best_page_content(question, keywords, db):
 
17
  import difflib
18
 
19
 
 
 
 
 
 
20
  modelPath = "MSEAJYTHTH/NFPC"
21
+ db_files = ["MSEAJYTHTH/NFPC/index.faiss", "MSEAJYTHTH/NFPC/index.pkl"]
22
 
23
 
24
  model_kwargs = {'device':'cpu'}
 
32
  )
33
 
34
 
35
+ # 파일을 업로드한 후에는 다음과 같이 코드를 수정할 수 있습니다.
36
+ db = FAISS.load_local(db_files, embeddings, allow_dangerous_deserialization=True)
37
 
38
 
39
  def find_best_page_content(question, keywords, db):