nikos99n commited on
Commit
7f6c0f8
·
verified ·
1 Parent(s): b2b3e33

change cache file dir

Browse files
Files changed (1) hide show
  1. 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