Skip to main content

如何运行自定义函数

先决条件

本指南假定您熟悉以下概念:

您可以将任意函数用作可运行对象。这在格式化或需要其他 LangChain 组件未提供的功能时非常有用,自定义函数用作可运行对象时被称为RunnableLambdas

请注意,这些函数的所有输入都需要是一个单一参数。如果您有一个接受多个参数的函数,您应该编写一个接受单个字典输入并将其解包为多个参数的包装器。

本指南将涵盖:

  • 如何使用 RunnableLambda 构造函数和便利的 @chain 装饰器明确地从自定义函数创建可运行对象

  • 在链中使用自定义函数时的自动转换为可运行对象

  • 如何接受并使用您自定义函数中的运行元数据

  • 通过使其返回生成器来使用自定义函数进行流处理

使用构造函数

以下是我们使用 RunnableLambda 构造函数明确包装自定义逻辑的示例:

%pip install -qU langchain langchain_openai
import os
from getpass import getpass
os.environ["OPENAI_API_KEY"] = getpass()
from operator import itemgetter
from langchain_core.prompts import ChatPromptTemplate
from langchain_core.runnables import RunnableLambda
from langchain_openai import ChatOpenAI
def length_function(text):
return len(text)
def _multiple_length_function(text1, text2):
return len(text1) * len(text2)
def multiple_length_function(_dict):
return _multiple_length_function(_dict["text1"], _dict["text2"])
model = ChatOpenAI()
prompt = ChatPromptTemplate.from_template("what is {a} + {b}")
chain1 = prompt | model
chain = (
{
"a": itemgetter("foo") | RunnableLambda(length_function),
"b": {"text1": itemgetter("foo"), "text2": itemgetter("bar")}
| RunnableLambda(multiple_length_function),
}
| prompt
| model
)
chain.invoke({"foo": "bar", "bar": "gah"})
AIMessage(content='3 + 9 equals 12.', response_metadata={'token_usage': {'completion_tokens': 8, 'prompt_tokens': 14, 'total_tokens': 22}, 'model_name': 'gpt-3.5-turbo', 'system_fingerprint': 'fp_c2295e73ad', 'finish_reason': 'stop', 'logprobs': None}, id='run-73728de3-e483-49e3-ad54-51bd9570e71a-0')

便利的 @chain 装饰器

您还可以通过添加 @chain 装饰器将任意函数转换为链。这在功能上等同于将函数包装在上面显示的 RunnableLambda 构造函数中。以下是一个示例:

from langchain_core.output_parsers import StrOutputParser
from langchain_core.runnables import chain
prompt1 = ChatPromptTemplate.from_template("Tell me a joke about {topic}")
prompt2 = ChatPromptTemplate.from_template("What is the subject of this joke: {joke}")
@chain
def custom_chain(text):
prompt_val1 = prompt1.invoke({"topic": text})
output1 = ChatOpenAI().invoke(prompt_val1)
parsed_output1 = StrOutputParser().invoke(output1)
chain2 = prompt2 | ChatOpenAI() | StrOutputParser()
return chain2.invoke({"joke": parsed_output1})
custom_chain.invoke("bears")
'The subject of the joke is the bear and his girlfriend.'

在上面的示例中,@chain 装饰器用于将 custom_chain 转换为可运行对象,我们使用 .invoke() 方法调用它。

如果您正在使用 LangSmith 进行跟踪,您应该在其中看到一个 custom_chain 跟踪,其中包含嵌套在其下的对 OpenAI 的调用。

链中的自动转换

在使用自定义函数与管道运算符 (|) 的链时,您可以省略 RunnableLambda@chain 构造函数,依赖于自动转换。以下是一个简单示例,其中函数接受模型的输出并返回其前五个字母:

prompt = ChatPromptTemplate.from_template("tell me a story about {topic}")
model = ChatOpenAI()
chain_with_coerced_function = prompt | model | (lambda x: x.content[:5])
chain_with_coerced_function.invoke({"topic": "bears"})
'Once '

请注意,我们无需将自定义函数 (lambda x: x.content[:5]) 包装在 RunnableLambda 构造函数中,因为管道操作符左侧的 model 已经是可运行的。自定义函数被强制转换为可运行的函数。有关更多信息,请参阅此部分

传递运行元数据

Runnable lambdas 可以选择接受一个 RunnableConfig 参数,它们可以使用该参数将回调、标签和其他配置信息传递给嵌套运行。

