sanjeevl10 commited on
Commit
cb19fde
·
1 Parent(s): c116bc2

fixed the directory path

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -60,7 +60,7 @@ hf_embeddings = HuggingFaceEndpointEmbeddings(
60
  )
61
 
62
  vectordb = os.path.join("./data", "vectorstore")
63
- vectordbfile = os.path.join(VECTORSTORE_DIR, "index.faiss")
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):