InkeyDevelopment commited on
Commit
14074f3
·
verified ·
1 Parent(s): 29f0a5e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -21,6 +21,8 @@ load_dotenv()
21
 
22
  app = Flask(__name__)
23
 
 
 
24
  # Load Model and FAISS Index
25
  model = SentenceTransformer("sentence-transformers/all-MiniLM-L6-v2")
26
  index = faiss.read_index("./faiss_index.bin")
 
21
 
22
  app = Flask(__name__)
23
 
24
+ os.environ["HF_HOME"] = "/app/hf_cache"
25
+ os.environ["TRANSFORMERS_CACHE"] = "/app/hf_cache"
26
  # Load Model and FAISS Index
27
  model = SentenceTransformer("sentence-transformers/all-MiniLM-L6-v2")
28
  index = faiss.read_index("./faiss_index.bin")