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