Skip to main content
Open In ColabOpen on GitHub

自定义嵌入

LangChain 集成了许多第三方嵌入模型。在本指南中,我们将向您展示如何创建一个自定义的 Embedding 类,以防内置的类不存在。嵌入在自然语言处理应用中至关重要,因为它们将文本转换为算法可以理解的数字形式,从而实现诸如相似性搜索、文本分类和聚类等广泛应用。

使用标准的Embeddings接口实现嵌入将使您的嵌入能够在现有的LangChain抽象中使用(例如,作为支持VectorStore的嵌入或使用CacheBackedEmbeddings进行缓存)。

接口

当前的Embeddings抽象在LangChain中设计用于处理文本数据。在此实现中,输入是单个字符串或字符串列表,输出是数值数组(向量)的列表,其中每个向量表示输入文本在某个n维空间中的嵌入。

您的自定义嵌入必须实现以下方法:

方法/属性描述必需/可选
embed_documents(texts)为字符串列表生成嵌入。必需
embed_query(text)为单个文本查询生成嵌入。Required
aembed_documents(texts)异步生成字符串列表的嵌入。可选
aembed_query(text)异步生成单个文本查询的嵌入。可选

这些方法确保您的嵌入模型可以无缝集成到LangChain框架中,提供同步和异步功能以实现可扩展性和性能优化。

note

Embeddings 目前没有实现 Runnable 接口,并且也不是 pydantic BaseModel 的实例。

嵌入查询与文档

embed_queryembed_documents 方法是必需的。这些方法都操作字符串输入。出于历史原因,向量存储使用嵌入模型处理 Document.page_content 属性的访问。

embed_query 接收一个字符串并返回一个嵌入作为浮点数列表。 如果你的模型在嵌入查询和底层文档时有不同的模式,你可以 实现这个方法来处理这种情况。

embed_documents 接收一个字符串列表并返回一个嵌入列表,作为浮点数列表的列表。

note

embed_documents 接收的是纯文本列表,而不是 LangChain Document 对象的列表。此方法的名称在 LangChain 的未来版本中可能会更改。

实现

例如,我们将实现一个返回常量向量的简单嵌入模型。此模型仅用于说明目的。

from typing import List

from langchain_core.embeddings import Embeddings


class ParrotLinkEmbeddings(Embeddings):
"""ParrotLink embedding model integration.

# TODO: Populate with relevant params.
Key init args — completion params:
model: str
Name of ParrotLink model to use.

See full list of supported init args and their descriptions in the params section.

# TODO: Replace with relevant init params.
Instantiate:
.. code-block:: python

from langchain_parrot_link import ParrotLinkEmbeddings

embed = ParrotLinkEmbeddings(
model="...",
# api_key="...",
# other params...
)

Embed single text:
.. code-block:: python

input_text = "The meaning of life is 42"
embed.embed_query(input_text)

.. code-block:: python

# TODO: Example output.

# TODO: Delete if token-level streaming isn't supported.
Embed multiple text:
.. code-block:: python

input_texts = ["Document 1...", "Document 2..."]
embed.embed_documents(input_texts)

.. code-block:: python

# TODO: Example output.

# TODO: Delete if native async isn't supported.
Async:
.. code-block:: python

await embed.aembed_query(input_text)

# multiple:
# await embed.aembed_documents(input_texts)

.. code-block:: python

# TODO: Example output.

"""

def __init__(self, model: str):
self.model = model

def embed_documents(self, texts: List[str]) -> List[List[float]]:
"""Embed search docs."""
return [[0.5, 0.6, 0.7] for _ in texts]

def embed_query(self, text: str) -> List[float]:
"""Embed query text."""
return self.embed_documents([text])[0]

# optional: add custom async implementations here
# you can also delete these, and the base class will
# use the default implementation, which calls the sync
# version in an async executor:

# async def aembed_documents(self, texts: List[str]) -> List[List[float]]:
# """Asynchronous Embed search docs."""
# ...

# async def aembed_query(self, text: str) -> List[float]:
# """Asynchronous Embed query text."""
# ...
API Reference:Embeddings

让我们测试一下 🧪

embeddings = ParrotLinkEmbeddings("test-model")
print(embeddings.embed_documents(["Hello", "world"]))
print(embeddings.embed_query("Hello"))
[[0.5, 0.6, 0.7], [0.5, 0.6, 0.7]]
[0.5, 0.6, 0.7]

贡献

我们欢迎向LangChain代码库贡献嵌入模型。

如果您旨在为新提供商贡献一个嵌入模型(例如,使用一组新的依赖项或SDK),我们鼓励您在单独的langchain-*集成包中发布您的实现。这将使您能够适当地管理依赖项并为您的包进行版本控制。请参考我们的贡献指南以了解此过程的详细步骤。


这个页面有帮助吗?