langchain_core.embeddings.Embeddings

class langchain_core.embeddings.Embeddings[source]

Interface for embedding models.

Methods

__init__()

aembed_documents(texts)

Asynchronous Embed search docs.

aembed_query(text)

Asynchronous Embed query text.

embed_documents(texts)

Embed search docs.

embed_query(text)

Embed query text.

__init__()
async aembed_documents(texts: List[str]) List[List[float]][source]

Asynchronous Embed search docs.

async aembed_query(text: str) List[float][source]

Asynchronous Embed query text.

abstract embed_documents(texts: List[str]) List[List[float]][source]

Embed search docs.

abstract embed_query(text: str) List[float][source]

Embed query text.