apytel commited on
Commit
a2efaea
·
1 Parent(s): 8d14573

update to use bucket

Browse files
Files changed (1) hide show
  1. src/config.py +4 -4
src/config.py CHANGED
@@ -18,9 +18,9 @@ HF_MODELS = [
18
  "mistralai/Mistral-7B-Instruct-v0.3",
19
  ]
20
 
21
- DATA_DIR = "data"
22
- CHUNKS_FILE = "data/chunks.parquet"
23
- FAISS_FILE = "data/index.faiss"
24
- BM25_FILE = "data/bm25.pkl"
25
 
26
  WIKI_BASE_URL = "https://wiki.freecad.org"
 
18
  "mistralai/Mistral-7B-Instruct-v0.3",
19
  ]
20
 
21
+ DATA_DIR = "hf://buckets/Undrick/NLP_Lab-storage"
22
+ CHUNKS_FILE = DATA_DIR + "/chunks.parquet"
23
+ FAISS_FILE = DATA_DIR +"/index.faiss"
24
+ BM25_FILE = DATA_DIR + "/bm25.pkl"
25
 
26
  WIKI_BASE_URL = "https://wiki.freecad.org"