Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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 |
-
|
27 |
|
28 |
|
29 |
model_kwargs = {'device':'cpu'}
|
@@ -37,7 +32,8 @@ embeddings = HuggingFaceEmbeddings(
|
|
37 |
)
|
38 |
|
39 |
|
40 |
-
|
|
|
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):
|