LangChain - Embeddings and Vector Stores
What will be the output type of this code snippet using an open-source embedding model in Langchain?
from langchain.embeddings import HuggingFaceEmbeddings
model = HuggingFaceEmbeddings()
embedding = model.embed_query("Hello world")
print(type(embedding))