-
Notifications
You must be signed in to change notification settings - Fork 2.2k
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
Fix small core serialization issue #3386
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,7 +33,7 @@ | |
"license": "MIT", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Great work on the PR! I noticed a change in the dependencies, specifically the "@langchain/core" dependency has been updated from "^0.0.0" to "^0.0.1". This comment is to flag the change for maintainers to review the devDependencies. |
||
"dependencies": { | ||
"@anthropic-ai/sdk": "^0.10.0", | ||
"@langchain/core": "^0.0.0" | ||
"@langchain/core": "^0.0.1" | ||
}, | ||
"devDependencies": { | ||
"@jest/globals": "^29.5.0", | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,7 +32,7 @@ | |
"author": "LangChain", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Great work on the PR! This comment is just to flag the dependency change in the package.json file for maintainers to review. It seems to be a peer/dev/hard dependency change for "@langchain/core" from version 0.0.0 to 0.0.1. |
||
"license": "MIT", | ||
"dependencies": { | ||
"@langchain/core": "^0.0.0", | ||
"@langchain/core": "^0.0.1", | ||
"js-tiktoken": "^1.0.7", | ||
"openai": "^4.19.0", | ||
"zod-to-json-schema": "3.20.3" | ||
|
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.
Great work on the PR! I noticed that the dependency for "@langchain/core" has been updated from "^0.0.0" to "^0.0.1". This comment is to flag the change for maintainers to review the dev dependencies.