Spaces:
Runtime error
Runtime error
Commit
·
211e28b
1
Parent(s):
e72b0d5
Update app.py
Browse files
app.py
CHANGED
@@ -9,7 +9,7 @@ import pickle
|
|
9 |
# Load the LangChain.
|
10 |
index = faiss.read_index("docs.index")
|
11 |
|
12 |
-
with open("
|
13 |
store = pickle.load(f)
|
14 |
|
15 |
store.index = index
|
|
|
9 |
# Load the LangChain.
|
10 |
index = faiss.read_index("docs.index")
|
11 |
|
12 |
+
with open("faiss_store.pkl", "rb") as f:
|
13 |
store = pickle.load(f)
|
14 |
|
15 |
store.index = index
|