forked from Rockachopa/Timmy-time-dashboard
Remove unused deps from poetry build, speed test suite to ~16s (#130)
This commit is contained in:
committed by
GitHub
parent
f2dacf4ee0
commit
e8f1dea3ec
@@ -37,6 +37,10 @@ def _get_embedding_model():
|
||||
"""Lazy-load embedding model."""
|
||||
global EMBEDDING_MODEL
|
||||
if EMBEDDING_MODEL is None:
|
||||
import os
|
||||
if os.environ.get("TIMMY_SKIP_EMBEDDINGS") == "1":
|
||||
EMBEDDING_MODEL = False
|
||||
return EMBEDDING_MODEL
|
||||
try:
|
||||
from sentence_transformers import SentenceTransformer
|
||||
EMBEDDING_MODEL = SentenceTransformer('all-MiniLM-L6-v2')
|
||||
|
||||
Reference in New Issue
Block a user