LangChain - Embeddings and Vector Stores
What is the issue with this Langchain code snippet using an open-source embedding model?
from langchain.embeddings import HuggingFaceEmbeddings model = HuggingFaceEmbeddings() embedding = model.embed_query(12345)
