Spaces:
Runtime error
Runtime error
change cache file dir
Browse files- web_gui/streamlit.py +1 -1
web_gui/streamlit.py
CHANGED
|
@@ -11,7 +11,7 @@ from huggingface_hub import InferenceClient
|
|
| 11 |
# --- Configuration & Constants ---
|
| 12 |
PAGE_TITLE = "Manga & TV Assistant"
|
| 13 |
DATA_DIRECTORY = "corpus"
|
| 14 |
-
CACHE_FILE = "embeddings_cache.npz" # Cache file path
|
| 15 |
DEFAULT_LLM_MODEL = "meta-llama/Llama-3.1-8B-Instruct"
|
| 16 |
EMBEDDING_MODEL_NAME = "sentence-transformers/all-MiniLM-L6-v2"
|
| 17 |
|
|
|
|
| 11 |
# --- Configuration & Constants ---
|
| 12 |
PAGE_TITLE = "Manga & TV Assistant"
|
| 13 |
DATA_DIRECTORY = "corpus"
|
| 14 |
+
CACHE_FILE = "/home/user/app/embeddings_cache.npz" # Cache file path
|
| 15 |
DEFAULT_LLM_MODEL = "meta-llama/Llama-3.1-8B-Instruct"
|
| 16 |
EMBEDDING_MODEL_NAME = "sentence-transformers/all-MiniLM-L6-v2"
|
| 17 |
|