-
Notifications
You must be signed in to change notification settings - Fork 2.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(core): add registerConfigureHook #7330
Conversation
Follows similar pattern in LangChain (Python)
The latest updates on your projects. Learn more about Vercel for Git ↗︎
1 Skipped Deployment
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the PR - looks good overall!
See comments for some nits, can apply myself later too.
Ah ok one more thing I realized - we need to be a little bit more clever so we don't pull in |
Need to fix a circular dep issue, will aim to get this in tomorrow or midweek |
May want to add a docs page later outside of API refs |
Thanks again! |
Co-authored-by: jacoblee93 <jacoblee93@gmail.com>
Follows similar pattern in LangChain (Python)
This allows langchain devs to register a callback without having to pass them explicitly in each invocation.
@ibolmo