portfolio-rag / get_embedding_function.py
Pranit4u's picture
Update get_embedding_function.py
ac97fe2 verified
raw
history blame contribute delete
No virus
289 Bytes
import os
from langchain_community.embeddings import HuggingFaceInferenceAPIEmbeddings
def get_embedding_function():
embeddings = HuggingFaceInferenceAPIEmbeddings(
api_key=os.environ.get("HUGGINGFACE_API_KEY"), model_name="BAAI/bge-small-en-v1.5"
)
return embeddings