Spaces:
Runtime error
Runtime error
sanjeevl10
commited on
Commit
·
cb19fde
1
Parent(s):
c116bc2
fixed the directory path
Browse files
app.py
CHANGED
@@ -60,7 +60,7 @@ hf_embeddings = HuggingFaceEndpointEmbeddings(
|
|
60 |
)
|
61 |
|
62 |
vectordb = os.path.join("./data", "vectorstore")
|
63 |
-
vectordbfile = os.path.join(
|
64 |
|
65 |
|
66 |
if os.path.exists(vectordbfile):
|
|
|
60 |
)
|
61 |
|
62 |
vectordb = os.path.join("./data", "vectorstore")
|
63 |
+
vectordbfile = os.path.join(vectordb, "index.faiss")
|
64 |
|
65 |
|
66 |
if os.path.exists(vectordbfile):
|