Wasifjafri's picture
src error
ad1095f
raw
history blame
253 Bytes
from langchain_community.embeddings import HuggingFaceEmbeddings
from .config import EMBEDDING_MODEL, DEVICE
def get_embedding_model():
return HuggingFaceEmbeddings(
model_name=EMBEDDING_MODEL,
model_kwargs={"device": DEVICE}
)