apytel commited on
Commit ·
a2efaea
1
Parent(s): 8d14573
update to use bucket
Browse files- 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 = "
|
| 22 |
-
CHUNKS_FILE = "
|
| 23 |
-
FAISS_FILE = "
|
| 24 |
-
BM25_FILE = "
|
| 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"
|