Skip to main content
Open In ColabOpen on GitHub

如何创建自定义回调处理程序

Prerequisites

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

LangChain 有一些内置的回调处理程序,但你通常希望创建具有自定义逻辑的自己的处理程序。

要创建一个自定义回调处理程序,我们需要确定我们希望回调处理程序处理的事件以及当事件触发时我们希望回调处理程序执行的操作。然后,我们只需要将回调处理程序附加到对象上,例如通过构造函数在运行时

在下面的示例中,我们将使用自定义处理程序实现流式处理。

在我们的自定义回调处理程序 MyCustomHandler 中,我们实现了 on_llm_new_token 处理程序来打印我们刚刚收到的令牌。然后,我们将自定义处理程序作为构造函数回调附加到模型对象上。

from langchain_anthropic import ChatAnthropic
from langchain_core.callbacks import BaseCallbackHandler
from langchain_core.prompts import ChatPromptTemplate


class MyCustomHandler(BaseCallbackHandler):
def on_llm_new_token(self, token: str, **kwargs) -> None:
print(f"My custom handler, token: {token}")


prompt = ChatPromptTemplate.from_messages(["Tell me a joke about {animal}"])

# To enable streaming, we pass in `streaming=True` to the ChatModel constructor
# Additionally, we pass in our custom handler as a list to the callbacks parameter
model = ChatAnthropic(
model="claude-3-sonnet-20240229", streaming=True, callbacks=[MyCustomHandler()]
)

chain = prompt | model

response = chain.invoke({"animal": "bears"})
My custom handler, token: Here
My custom handler, token: 's
My custom handler, token: a
My custom handler, token: bear
My custom handler, token: joke
My custom handler, token: for
My custom handler, token: you
My custom handler, token: :
My custom handler, token:

Why
My custom handler, token: di
My custom handler, token: d the
My custom handler, token: bear
My custom handler, token: dissol
My custom handler, token: ve
My custom handler, token: in
My custom handler, token: water
My custom handler, token: ?
My custom handler, token:
Because
My custom handler, token: it
My custom handler, token: was
My custom handler, token: a
My custom handler, token: polar
My custom handler, token: bear
My custom handler, token: !

你可以查看这个参考页面来获取你可以处理的事件列表。请注意,handle_chain_*事件会在大多数LCEL可运行对象中运行。

下一步

你现在已经学会了如何创建自己的自定义回调处理程序。

接下来,查看本节中的其他操作指南,例如如何将回调附加到可运行对象


这个页面有帮助吗?