Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def _instrument(self, **kwargs: Any) -> None:
# Save and wrap BaseCallbackManager.__init__ to attach the processor once per instance.
self._original_cb_init = langchain_core.callbacks.BaseCallbackManager.__init__
wrap_function_wrapper(
module="langchain_core.callbacks",
target="langchain_core.callbacks",
name="BaseCallbackManager.__init__",
wrapper=_BaseCallbackManagerInit(self._tracer),
)
Comment on lines 74 to 78

@rbrighenti Rick Brighenti (rbrighenti) Jul 8, 2026

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unresolving this conversation because Copilot is right here. I don't think having target here is actually compatible with any 1.x version. We'll need to check if using just positional arguments would work without issues

Expand Down