import json
from langchain_core.runnables import RunnableConfig
def parse_or_fix(text: str, config: RunnableConfig):
fixing_chain = (
ChatPromptTemplate.from_template(
"Fix the following text:\n\n```text\n{input}\n```\nError: {error}"
" Don't narrate, just respond with the fixed data."
)
| model
| StrOutputParser()
)
for _ in range(3):
try:
return json.loads(text)
except Exception as e:
text = fixing_chain.invoke({"input": text, "error": e}, config)
return "Failed to parse"
from langchain_community.callbacks import get_openai_callback
with get_openai_callback() as cb:
output = RunnableLambda(parse_or_fix).invoke(
"{foo: bar}", {"tags": ["my-tag"], "callbacks": [cb]}
)
print(output)
print(cb)
{'foo': 'bar'}
Tokens Used: 62
Prompt Tokens: 56
Completion Tokens: 6
Successful Requests: 1
Total Cost (USD): $9.6e-05
from langchain_community.callbacks import get_openai_callback
with get_openai_callback() as cb:
output = RunnableLambda(parse_or_fix).invoke(
"{foo: bar}", {"tags": ["my-tag"], "callbacks": [cb]}
)
print(output)
print(cb)
{'foo': 'bar'}
Tokens Used: 62
Prompt Tokens: 56
Completion Tokens: 6
Successful Requests: 1
Total Cost (USD): $9.6e-05

流式处理

您可以在链中使用生成器函数(即使用 yield 关键字的函数,行为类似迭代器)。

这些生成器的签名应为 Iterator[Input] -> Iterator[Output]。或者对于异步生成器:AsyncIterator[Input] -> AsyncIterator[Output]

这些对于以下情况很有用:

  • 实现自定义输出解析器

  • 修改先前步骤的输出,同时保留流式处理功能

下面是一个用于逗号分隔列表的自定义输出解析器示例。首先,我们创建一个生成此类列表文本的链:

from typing import Iterator, List
prompt = ChatPromptTemplate.from_template(
"Write a comma-separated list of 5 animals similar to: {animal}. Do not include numbers"
)
str_chain = prompt | model | StrOutputParser()
for chunk in str_chain.stream({"animal": "bear"}):
print(chunk, end="", flush=True)
lion, tiger, wolf, gorilla, panda

接下来,我们定义一个自定义函数,它将聚合当前流式输出并在模型生成列表中的下一个逗号时产生输出:

# This is a custom parser that splits an iterator of llm tokens
# into a list of strings separated by commas
def split_into_list(input: Iterator[str]) -> Iterator[List[str]]:
# hold partial input until we get a comma
buffer = ""
for chunk in input:
# add current chunk to buffer
buffer += chunk
# while there are commas in the buffer
while "," in buffer:
# split buffer on comma
comma_index = buffer.index(",")
# yield everything before the comma
yield [buffer[:comma_index].strip()]
# save the rest for the next iteration
buffer = buffer[comma_index + 1 :]
# yield the last chunk
yield [buffer.strip()]
list_chain = str_chain | split_into_list
for chunk in list_chain.stream({"animal": "bear"}):
print(chunk, flush=True)
['lion']
['tiger']
['wolf']
['gorilla']
['raccoon']

调用它会给出完整的值数组:

list_chain.invoke({"animal": "bear"})
['lion', 'tiger', 'wolf', 'gorilla', 'raccoon']

异步版本

如果您在一个 async 环境中工作,这里是上述示例的 async 版本:

from typing import AsyncIterator
async def asplit_into_list(
input: AsyncIterator[str],
) -> AsyncIterator[List[str]]: # async def
buffer = ""
async for (
chunk
) in input: # `input` is a `async_generator` object, so use `async for`
buffer += chunk
while "," in buffer:
comma_index = buffer.index(",")
yield [buffer[:comma_index].strip()]
buffer = buffer[comma_index + 1 :]
yield [buffer.strip()]
list_chain = str_chain | asplit_into_list
async for chunk in list_chain.astream({"animal": "bear"}):
print(chunk, flush=True)
['狮子']
['老虎']
['狼']
['大猩猩']
['熊猫']
await list_chain.ainvoke({"animal": "熊"})
['狮子', '老虎', '狼', '大猩猩', '熊猫']

下一步

现在您已经学会了如何在链中使用自定义逻辑的几种不同方式,以及如何实现流处理。

要了解更多信息,请参阅本节中有关可运行项的其他操作指南。



Was this page helpful?


You can leave detailed feedback on GitHub.