mirror of
https://github.com/Mintplex-Labs/langchain-python.git
synced 2026-07-18 18:34:27 -04:00
98dbea6310
<!-- Thank you for contributing to LangChain! Replace this comment with: - Description: a description of the change, - Issue: the issue # it fixes (if applicable), - Dependencies: any dependencies required for this change, - Tag maintainer: for a quicker response, tag the relevant maintainer (see below), - Twitter handle: we announce bigger features on Twitter. If your PR gets announced and you'd like a mention, we'll gladly shout you out! If you're adding a new integration, please include: 1. a test for the integration, preferably unit tests that do not rely on network access, 2. an example notebook showing its use. Maintainer responsibilities: - General / Misc / if you don't know who to tag: @dev2049 - DataLoaders / VectorStores / Retrievers: @rlancemartin, @eyurtsev - Models / Prompts: @hwchase17, @dev2049 - Memory: @hwchase17 - Agents / Tools / Toolkits: @vowelparrot - Tracing / Callbacks: @agola11 - Async: @agola11 If no one reviews your PR within a few days, feel free to @-mention the same people again. See contribution guidelines for more information on how to write/run tests, lint, etc: https://github.com/hwchase17/langchain/blob/master/.github/CONTRIBUTING.md -->
1683 lines
49 KiB
Python
1683 lines
49 KiB
Python
from __future__ import annotations
|
|
|
|
import asyncio
|
|
import functools
|
|
import logging
|
|
import os
|
|
import warnings
|
|
from contextlib import asynccontextmanager, contextmanager
|
|
from contextvars import ContextVar
|
|
from typing import (
|
|
Any,
|
|
AsyncGenerator,
|
|
Dict,
|
|
Generator,
|
|
List,
|
|
Optional,
|
|
Sequence,
|
|
Type,
|
|
TypeVar,
|
|
Union,
|
|
cast,
|
|
)
|
|
from uuid import UUID, uuid4
|
|
|
|
import langchain
|
|
from langchain.callbacks.base import (
|
|
BaseCallbackHandler,
|
|
BaseCallbackManager,
|
|
ChainManagerMixin,
|
|
LLMManagerMixin,
|
|
RetrieverManagerMixin,
|
|
RunManagerMixin,
|
|
ToolManagerMixin,
|
|
)
|
|
from langchain.callbacks.openai_info import OpenAICallbackHandler
|
|
from langchain.callbacks.stdout import StdOutCallbackHandler
|
|
from langchain.callbacks.tracers.langchain import LangChainTracer
|
|
from langchain.callbacks.tracers.langchain_v1 import LangChainTracerV1, TracerSessionV1
|
|
from langchain.callbacks.tracers.stdout import ConsoleCallbackHandler
|
|
from langchain.callbacks.tracers.wandb import WandbTracer
|
|
from langchain.schema import (
|
|
AgentAction,
|
|
AgentFinish,
|
|
Document,
|
|
LLMResult,
|
|
)
|
|
from langchain.schema.messages import BaseMessage, get_buffer_string
|
|
|
|
logger = logging.getLogger(__name__)
|
|
Callbacks = Optional[Union[List[BaseCallbackHandler], BaseCallbackManager]]
|
|
|
|
openai_callback_var: ContextVar[Optional[OpenAICallbackHandler]] = ContextVar(
|
|
"openai_callback", default=None
|
|
)
|
|
tracing_callback_var: ContextVar[
|
|
Optional[LangChainTracerV1]
|
|
] = ContextVar( # noqa: E501
|
|
"tracing_callback", default=None
|
|
)
|
|
wandb_tracing_callback_var: ContextVar[
|
|
Optional[WandbTracer]
|
|
] = ContextVar( # noqa: E501
|
|
"tracing_wandb_callback", default=None
|
|
)
|
|
|
|
tracing_v2_callback_var: ContextVar[
|
|
Optional[LangChainTracer]
|
|
] = ContextVar( # noqa: E501
|
|
"tracing_callback_v2", default=None
|
|
)
|
|
|
|
|
|
def _get_debug() -> bool:
|
|
return langchain.debug
|
|
|
|
|
|
@contextmanager
|
|
def get_openai_callback() -> Generator[OpenAICallbackHandler, None, None]:
|
|
"""Get the OpenAI callback handler in a context manager.
|
|
which conveniently exposes token and cost information.
|
|
|
|
Returns:
|
|
OpenAICallbackHandler: The OpenAI callback handler.
|
|
|
|
Example:
|
|
>>> with get_openai_callback() as cb:
|
|
... # Use the OpenAI callback handler
|
|
"""
|
|
cb = OpenAICallbackHandler()
|
|
openai_callback_var.set(cb)
|
|
yield cb
|
|
openai_callback_var.set(None)
|
|
|
|
|
|
@contextmanager
|
|
def tracing_enabled(
|
|
session_name: str = "default",
|
|
) -> Generator[TracerSessionV1, None, None]:
|
|
"""Get the Deprecated LangChainTracer in a context manager.
|
|
|
|
Args:
|
|
session_name (str, optional): The name of the session.
|
|
Defaults to "default".
|
|
|
|
Returns:
|
|
TracerSessionV1: The LangChainTracer session.
|
|
|
|
Example:
|
|
>>> with tracing_enabled() as session:
|
|
... # Use the LangChainTracer session
|
|
"""
|
|
cb = LangChainTracerV1()
|
|
session = cast(TracerSessionV1, cb.load_session(session_name))
|
|
tracing_callback_var.set(cb)
|
|
yield session
|
|
tracing_callback_var.set(None)
|
|
|
|
|
|
@contextmanager
|
|
def wandb_tracing_enabled(
|
|
session_name: str = "default",
|
|
) -> Generator[None, None, None]:
|
|
"""Get the WandbTracer in a context manager.
|
|
|
|
Args:
|
|
session_name (str, optional): The name of the session.
|
|
Defaults to "default".
|
|
|
|
Returns:
|
|
None
|
|
|
|
Example:
|
|
>>> with wandb_tracing_enabled() as session:
|
|
... # Use the WandbTracer session
|
|
"""
|
|
cb = WandbTracer()
|
|
wandb_tracing_callback_var.set(cb)
|
|
yield None
|
|
wandb_tracing_callback_var.set(None)
|
|
|
|
|
|
@contextmanager
|
|
def tracing_v2_enabled(
|
|
project_name: Optional[str] = None,
|
|
*,
|
|
example_id: Optional[Union[str, UUID]] = None,
|
|
) -> Generator[None, None, None]:
|
|
"""Instruct LangChain to log all runs in context to LangSmith.
|
|
|
|
Args:
|
|
project_name (str, optional): The name of the project.
|
|
Defaults to "default".
|
|
example_id (str or UUID, optional): The ID of the example.
|
|
Defaults to None.
|
|
|
|
Returns:
|
|
None
|
|
|
|
Example:
|
|
>>> with tracing_v2_enabled():
|
|
... # LangChain code will automatically be traced
|
|
"""
|
|
# Issue a warning that this is experimental
|
|
warnings.warn(
|
|
"The tracing v2 API is in development. "
|
|
"This is not yet stable and may change in the future."
|
|
)
|
|
if isinstance(example_id, str):
|
|
example_id = UUID(example_id)
|
|
cb = LangChainTracer(
|
|
example_id=example_id,
|
|
project_name=project_name,
|
|
)
|
|
tracing_v2_callback_var.set(cb)
|
|
yield
|
|
tracing_v2_callback_var.set(None)
|
|
|
|
|
|
@contextmanager
|
|
def trace_as_chain_group(
|
|
group_name: str,
|
|
*,
|
|
project_name: Optional[str] = None,
|
|
example_id: Optional[Union[str, UUID]] = None,
|
|
tags: Optional[List[str]] = None,
|
|
) -> Generator[CallbackManager, None, None]:
|
|
"""Get a callback manager for a chain group in a context manager.
|
|
Useful for grouping different calls together as a single run even if
|
|
they aren't composed in a single chain.
|
|
|
|
Args:
|
|
group_name (str): The name of the chain group.
|
|
project_name (str, optional): The name of the project.
|
|
Defaults to None.
|
|
example_id (str or UUID, optional): The ID of the example.
|
|
Defaults to None.
|
|
tags (List[str], optional): The inheritable tags to apply to all runs.
|
|
Defaults to None.
|
|
|
|
Returns:
|
|
CallbackManager: The callback manager for the chain group.
|
|
|
|
Example:
|
|
>>> with trace_as_chain_group("group_name") as manager:
|
|
... # Use the callback manager for the chain group
|
|
... llm.predict("Foo", callbacks=manager)
|
|
"""
|
|
cb = LangChainTracer(
|
|
project_name=project_name,
|
|
example_id=example_id,
|
|
)
|
|
cm = CallbackManager.configure(
|
|
inheritable_callbacks=[cb],
|
|
inheritable_tags=tags,
|
|
)
|
|
|
|
run_manager = cm.on_chain_start({"name": group_name}, {})
|
|
yield run_manager.get_child()
|
|
run_manager.on_chain_end({})
|
|
|
|
|
|
@asynccontextmanager
|
|
async def atrace_as_chain_group(
|
|
group_name: str,
|
|
*,
|
|
project_name: Optional[str] = None,
|
|
example_id: Optional[Union[str, UUID]] = None,
|
|
tags: Optional[List[str]] = None,
|
|
) -> AsyncGenerator[AsyncCallbackManager, None]:
|
|
"""Get an async callback manager for a chain group in a context manager.
|
|
Useful for grouping different async calls together as a single run even if
|
|
they aren't composed in a single chain.
|
|
|
|
Args:
|
|
group_name (str): The name of the chain group.
|
|
project_name (str, optional): The name of the project.
|
|
Defaults to None.
|
|
example_id (str or UUID, optional): The ID of the example.
|
|
Defaults to None.
|
|
tags (List[str], optional): The inheritable tags to apply to all runs.
|
|
Defaults to None.
|
|
Returns:
|
|
AsyncCallbackManager: The async callback manager for the chain group.
|
|
|
|
Example:
|
|
>>> async with atrace_as_chain_group("group_name") as manager:
|
|
... # Use the async callback manager for the chain group
|
|
... await llm.apredict("Foo", callbacks=manager)
|
|
"""
|
|
cb = LangChainTracer(
|
|
project_name=project_name,
|
|
example_id=example_id,
|
|
)
|
|
cm = AsyncCallbackManager.configure(
|
|
inheritable_callbacks=[cb], inheritable_tags=tags
|
|
)
|
|
|
|
run_manager = await cm.on_chain_start({"name": group_name}, {})
|
|
try:
|
|
yield run_manager.get_child()
|
|
finally:
|
|
await run_manager.on_chain_end({})
|
|
|
|
|
|
def _handle_event(
|
|
handlers: List[BaseCallbackHandler],
|
|
event_name: str,
|
|
ignore_condition_name: Optional[str],
|
|
*args: Any,
|
|
**kwargs: Any,
|
|
) -> None:
|
|
"""Generic event handler for CallbackManager."""
|
|
message_strings: Optional[List[str]] = None
|
|
for handler in handlers:
|
|
try:
|
|
if ignore_condition_name is None or not getattr(
|
|
handler, ignore_condition_name
|
|
):
|
|
getattr(handler, event_name)(*args, **kwargs)
|
|
except NotImplementedError as e:
|
|
if event_name == "on_chat_model_start":
|
|
if message_strings is None:
|
|
message_strings = [get_buffer_string(m) for m in args[1]]
|
|
_handle_event(
|
|
[handler],
|
|
"on_llm_start",
|
|
"ignore_llm",
|
|
args[0],
|
|
message_strings,
|
|
*args[2:],
|
|
**kwargs,
|
|
)
|
|
else:
|
|
logger.warning(
|
|
f"Error in {handler.__class__.__name__}.{event_name} callback: {e}"
|
|
)
|
|
except Exception as e:
|
|
logger.warning(
|
|
f"Error in {handler.__class__.__name__}.{event_name} callback: {e}"
|
|
)
|
|
if handler.raise_error:
|
|
raise e
|
|
|
|
|
|
async def _ahandle_event_for_handler(
|
|
handler: BaseCallbackHandler,
|
|
event_name: str,
|
|
ignore_condition_name: Optional[str],
|
|
*args: Any,
|
|
**kwargs: Any,
|
|
) -> None:
|
|
try:
|
|
if ignore_condition_name is None or not getattr(handler, ignore_condition_name):
|
|
event = getattr(handler, event_name)
|
|
if asyncio.iscoroutinefunction(event):
|
|
await event(*args, **kwargs)
|
|
else:
|
|
if handler.run_inline:
|
|
event(*args, **kwargs)
|
|
else:
|
|
await asyncio.get_event_loop().run_in_executor(
|
|
None, functools.partial(event, *args, **kwargs)
|
|
)
|
|
except NotImplementedError as e:
|
|
if event_name == "on_chat_model_start":
|
|
message_strings = [get_buffer_string(m) for m in args[1]]
|
|
await _ahandle_event_for_handler(
|
|
handler,
|
|
"on_llm_start",
|
|
"ignore_llm",
|
|
args[0],
|
|
message_strings,
|
|
*args[2:],
|
|
**kwargs,
|
|
)
|
|
else:
|
|
logger.warning(
|
|
f"Error in {handler.__class__.__name__}.{event_name} callback: {e}"
|
|
)
|
|
except Exception as e:
|
|
logger.warning(
|
|
f"Error in {handler.__class__.__name__}.{event_name} callback: {e}"
|
|
)
|
|
if handler.raise_error:
|
|
raise e
|
|
|
|
|
|
async def _ahandle_event(
|
|
handlers: List[BaseCallbackHandler],
|
|
event_name: str,
|
|
ignore_condition_name: Optional[str],
|
|
*args: Any,
|
|
**kwargs: Any,
|
|
) -> None:
|
|
"""Generic event handler for AsyncCallbackManager."""
|
|
for handler in [h for h in handlers if h.run_inline]:
|
|
await _ahandle_event_for_handler(
|
|
handler, event_name, ignore_condition_name, *args, **kwargs
|
|
)
|
|
await asyncio.gather(
|
|
*(
|
|
_ahandle_event_for_handler(
|
|
handler, event_name, ignore_condition_name, *args, **kwargs
|
|
)
|
|
for handler in handlers
|
|
if not handler.run_inline
|
|
)
|
|
)
|
|
|
|
|
|
BRM = TypeVar("BRM", bound="BaseRunManager")
|
|
|
|
|
|
class BaseRunManager(RunManagerMixin):
|
|
"""Base class for run manager (a bound callback manager)."""
|
|
|
|
def __init__(
|
|
self,
|
|
*,
|
|
run_id: UUID,
|
|
handlers: List[BaseCallbackHandler],
|
|
inheritable_handlers: List[BaseCallbackHandler],
|
|
parent_run_id: Optional[UUID] = None,
|
|
tags: Optional[List[str]] = None,
|
|
inheritable_tags: Optional[List[str]] = None,
|
|
) -> None:
|
|
"""Initialize the run manager.
|
|
|
|
Args:
|
|
run_id (UUID): The ID of the run.
|
|
handlers (List[BaseCallbackHandler]): The list of handlers.
|
|
inheritable_handlers (List[BaseCallbackHandler]):
|
|
The list of inheritable handlers.
|
|
parent_run_id (UUID, optional): The ID of the parent run.
|
|
Defaults to None.
|
|
tags (Optional[List[str]]): The list of tags.
|
|
inheritable_tags (Optional[List[str]]): The list of inheritable tags.
|
|
"""
|
|
self.run_id = run_id
|
|
self.handlers = handlers
|
|
self.inheritable_handlers = inheritable_handlers
|
|
self.parent_run_id = parent_run_id
|
|
self.tags = tags or []
|
|
self.inheritable_tags = inheritable_tags or []
|
|
|
|
@classmethod
|
|
def get_noop_manager(cls: Type[BRM]) -> BRM:
|
|
"""Return a manager that doesn't perform any operations.
|
|
|
|
Returns:
|
|
BaseRunManager: The noop manager.
|
|
"""
|
|
return cls(
|
|
run_id=uuid4(),
|
|
handlers=[],
|
|
inheritable_handlers=[],
|
|
tags=[],
|
|
inheritable_tags=[],
|
|
)
|
|
|
|
|
|
class RunManager(BaseRunManager):
|
|
"""Sync Run Manager."""
|
|
|
|
def on_text(
|
|
self,
|
|
text: str,
|
|
**kwargs: Any,
|
|
) -> Any:
|
|
"""Run when text is received.
|
|
|
|
Args:
|
|
text (str): The received text.
|
|
|
|
Returns:
|
|
Any: The result of the callback.
|
|
"""
|
|
_handle_event(
|
|
self.handlers,
|
|
"on_text",
|
|
None,
|
|
text,
|
|
run_id=self.run_id,
|
|
parent_run_id=self.parent_run_id,
|
|
tags=self.tags,
|
|
**kwargs,
|
|
)
|
|
|
|
|
|
class AsyncRunManager(BaseRunManager):
|
|
"""Async Run Manager."""
|
|
|
|
async def on_text(
|
|
self,
|
|
text: str,
|
|
**kwargs: Any,
|
|
) -> Any:
|
|
"""Run when text is received.
|
|
|
|
Args:
|
|
text (str): The received text.
|
|
|
|
Returns:
|
|
Any: The result of the callback.
|
|
"""
|
|
await _ahandle_event(
|
|
self.handlers,
|
|
"on_text",
|
|
None,
|
|
text,
|
|
run_id=self.run_id,
|
|
parent_run_id=self.parent_run_id,
|
|
tags=self.tags,
|
|
**kwargs,
|
|
)
|
|
|
|
|
|
class CallbackManagerForLLMRun(RunManager, LLMManagerMixin):
|
|
"""Callback manager for LLM run."""
|
|
|
|
def on_llm_new_token(
|
|
self,
|
|
token: str,
|
|
**kwargs: Any,
|
|
) -> None:
|
|
"""Run when LLM generates a new token.
|
|
|
|
Args:
|
|
token (str): The new token.
|
|
"""
|
|
_handle_event(
|
|
self.handlers,
|
|
"on_llm_new_token",
|
|
"ignore_llm",
|
|
token=token,
|
|
run_id=self.run_id,
|
|
parent_run_id=self.parent_run_id,
|
|
tags=self.tags,
|
|
**kwargs,
|
|
)
|
|
|
|
def on_llm_end(self, response: LLMResult, **kwargs: Any) -> None:
|
|
"""Run when LLM ends running.
|
|
|
|
Args:
|
|
response (LLMResult): The LLM result.
|
|
"""
|
|
_handle_event(
|
|
self.handlers,
|
|
"on_llm_end",
|
|
"ignore_llm",
|
|
response,
|
|
run_id=self.run_id,
|
|
parent_run_id=self.parent_run_id,
|
|
tags=self.tags,
|
|
**kwargs,
|
|
)
|
|
|
|
def on_llm_error(
|
|
self,
|
|
error: Union[Exception, KeyboardInterrupt],
|
|
**kwargs: Any,
|
|
) -> None:
|
|
"""Run when LLM errors.
|
|
|
|
Args:
|
|
error (Exception or KeyboardInterrupt): The error.
|
|
"""
|
|
_handle_event(
|
|
self.handlers,
|
|
"on_llm_error",
|
|
"ignore_llm",
|
|
error,
|
|
run_id=self.run_id,
|
|
parent_run_id=self.parent_run_id,
|
|
tags=self.tags,
|
|
**kwargs,
|
|
)
|
|
|
|
|
|
class AsyncCallbackManagerForLLMRun(AsyncRunManager, LLMManagerMixin):
|
|
"""Async callback manager for LLM run."""
|
|
|
|
async def on_llm_new_token(
|
|
self,
|
|
token: str,
|
|
**kwargs: Any,
|
|
) -> None:
|
|
"""Run when LLM generates a new token.
|
|
|
|
Args:
|
|
token (str): The new token.
|
|
"""
|
|
await _ahandle_event(
|
|
self.handlers,
|
|
"on_llm_new_token",
|
|
"ignore_llm",
|
|
token,
|
|
run_id=self.run_id,
|
|
parent_run_id=self.parent_run_id,
|
|
tags=self.tags,
|
|
**kwargs,
|
|
)
|
|
|
|
async def on_llm_end(self, response: LLMResult, **kwargs: Any) -> None:
|
|
"""Run when LLM ends running.
|
|
|
|
Args:
|
|
response (LLMResult): The LLM result.
|
|
"""
|
|
await _ahandle_event(
|
|
self.handlers,
|
|
"on_llm_end",
|
|
"ignore_llm",
|
|
response,
|
|
run_id=self.run_id,
|
|
parent_run_id=self.parent_run_id,
|
|
tags=self.tags,
|
|
**kwargs,
|
|
)
|
|
|
|
async def on_llm_error(
|
|
self,
|
|
error: Union[Exception, KeyboardInterrupt],
|
|
**kwargs: Any,
|
|
) -> None:
|
|
"""Run when LLM errors.
|
|
|
|
Args:
|
|
error (Exception or KeyboardInterrupt): The error.
|
|
"""
|
|
await _ahandle_event(
|
|
self.handlers,
|
|
"on_llm_error",
|
|
"ignore_llm",
|
|
error,
|
|
run_id=self.run_id,
|
|
parent_run_id=self.parent_run_id,
|
|
tags=self.tags,
|
|
**kwargs,
|
|
)
|
|
|
|
|
|
class CallbackManagerForChainRun(RunManager, ChainManagerMixin):
|
|
"""Callback manager for chain run."""
|
|
|
|
def get_child(self, tag: Optional[str] = None) -> CallbackManager:
|
|
"""Get a child callback manager.
|
|
|
|
Args:
|
|
tag (str, optional): The tag for the child callback manager.
|
|
Defaults to None.
|
|
|
|
Returns:
|
|
CallbackManager: The child callback manager.
|
|
"""
|
|
manager = CallbackManager(handlers=[], parent_run_id=self.run_id)
|
|
manager.set_handlers(self.inheritable_handlers)
|
|
manager.add_tags(self.inheritable_tags)
|
|
if tag is not None:
|
|
manager.add_tags([tag], False)
|
|
return manager
|
|
|
|
def on_chain_end(self, outputs: Dict[str, Any], **kwargs: Any) -> None:
|
|
"""Run when chain ends running.
|
|
|
|
Args:
|
|
outputs (Dict[str, Any]): The outputs of the chain.
|
|
"""
|
|
_handle_event(
|
|
self.handlers,
|
|
"on_chain_end",
|
|
"ignore_chain",
|
|
outputs,
|
|
run_id=self.run_id,
|
|
parent_run_id=self.parent_run_id,
|
|
tags=self.tags,
|
|
**kwargs,
|
|
)
|
|
|
|
def on_chain_error(
|
|
self,
|
|
error: Union[Exception, KeyboardInterrupt],
|
|
**kwargs: Any,
|
|
) -> None:
|
|
"""Run when chain errors.
|
|
|
|
Args:
|
|
error (Exception or KeyboardInterrupt): The error.
|
|
"""
|
|
_handle_event(
|
|
self.handlers,
|
|
"on_chain_error",
|
|
"ignore_chain",
|
|
error,
|
|
run_id=self.run_id,
|
|
parent_run_id=self.parent_run_id,
|
|
tags=self.tags,
|
|
**kwargs,
|
|
)
|
|
|
|
def on_agent_action(self, action: AgentAction, **kwargs: Any) -> Any:
|
|
"""Run when agent action is received.
|
|
|
|
Args:
|
|
action (AgentAction): The agent action.
|
|
|
|
Returns:
|
|
Any: The result of the callback.
|
|
"""
|
|
_handle_event(
|
|
self.handlers,
|
|
"on_agent_action",
|
|
"ignore_agent",
|
|
action,
|
|
run_id=self.run_id,
|
|
parent_run_id=self.parent_run_id,
|
|
tags=self.tags,
|
|
**kwargs,
|
|
)
|
|
|
|
def on_agent_finish(self, finish: AgentFinish, **kwargs: Any) -> Any:
|
|
"""Run when agent finish is received.
|
|
|
|
Args:
|
|
finish (AgentFinish): The agent finish.
|
|
|
|
Returns:
|
|
Any: The result of the callback.
|
|
"""
|
|
_handle_event(
|
|
self.handlers,
|
|
"on_agent_finish",
|
|
"ignore_agent",
|
|
finish,
|
|
run_id=self.run_id,
|
|
parent_run_id=self.parent_run_id,
|
|
tags=self.tags,
|
|
**kwargs,
|
|
)
|
|
|
|
|
|
class AsyncCallbackManagerForChainRun(AsyncRunManager, ChainManagerMixin):
|
|
"""Async callback manager for chain run."""
|
|
|
|
def get_child(self, tag: Optional[str] = None) -> AsyncCallbackManager:
|
|
"""Get a child callback manager.
|
|
|
|
Args:
|
|
tag (str, optional): The tag for the child callback manager.
|
|
Defaults to None.
|
|
|
|
Returns:
|
|
AsyncCallbackManager: The child callback manager.
|
|
"""
|
|
manager = AsyncCallbackManager(handlers=[], parent_run_id=self.run_id)
|
|
manager.set_handlers(self.inheritable_handlers)
|
|
manager.add_tags(self.inheritable_tags)
|
|
if tag is not None:
|
|
manager.add_tags([tag], False)
|
|
return manager
|
|
|
|
async def on_chain_end(self, outputs: Dict[str, Any], **kwargs: Any) -> None:
|
|
"""Run when chain ends running.
|
|
|
|
Args:
|
|
outputs (Dict[str, Any]): The outputs of the chain.
|
|
"""
|
|
await _ahandle_event(
|
|
self.handlers,
|
|
"on_chain_end",
|
|
"ignore_chain",
|
|
outputs,
|
|
run_id=self.run_id,
|
|
parent_run_id=self.parent_run_id,
|
|
tags=self.tags,
|
|
**kwargs,
|
|
)
|
|
|
|
async def on_chain_error(
|
|
self,
|
|
error: Union[Exception, KeyboardInterrupt],
|
|
**kwargs: Any,
|
|
) -> None:
|
|
"""Run when chain errors.
|
|
|
|
Args:
|
|
error (Exception or KeyboardInterrupt): The error.
|
|
"""
|
|
await _ahandle_event(
|
|
self.handlers,
|
|
"on_chain_error",
|
|
"ignore_chain",
|
|
error,
|
|
run_id=self.run_id,
|
|
parent_run_id=self.parent_run_id,
|
|
tags=self.tags,
|
|
**kwargs,
|
|
)
|
|
|
|
async def on_agent_action(self, action: AgentAction, **kwargs: Any) -> Any:
|
|
"""Run when agent action is received.
|
|
|
|
Args:
|
|
action (AgentAction): The agent action.
|
|
|
|
Returns:
|
|
Any: The result of the callback.
|
|
"""
|
|
await _ahandle_event(
|
|
self.handlers,
|
|
"on_agent_action",
|
|
"ignore_agent",
|
|
action,
|
|
run_id=self.run_id,
|
|
parent_run_id=self.parent_run_id,
|
|
tags=self.tags,
|
|
**kwargs,
|
|
)
|
|
|
|
async def on_agent_finish(self, finish: AgentFinish, **kwargs: Any) -> Any:
|
|
"""Run when agent finish is received.
|
|
|
|
Args:
|
|
finish (AgentFinish): The agent finish.
|
|
|
|
Returns:
|
|
Any: The result of the callback.
|
|
"""
|
|
await _ahandle_event(
|
|
self.handlers,
|
|
"on_agent_finish",
|
|
"ignore_agent",
|
|
finish,
|
|
run_id=self.run_id,
|
|
parent_run_id=self.parent_run_id,
|
|
tags=self.tags,
|
|
**kwargs,
|
|
)
|
|
|
|
|
|
class CallbackManagerForToolRun(RunManager, ToolManagerMixin):
|
|
"""Callback manager for tool run."""
|
|
|
|
def get_child(self, tag: Optional[str] = None) -> CallbackManager:
|
|
"""Get a child callback manager.
|
|
|
|
Args:
|
|
tag (str, optional): The tag for the child callback manager.
|
|
Defaults to None.
|
|
|
|
Returns:
|
|
CallbackManager: The child callback manager.
|
|
"""
|
|
manager = CallbackManager(handlers=[], parent_run_id=self.run_id)
|
|
manager.set_handlers(self.inheritable_handlers)
|
|
manager.add_tags(self.inheritable_tags)
|
|
if tag is not None:
|
|
manager.add_tags([tag], False)
|
|
return manager
|
|
|
|
def on_tool_end(
|
|
self,
|
|
output: str,
|
|
**kwargs: Any,
|
|
) -> None:
|
|
"""Run when tool ends running.
|
|
|
|
Args:
|
|
output (str): The output of the tool.
|
|
"""
|
|
_handle_event(
|
|
self.handlers,
|
|
"on_tool_end",
|
|
"ignore_agent",
|
|
output,
|
|
run_id=self.run_id,
|
|
parent_run_id=self.parent_run_id,
|
|
tags=self.tags,
|
|
**kwargs,
|
|
)
|
|
|
|
def on_tool_error(
|
|
self,
|
|
error: Union[Exception, KeyboardInterrupt],
|
|
**kwargs: Any,
|
|
) -> None:
|
|
"""Run when tool errors.
|
|
|
|
Args:
|
|
error (Exception or KeyboardInterrupt): The error.
|
|
"""
|
|
_handle_event(
|
|
self.handlers,
|
|
"on_tool_error",
|
|
"ignore_agent",
|
|
error,
|
|
run_id=self.run_id,
|
|
parent_run_id=self.parent_run_id,
|
|
tags=self.tags,
|
|
**kwargs,
|
|
)
|
|
|
|
|
|
class AsyncCallbackManagerForToolRun(AsyncRunManager, ToolManagerMixin):
|
|
"""Async callback manager for tool run."""
|
|
|
|
def get_child(self, tag: Optional[str] = None) -> AsyncCallbackManager:
|
|
"""Get a child callback manager.
|
|
|
|
Args:
|
|
tag (str, optional): The tag to add to the child
|
|
callback manager. Defaults to None.
|
|
|
|
Returns:
|
|
AsyncCallbackManager: The child callback manager.
|
|
"""
|
|
manager = AsyncCallbackManager(handlers=[], parent_run_id=self.run_id)
|
|
manager.set_handlers(self.inheritable_handlers)
|
|
manager.add_tags(self.inheritable_tags)
|
|
if tag is not None:
|
|
manager.add_tags([tag], False)
|
|
return manager
|
|
|
|
async def on_tool_end(self, output: str, **kwargs: Any) -> None:
|
|
"""Run when tool ends running.
|
|
|
|
Args:
|
|
output (str): The output of the tool.
|
|
"""
|
|
await _ahandle_event(
|
|
self.handlers,
|
|
"on_tool_end",
|
|
"ignore_agent",
|
|
output,
|
|
run_id=self.run_id,
|
|
parent_run_id=self.parent_run_id,
|
|
tags=self.tags,
|
|
**kwargs,
|
|
)
|
|
|
|
async def on_tool_error(
|
|
self,
|
|
error: Union[Exception, KeyboardInterrupt],
|
|
**kwargs: Any,
|
|
) -> None:
|
|
"""Run when tool errors.
|
|
|
|
Args:
|
|
error (Exception or KeyboardInterrupt): The error.
|
|
"""
|
|
await _ahandle_event(
|
|
self.handlers,
|
|
"on_tool_error",
|
|
"ignore_agent",
|
|
error,
|
|
run_id=self.run_id,
|
|
parent_run_id=self.parent_run_id,
|
|
tags=self.tags,
|
|
**kwargs,
|
|
)
|
|
|
|
|
|
class CallbackManagerForRetrieverRun(RunManager, RetrieverManagerMixin):
|
|
"""Callback manager for retriever run."""
|
|
|
|
def get_child(self, tag: Optional[str] = None) -> CallbackManager:
|
|
"""Get a child callback manager."""
|
|
manager = CallbackManager([], parent_run_id=self.run_id)
|
|
manager.set_handlers(self.inheritable_handlers)
|
|
manager.add_tags(self.inheritable_tags)
|
|
if tag is not None:
|
|
manager.add_tags([tag], False)
|
|
return manager
|
|
|
|
def on_retriever_end(
|
|
self,
|
|
documents: Sequence[Document],
|
|
**kwargs: Any,
|
|
) -> None:
|
|
"""Run when retriever ends running."""
|
|
_handle_event(
|
|
self.handlers,
|
|
"on_retriever_end",
|
|
"ignore_retriever",
|
|
documents,
|
|
run_id=self.run_id,
|
|
parent_run_id=self.parent_run_id,
|
|
tags=self.tags,
|
|
**kwargs,
|
|
)
|
|
|
|
def on_retriever_error(
|
|
self,
|
|
error: Union[Exception, KeyboardInterrupt],
|
|
**kwargs: Any,
|
|
) -> None:
|
|
"""Run when retriever errors."""
|
|
_handle_event(
|
|
self.handlers,
|
|
"on_retriever_error",
|
|
"ignore_retriever",
|
|
error,
|
|
run_id=self.run_id,
|
|
parent_run_id=self.parent_run_id,
|
|
tags=self.tags,
|
|
**kwargs,
|
|
)
|
|
|
|
|
|
class AsyncCallbackManagerForRetrieverRun(
|
|
AsyncRunManager,
|
|
RetrieverManagerMixin,
|
|
):
|
|
"""Async callback manager for retriever run."""
|
|
|
|
def get_child(self, tag: Optional[str] = None) -> AsyncCallbackManager:
|
|
"""Get a child callback manager."""
|
|
manager = AsyncCallbackManager([], parent_run_id=self.run_id)
|
|
manager.set_handlers(self.inheritable_handlers)
|
|
manager.add_tags(self.inheritable_tags)
|
|
if tag is not None:
|
|
manager.add_tags([tag], False)
|
|
return manager
|
|
|
|
async def on_retriever_end(
|
|
self, documents: Sequence[Document], **kwargs: Any
|
|
) -> None:
|
|
"""Run when retriever ends running."""
|
|
await _ahandle_event(
|
|
self.handlers,
|
|
"on_retriever_end",
|
|
"ignore_retriever",
|
|
documents,
|
|
run_id=self.run_id,
|
|
parent_run_id=self.parent_run_id,
|
|
tags=self.tags,
|
|
**kwargs,
|
|
)
|
|
|
|
async def on_retriever_error(
|
|
self,
|
|
error: Union[Exception, KeyboardInterrupt],
|
|
**kwargs: Any,
|
|
) -> None:
|
|
"""Run when retriever errors."""
|
|
await _ahandle_event(
|
|
self.handlers,
|
|
"on_retriever_error",
|
|
"ignore_retriever",
|
|
error,
|
|
run_id=self.run_id,
|
|
parent_run_id=self.parent_run_id,
|
|
tags=self.tags,
|
|
**kwargs,
|
|
)
|
|
|
|
|
|
class CallbackManager(BaseCallbackManager):
|
|
"""Callback manager that can be used to handle callbacks from langchain."""
|
|
|
|
def on_llm_start(
|
|
self,
|
|
serialized: Dict[str, Any],
|
|
prompts: List[str],
|
|
**kwargs: Any,
|
|
) -> List[CallbackManagerForLLMRun]:
|
|
"""Run when LLM starts running.
|
|
|
|
Args:
|
|
serialized (Dict[str, Any]): The serialized LLM.
|
|
prompts (List[str]): The list of prompts.
|
|
run_id (UUID, optional): The ID of the run. Defaults to None.
|
|
|
|
Returns:
|
|
List[CallbackManagerForLLMRun]: A callback manager for each
|
|
prompt as an LLM run.
|
|
"""
|
|
managers = []
|
|
for prompt in prompts:
|
|
run_id_ = uuid4()
|
|
_handle_event(
|
|
self.handlers,
|
|
"on_llm_start",
|
|
"ignore_llm",
|
|
serialized,
|
|
[prompt],
|
|
run_id=run_id_,
|
|
parent_run_id=self.parent_run_id,
|
|
tags=self.tags,
|
|
**kwargs,
|
|
)
|
|
|
|
managers.append(
|
|
CallbackManagerForLLMRun(
|
|
run_id=run_id_,
|
|
handlers=self.handlers,
|
|
inheritable_handlers=self.inheritable_handlers,
|
|
parent_run_id=self.parent_run_id,
|
|
tags=self.tags,
|
|
inheritable_tags=self.inheritable_tags,
|
|
)
|
|
)
|
|
|
|
return managers
|
|
|
|
def on_chat_model_start(
|
|
self,
|
|
serialized: Dict[str, Any],
|
|
messages: List[List[BaseMessage]],
|
|
**kwargs: Any,
|
|
) -> List[CallbackManagerForLLMRun]:
|
|
"""Run when LLM starts running.
|
|
|
|
Args:
|
|
serialized (Dict[str, Any]): The serialized LLM.
|
|
messages (List[List[BaseMessage]]): The list of messages.
|
|
run_id (UUID, optional): The ID of the run. Defaults to None.
|
|
|
|
Returns:
|
|
List[CallbackManagerForLLMRun]: A callback manager for each
|
|
list of messages as an LLM run.
|
|
"""
|
|
|
|
managers = []
|
|
for message_list in messages:
|
|
run_id_ = uuid4()
|
|
_handle_event(
|
|
self.handlers,
|
|
"on_chat_model_start",
|
|
"ignore_chat_model",
|
|
serialized,
|
|
[message_list],
|
|
run_id=run_id_,
|
|
parent_run_id=self.parent_run_id,
|
|
tags=self.tags,
|
|
**kwargs,
|
|
)
|
|
|
|
managers.append(
|
|
CallbackManagerForLLMRun(
|
|
run_id=run_id_,
|
|
handlers=self.handlers,
|
|
inheritable_handlers=self.inheritable_handlers,
|
|
parent_run_id=self.parent_run_id,
|
|
tags=self.tags,
|
|
inheritable_tags=self.inheritable_tags,
|
|
)
|
|
)
|
|
|
|
return managers
|
|
|
|
def on_chain_start(
|
|
self,
|
|
serialized: Dict[str, Any],
|
|
inputs: Dict[str, Any],
|
|
run_id: Optional[UUID] = None,
|
|
**kwargs: Any,
|
|
) -> CallbackManagerForChainRun:
|
|
"""Run when chain starts running.
|
|
|
|
Args:
|
|
serialized (Dict[str, Any]): The serialized chain.
|
|
inputs (Dict[str, Any]): The inputs to the chain.
|
|
run_id (UUID, optional): The ID of the run. Defaults to None.
|
|
|
|
Returns:
|
|
CallbackManagerForChainRun: The callback manager for the chain run.
|
|
"""
|
|
if run_id is None:
|
|
run_id = uuid4()
|
|
|
|
_handle_event(
|
|
self.handlers,
|
|
"on_chain_start",
|
|
"ignore_chain",
|
|
serialized,
|
|
inputs,
|
|
run_id=run_id,
|
|
parent_run_id=self.parent_run_id,
|
|
tags=self.tags,
|
|
**kwargs,
|
|
)
|
|
|
|
return CallbackManagerForChainRun(
|
|
run_id=run_id,
|
|
handlers=self.handlers,
|
|
inheritable_handlers=self.inheritable_handlers,
|
|
parent_run_id=self.parent_run_id,
|
|
tags=self.tags,
|
|
inheritable_tags=self.inheritable_tags,
|
|
)
|
|
|
|
def on_tool_start(
|
|
self,
|
|
serialized: Dict[str, Any],
|
|
input_str: str,
|
|
run_id: Optional[UUID] = None,
|
|
parent_run_id: Optional[UUID] = None,
|
|
**kwargs: Any,
|
|
) -> CallbackManagerForToolRun:
|
|
"""Run when tool starts running.
|
|
|
|
Args:
|
|
serialized (Dict[str, Any]): The serialized tool.
|
|
input_str (str): The input to the tool.
|
|
run_id (UUID, optional): The ID of the run. Defaults to None.
|
|
parent_run_id (UUID, optional): The ID of the parent run. Defaults to None.
|
|
|
|
Returns:
|
|
CallbackManagerForToolRun: The callback manager for the tool run.
|
|
"""
|
|
if run_id is None:
|
|
run_id = uuid4()
|
|
|
|
_handle_event(
|
|
self.handlers,
|
|
"on_tool_start",
|
|
"ignore_agent",
|
|
serialized,
|
|
input_str,
|
|
run_id=run_id,
|
|
parent_run_id=self.parent_run_id,
|
|
tags=self.tags,
|
|
**kwargs,
|
|
)
|
|
|
|
return CallbackManagerForToolRun(
|
|
run_id=run_id,
|
|
handlers=self.handlers,
|
|
inheritable_handlers=self.inheritable_handlers,
|
|
parent_run_id=self.parent_run_id,
|
|
tags=self.tags,
|
|
inheritable_tags=self.inheritable_tags,
|
|
)
|
|
|
|
def on_retriever_start(
|
|
self,
|
|
query: str,
|
|
run_id: Optional[UUID] = None,
|
|
parent_run_id: Optional[UUID] = None,
|
|
**kwargs: Any,
|
|
) -> CallbackManagerForRetrieverRun:
|
|
"""Run when retriever starts running."""
|
|
if run_id is None:
|
|
run_id = uuid4()
|
|
|
|
_handle_event(
|
|
self.handlers,
|
|
"on_retriever_start",
|
|
"ignore_retriever",
|
|
query,
|
|
run_id=run_id,
|
|
parent_run_id=self.parent_run_id,
|
|
tags=self.tags,
|
|
**kwargs,
|
|
)
|
|
|
|
return CallbackManagerForRetrieverRun(
|
|
run_id=run_id,
|
|
handlers=self.handlers,
|
|
inheritable_handlers=self.inheritable_handlers,
|
|
parent_run_id=self.parent_run_id,
|
|
tags=self.tags,
|
|
inheritable_tags=self.inheritable_tags,
|
|
)
|
|
|
|
@classmethod
|
|
def configure(
|
|
cls,
|
|
inheritable_callbacks: Callbacks = None,
|
|
local_callbacks: Callbacks = None,
|
|
verbose: bool = False,
|
|
inheritable_tags: Optional[List[str]] = None,
|
|
local_tags: Optional[List[str]] = None,
|
|
) -> CallbackManager:
|
|
"""Configure the callback manager.
|
|
|
|
Args:
|
|
inheritable_callbacks (Optional[Callbacks], optional): The inheritable
|
|
callbacks. Defaults to None.
|
|
local_callbacks (Optional[Callbacks], optional): The local callbacks.
|
|
Defaults to None.
|
|
verbose (bool, optional): Whether to enable verbose mode. Defaults to False.
|
|
inheritable_tags (Optional[List[str]], optional): The inheritable tags.
|
|
Defaults to None.
|
|
local_tags (Optional[List[str]], optional): The local tags.
|
|
Defaults to None.
|
|
|
|
Returns:
|
|
CallbackManager: The configured callback manager.
|
|
"""
|
|
return _configure(
|
|
cls,
|
|
inheritable_callbacks,
|
|
local_callbacks,
|
|
verbose,
|
|
inheritable_tags,
|
|
local_tags,
|
|
)
|
|
|
|
|
|
class AsyncCallbackManager(BaseCallbackManager):
|
|
"""Async callback manager that can be used to handle callbacks from LangChain."""
|
|
|
|
@property
|
|
def is_async(self) -> bool:
|
|
"""Return whether the handler is async."""
|
|
return True
|
|
|
|
async def on_llm_start(
|
|
self,
|
|
serialized: Dict[str, Any],
|
|
prompts: List[str],
|
|
**kwargs: Any,
|
|
) -> List[AsyncCallbackManagerForLLMRun]:
|
|
"""Run when LLM starts running.
|
|
|
|
Args:
|
|
serialized (Dict[str, Any]): The serialized LLM.
|
|
prompts (List[str]): The list of prompts.
|
|
run_id (UUID, optional): The ID of the run. Defaults to None.
|
|
|
|
Returns:
|
|
List[AsyncCallbackManagerForLLMRun]: The list of async
|
|
callback managers, one for each LLM Run corresponding
|
|
to each prompt.
|
|
"""
|
|
|
|
tasks = []
|
|
managers = []
|
|
|
|
for prompt in prompts:
|
|
run_id_ = uuid4()
|
|
|
|
tasks.append(
|
|
_ahandle_event(
|
|
self.handlers,
|
|
"on_llm_start",
|
|
"ignore_llm",
|
|
serialized,
|
|
[prompt],
|
|
run_id=run_id_,
|
|
parent_run_id=self.parent_run_id,
|
|
tags=self.tags,
|
|
**kwargs,
|
|
)
|
|
)
|
|
|
|
managers.append(
|
|
AsyncCallbackManagerForLLMRun(
|
|
run_id=run_id_,
|
|
handlers=self.handlers,
|
|
inheritable_handlers=self.inheritable_handlers,
|
|
parent_run_id=self.parent_run_id,
|
|
tags=self.tags,
|
|
inheritable_tags=self.inheritable_tags,
|
|
)
|
|
)
|
|
|
|
await asyncio.gather(*tasks)
|
|
|
|
return managers
|
|
|
|
async def on_chat_model_start(
|
|
self,
|
|
serialized: Dict[str, Any],
|
|
messages: List[List[BaseMessage]],
|
|
**kwargs: Any,
|
|
) -> Any:
|
|
"""Run when LLM starts running.
|
|
|
|
Args:
|
|
serialized (Dict[str, Any]): The serialized LLM.
|
|
messages (List[List[BaseMessage]]): The list of messages.
|
|
run_id (UUID, optional): The ID of the run. Defaults to None.
|
|
|
|
Returns:
|
|
List[AsyncCallbackManagerForLLMRun]: The list of
|
|
async callback managers, one for each LLM Run
|
|
corresponding to each inner message list.
|
|
"""
|
|
tasks = []
|
|
managers = []
|
|
|
|
for message_list in messages:
|
|
run_id_ = uuid4()
|
|
|
|
tasks.append(
|
|
_ahandle_event(
|
|
self.handlers,
|
|
"on_chat_model_start",
|
|
"ignore_chat_model",
|
|
serialized,
|
|
[message_list],
|
|
run_id=run_id_,
|
|
parent_run_id=self.parent_run_id,
|
|
tags=self.tags,
|
|
**kwargs,
|
|
)
|
|
)
|
|
|
|
managers.append(
|
|
AsyncCallbackManagerForLLMRun(
|
|
run_id=run_id_,
|
|
handlers=self.handlers,
|
|
inheritable_handlers=self.inheritable_handlers,
|
|
parent_run_id=self.parent_run_id,
|
|
tags=self.tags,
|
|
inheritable_tags=self.inheritable_tags,
|
|
)
|
|
)
|
|
|
|
await asyncio.gather(*tasks)
|
|
return managers
|
|
|
|
async def on_chain_start(
|
|
self,
|
|
serialized: Dict[str, Any],
|
|
inputs: Dict[str, Any],
|
|
run_id: Optional[UUID] = None,
|
|
**kwargs: Any,
|
|
) -> AsyncCallbackManagerForChainRun:
|
|
"""Run when chain starts running.
|
|
|
|
Args:
|
|
serialized (Dict[str, Any]): The serialized chain.
|
|
inputs (Dict[str, Any]): The inputs to the chain.
|
|
run_id (UUID, optional): The ID of the run. Defaults to None.
|
|
|
|
Returns:
|
|
AsyncCallbackManagerForChainRun: The async callback manager
|
|
for the chain run.
|
|
"""
|
|
if run_id is None:
|
|
run_id = uuid4()
|
|
|
|
await _ahandle_event(
|
|
self.handlers,
|
|
"on_chain_start",
|
|
"ignore_chain",
|
|
serialized,
|
|
inputs,
|
|
run_id=run_id,
|
|
parent_run_id=self.parent_run_id,
|
|
tags=self.tags,
|
|
**kwargs,
|
|
)
|
|
|
|
return AsyncCallbackManagerForChainRun(
|
|
run_id=run_id,
|
|
handlers=self.handlers,
|
|
inheritable_handlers=self.inheritable_handlers,
|
|
parent_run_id=self.parent_run_id,
|
|
tags=self.tags,
|
|
inheritable_tags=self.inheritable_tags,
|
|
)
|
|
|
|
async def on_tool_start(
|
|
self,
|
|
serialized: Dict[str, Any],
|
|
input_str: str,
|
|
run_id: Optional[UUID] = None,
|
|
parent_run_id: Optional[UUID] = None,
|
|
**kwargs: Any,
|
|
) -> AsyncCallbackManagerForToolRun:
|
|
"""Run when tool starts running.
|
|
|
|
Args:
|
|
serialized (Dict[str, Any]): The serialized tool.
|
|
input_str (str): The input to the tool.
|
|
run_id (UUID, optional): The ID of the run. Defaults to None.
|
|
parent_run_id (UUID, optional): The ID of the parent run.
|
|
Defaults to None.
|
|
|
|
Returns:
|
|
AsyncCallbackManagerForToolRun: The async callback manager
|
|
for the tool run.
|
|
"""
|
|
if run_id is None:
|
|
run_id = uuid4()
|
|
|
|
await _ahandle_event(
|
|
self.handlers,
|
|
"on_tool_start",
|
|
"ignore_agent",
|
|
serialized,
|
|
input_str,
|
|
run_id=run_id,
|
|
parent_run_id=self.parent_run_id,
|
|
tags=self.tags,
|
|
**kwargs,
|
|
)
|
|
|
|
return AsyncCallbackManagerForToolRun(
|
|
run_id=run_id,
|
|
handlers=self.handlers,
|
|
inheritable_handlers=self.inheritable_handlers,
|
|
parent_run_id=self.parent_run_id,
|
|
tags=self.tags,
|
|
inheritable_tags=self.inheritable_tags,
|
|
)
|
|
|
|
async def on_retriever_start(
|
|
self,
|
|
query: str,
|
|
run_id: Optional[UUID] = None,
|
|
parent_run_id: Optional[UUID] = None,
|
|
**kwargs: Any,
|
|
) -> AsyncCallbackManagerForRetrieverRun:
|
|
"""Run when retriever starts running."""
|
|
if run_id is None:
|
|
run_id = uuid4()
|
|
|
|
await _ahandle_event(
|
|
self.handlers,
|
|
"on_retriever_start",
|
|
"ignore_retriever",
|
|
query,
|
|
run_id=run_id,
|
|
parent_run_id=self.parent_run_id,
|
|
tags=self.tags,
|
|
**kwargs,
|
|
)
|
|
|
|
return AsyncCallbackManagerForRetrieverRun(
|
|
run_id=run_id,
|
|
handlers=self.handlers,
|
|
inheritable_handlers=self.inheritable_handlers,
|
|
parent_run_id=self.parent_run_id,
|
|
tags=self.tags,
|
|
inheritable_tags=self.inheritable_tags,
|
|
)
|
|
|
|
@classmethod
|
|
def configure(
|
|
cls,
|
|
inheritable_callbacks: Callbacks = None,
|
|
local_callbacks: Callbacks = None,
|
|
verbose: bool = False,
|
|
inheritable_tags: Optional[List[str]] = None,
|
|
local_tags: Optional[List[str]] = None,
|
|
) -> AsyncCallbackManager:
|
|
"""Configure the async callback manager.
|
|
|
|
Args:
|
|
inheritable_callbacks (Optional[Callbacks], optional): The inheritable
|
|
callbacks. Defaults to None.
|
|
local_callbacks (Optional[Callbacks], optional): The local callbacks.
|
|
Defaults to None.
|
|
verbose (bool, optional): Whether to enable verbose mode. Defaults to False.
|
|
inheritable_tags (Optional[List[str]], optional): The inheritable tags.
|
|
Defaults to None.
|
|
local_tags (Optional[List[str]], optional): The local tags.
|
|
Defaults to None.
|
|
|
|
Returns:
|
|
AsyncCallbackManager: The configured async callback manager.
|
|
"""
|
|
return _configure(
|
|
cls,
|
|
inheritable_callbacks,
|
|
local_callbacks,
|
|
verbose,
|
|
inheritable_tags,
|
|
local_tags,
|
|
)
|
|
|
|
|
|
T = TypeVar("T", CallbackManager, AsyncCallbackManager)
|
|
|
|
|
|
def env_var_is_set(env_var: str) -> bool:
|
|
"""Check if an environment variable is set.
|
|
|
|
Args:
|
|
env_var (str): The name of the environment variable.
|
|
|
|
Returns:
|
|
bool: True if the environment variable is set, False otherwise.
|
|
"""
|
|
return env_var in os.environ and os.environ[env_var] not in (
|
|
"",
|
|
"0",
|
|
"false",
|
|
"False",
|
|
)
|
|
|
|
|
|
def _configure(
|
|
callback_manager_cls: Type[T],
|
|
inheritable_callbacks: Callbacks = None,
|
|
local_callbacks: Callbacks = None,
|
|
verbose: bool = False,
|
|
inheritable_tags: Optional[List[str]] = None,
|
|
local_tags: Optional[List[str]] = None,
|
|
) -> T:
|
|
"""Configure the callback manager.
|
|
|
|
Args:
|
|
callback_manager_cls (Type[T]): The callback manager class.
|
|
inheritable_callbacks (Optional[Callbacks], optional): The inheritable
|
|
callbacks. Defaults to None.
|
|
local_callbacks (Optional[Callbacks], optional): The local callbacks.
|
|
Defaults to None.
|
|
verbose (bool, optional): Whether to enable verbose mode. Defaults to False.
|
|
inheritable_tags (Optional[List[str]], optional): The inheritable tags.
|
|
Defaults to None.
|
|
local_tags (Optional[List[str]], optional): The local tags. Defaults to None.
|
|
|
|
Returns:
|
|
T: The configured callback manager.
|
|
"""
|
|
callback_manager = callback_manager_cls(handlers=[])
|
|
if inheritable_callbacks or local_callbacks:
|
|
if isinstance(inheritable_callbacks, list) or inheritable_callbacks is None:
|
|
inheritable_callbacks_ = inheritable_callbacks or []
|
|
callback_manager = callback_manager_cls(
|
|
handlers=inheritable_callbacks_.copy(),
|
|
inheritable_handlers=inheritable_callbacks_.copy(),
|
|
)
|
|
else:
|
|
callback_manager = callback_manager_cls(
|
|
handlers=inheritable_callbacks.handlers,
|
|
inheritable_handlers=inheritable_callbacks.inheritable_handlers,
|
|
parent_run_id=inheritable_callbacks.parent_run_id,
|
|
tags=inheritable_callbacks.tags,
|
|
inheritable_tags=inheritable_callbacks.inheritable_tags,
|
|
)
|
|
local_handlers_ = (
|
|
local_callbacks
|
|
if isinstance(local_callbacks, list)
|
|
else (local_callbacks.handlers if local_callbacks else [])
|
|
)
|
|
for handler in local_handlers_:
|
|
callback_manager.add_handler(handler, False)
|
|
if inheritable_tags or local_tags:
|
|
callback_manager.add_tags(inheritable_tags or [])
|
|
callback_manager.add_tags(local_tags or [], False)
|
|
|
|
tracer = tracing_callback_var.get()
|
|
wandb_tracer = wandb_tracing_callback_var.get()
|
|
open_ai = openai_callback_var.get()
|
|
tracing_enabled_ = (
|
|
env_var_is_set("LANGCHAIN_TRACING")
|
|
or tracer is not None
|
|
or env_var_is_set("LANGCHAIN_HANDLER")
|
|
)
|
|
wandb_tracing_enabled_ = (
|
|
env_var_is_set("LANGCHAIN_WANDB_TRACING") or wandb_tracer is not None
|
|
)
|
|
|
|
tracer_v2 = tracing_v2_callback_var.get()
|
|
tracing_v2_enabled_ = (
|
|
env_var_is_set("LANGCHAIN_TRACING_V2") or tracer_v2 is not None
|
|
)
|
|
tracer_project = os.environ.get(
|
|
"LANGCHAIN_PROJECT", os.environ.get("LANGCHAIN_SESSION", "default")
|
|
)
|
|
debug = _get_debug()
|
|
if (
|
|
verbose
|
|
or debug
|
|
or tracing_enabled_
|
|
or tracing_v2_enabled_
|
|
or wandb_tracing_enabled_
|
|
or open_ai is not None
|
|
):
|
|
if verbose and not any(
|
|
isinstance(handler, StdOutCallbackHandler)
|
|
for handler in callback_manager.handlers
|
|
):
|
|
if debug:
|
|
pass
|
|
else:
|
|
callback_manager.add_handler(StdOutCallbackHandler(), False)
|
|
if debug and not any(
|
|
isinstance(handler, ConsoleCallbackHandler)
|
|
for handler in callback_manager.handlers
|
|
):
|
|
callback_manager.add_handler(ConsoleCallbackHandler(), True)
|
|
if tracing_enabled_ and not any(
|
|
isinstance(handler, LangChainTracerV1)
|
|
for handler in callback_manager.handlers
|
|
):
|
|
if tracer:
|
|
callback_manager.add_handler(tracer, True)
|
|
else:
|
|
handler = LangChainTracerV1()
|
|
handler.load_session(tracer_project)
|
|
callback_manager.add_handler(handler, True)
|
|
if wandb_tracing_enabled_ and not any(
|
|
isinstance(handler, WandbTracer) for handler in callback_manager.handlers
|
|
):
|
|
if wandb_tracer:
|
|
callback_manager.add_handler(wandb_tracer, True)
|
|
else:
|
|
handler = WandbTracer()
|
|
callback_manager.add_handler(handler, True)
|
|
if tracing_v2_enabled_ and not any(
|
|
isinstance(handler, LangChainTracer)
|
|
for handler in callback_manager.handlers
|
|
):
|
|
if tracer_v2:
|
|
callback_manager.add_handler(tracer_v2, True)
|
|
else:
|
|
try:
|
|
handler = LangChainTracer(project_name=tracer_project)
|
|
callback_manager.add_handler(handler, True)
|
|
except Exception as e:
|
|
logger.warning(
|
|
"Unable to load requested LangChainTracer."
|
|
" To disable this warning,"
|
|
" unset the LANGCHAIN_TRACING_V2 environment variables.",
|
|
e,
|
|
)
|
|
if open_ai is not None and not any(
|
|
isinstance(handler, OpenAICallbackHandler)
|
|
for handler in callback_manager.handlers
|
|
):
|
|
callback_manager.add_handler(open_ai, True)
|
|
return callback_manager
|