Gaykar commited on
Commit
16dad23
·
1 Parent(s): 2b38d79

solved errror of path

Browse files
Files changed (1) hide show
  1. app/utils/vectordatabase.py +1 -1
app/utils/vectordatabase.py CHANGED
@@ -18,7 +18,7 @@ from app.core.config import settings
18
  # -----------------------------
19
 
20
  BASE_DIR = Path(__file__).resolve().parent
21
- DATA_PATH = BASE_DIR / "formatted_catalog.json"
22
  BM25_PKL_PATH = BASE_DIR / "bm25.pkl"
23
 
24
 
 
18
  # -----------------------------
19
 
20
  BASE_DIR = Path(__file__).resolve().parent
21
+ DATA_PATH = BASE_DIR / "langchain_formatted.json"
22
  BM25_PKL_PATH = BASE_DIR / "bm25.pkl"
23
 
24