05. OllamaEmbeddings
texts = [
"Hello, nice to meet you.",
"LangChain simplifies the process of building applications with large language models",
"LangChain Korean Tutorial is the official documentation of LangChain, It is structured to help users utilize LangChain more easily and effectively, based on a cookbook and various practical examples.",
"LangChain simplifies the process of building applications with large language models.",
"Retrieval-Augmented Generation (RAG) is an effective technique for improving AI responses.",
]from langchain_community.embeddings import OllamaEmbeddings
ollama_embeddings = OllamaEmbeddings(
model="nomic-embed-text",
# model="chatfire/bge-m3:q8_0" # BGE-M3
)Last updated