-
Notifications
You must be signed in to change notification settings - Fork 2.4k
core[minor]: Add runId to RunnableConfig #4954
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
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
langchain-core/src/runnables/base.ts
Outdated
@@ -1520,17 +1539,19 @@ export class RunnableSequence< |
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.
Hey team, just a heads up that this PR introduces a new asynchronous HTTP request using the handleChainStart
method. This comment is to flag the change for maintainers to review the addition of this new request. Let me know if you have any questions or need further clarification!
undefined, | ||
extra, | ||
undefined, | ||
undefined, | ||
handledOptions.runName | ||
); | ||
|
||
// eslint-disable-next-line no-param-reassign | ||
delete handledOptions.runId; |
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.
See above
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.
there is no above?
See comments - also, why not implement for LLMs too? |
…to brace/add-run-id-runnable-config
@jacoblee93 added to LLMs, added some tests and cleaned up a couple other places. Should be good to go now |
Not implemented for LLMs yet. Py is very different from JS with base implementation, so it's not as simple as translate syntax