Skip to main content

Fake Embeddings

LangChain also provides a fake embedding class. You can use this to test your pipelines.

from langchain_community.embeddings import FakeEmbeddings

API Reference:

embeddings = FakeEmbeddings(size=1352)
query_result = embeddings.embed_query("foo")
doc_results = embeddings.embed_documents(["foo"])

Help us out by providing feedback on this documentation page: