Spaces:
Build error
Build error
File size: 378 Bytes
c47212f |
1 2 3 4 5 6 7 8 9 10 11 |
from langchain_community.embeddings.ollama import OllamaEmbeddings
from langchain_community.embeddings.bedrock import BedrockEmbeddings
#
def get_embedding_function():
# embeddings = BedrockEmbeddings(
# credentials_profile_name="default", region_name="us-east-1"
# )
embeddings = OllamaEmbeddings(model="nomic-embed-text")
return embeddings
|