-
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
community[major]: Merge community #3610
Changes from all commits
1fe6934
fb58304
3aa51e5
155086d
9575611
3860070
242cab1
b961daf
4896c94
44be4bc
938b8e3
6e5e06d
0e91a69
9c27962
31a1bce
bca427d
eba9ccd
23641c6
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 |
---|---|---|
@@ -1,6 +1,9 @@ | ||
{ | ||
"name": "test-exports-cf", | ||
"version": "0.0.0", | ||
"workspaces": [ | ||
"libs/*" | ||
], | ||
"devDependencies": { | ||
"@cloudflare/workers-types": "^4.20230321.0", | ||
"typescript": "^5.0.3", | ||
|
@@ -9,6 +12,7 @@ | |
}, | ||
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. Hey there! 👋 I noticed that this PR introduces a new dependency, "@langchain/community", with a version specified as "workspace:*". This comment is to flag the dependency change for maintainers to review, especially regarding its type (peer/dev/hard). Keep up the great work! |
||
"dependencies": { | ||
"@langchain/anthropic": "workspace:*", | ||
"@langchain/community": "workspace:*", | ||
"@langchain/core": "workspace:*", | ||
"@langchain/openai": "workspace:*", | ||
"langchain": "workspace:*" | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,9 @@ | ||
{ | ||
"name": "test-exports-cjs", | ||
"version": "0.0.0", | ||
"workspaces": [ | ||
"libs/*" | ||
], | ||
"private": true, | ||
"description": "CJS Tests for the things exported by the langchain package", | ||
"main": "./index.mjs", | ||
|
@@ -19,6 +22,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. Hey there! 👋 I noticed that this PR adds a new hard dependency "@langchain/community" to the project's package.json. Just flagging this for the maintainers to review. Great work overall! 🚀 |
||
"dependencies": { | ||
"@langchain/anthropic": "workspace:*", | ||
"@langchain/community": "workspace:*", | ||
"@langchain/core": "workspace:*", | ||
"@langchain/openai": "workspace:*", | ||
"d3-dsv": "2", | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,9 @@ | ||
{ | ||
"name": "test-exports-esbuild", | ||
"version": "0.0.0", | ||
"workspaces": [ | ||
"libs/*" | ||
], | ||
"private": true, | ||
"description": "Tests for the things exported by the langchain package", | ||
"main": "./index.mjs", | ||
|
@@ -17,6 +20,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. Hey there! 👋 I noticed that this PR adds a new dependency to the project, "@langchain/community". It's important for maintainers to review this change to ensure it aligns with the project's dependency requirements. Thank you for flagging this for review! 🚀 |
||
"dependencies": { | ||
"@langchain/anthropic": "workspace:*", | ||
"@langchain/community": "workspace:*", | ||
"@langchain/core": "workspace:*", | ||
"@langchain/openai": "workspace:*", | ||
"d3-dsv": "2", | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,9 @@ | ||
{ | ||
"name": "test-exports-esm", | ||
"version": "0.0.0", | ||
"workspaces": [ | ||
"libs/*" | ||
], | ||
"private": true, | ||
"description": "Tests for the things exported by the langchain package", | ||
"main": "./index.mjs", | ||
|
@@ -20,6 +23,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. Hey there! I noticed that the addition of "@langchain/community" as a dependency in the package.json file might impact the project's peer dependencies. I've flagged this for your review as it's an important change to the project's dependencies. Keep up the great work! |
||
"dependencies": { | ||
"@langchain/anthropic": "workspace:*", | ||
"@langchain/community": "workspace:*", | ||
"@langchain/core": "workspace:*", | ||
"@langchain/openai": "workspace:*", | ||
"d3-dsv": "2", | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,9 @@ | ||
{ | ||
"name": "test-exports-vercel", | ||
"version": "0.1.0", | ||
"workspaces": [ | ||
"libs/*" | ||
], | ||
"private": true, | ||
"scripts": { | ||
"dev": "next dev", | ||
|
@@ -10,6 +13,7 @@ | |
}, | ||
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. Hey there! 👋 Just wanted to flag for the maintainers that a new dev dependency, "@langchain/community", has been added in this PR. It's always good to review dependency changes to ensure everything is in order. Thanks! |
||
"dependencies": { | ||
"@langchain/anthropic": "workspace:*", | ||
"@langchain/community": "workspace:*", | ||
"@langchain/core": "workspace:*", | ||
"@langchain/openai": "workspace:*", | ||
"@types/node": "18.15.11", | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,10 @@ | ||
{ | ||
"name": "test-exports-vite", | ||
"private": true, | ||
"version": "0.0.0", | ||
"workspaces": [ | ||
"libs/*" | ||
], | ||
"private": true, | ||
"type": "module", | ||
"scripts": { | ||
"dev": "vite", | ||
|
@@ -11,6 +14,7 @@ | |
}, | ||
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. Hey there! I noticed that the addition of "@langchain/community" as a dependency in the package.json file might impact the project's dependencies. I've flagged this for your review to ensure it aligns with the intended dependency type (peer/dev/hard). Keep up the great work! |
||
"dependencies": { | ||
"@langchain/anthropic": "workspace:*", | ||
"@langchain/community": "workspace:*", | ||
"@langchain/core": "workspace:*", | ||
"@langchain/openai": "workspace:*", | ||
"langchain": "workspace:*" | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@langchain/core", | ||
"version": "0.0.10", | ||
"version": "0.0.11-rc.1", | ||
"description": "Core LangChain.js abstractions and schemas", | ||
"type": "module", | ||
"engines": { | ||
|
@@ -40,6 +40,7 @@ | |
"decamelize": "1.2.0", | ||
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. Hey there! I noticed the addition of "ml-distance" as a dependency in the package.json file. This seems to be a peer/dev/hard dependency change, and I'm flagging this for the maintainers to review. Keep up the great work! |
||
"js-tiktoken": "^1.0.8", | ||
"langsmith": "~0.0.48", | ||
"ml-distance": "^4.0.0", | ||
"p-queue": "^6.6.2", | ||
"p-retry": "4", | ||
"uuid": "^9.0.0", | ||
|
@@ -59,6 +60,7 @@ | |
"eslint-plugin-prettier": "^4.2.1", | ||
"jest": "^29.5.0", | ||
"jest-environment-node": "^29.6.4", | ||
"ml-matrix": "^6.10.4", | ||
"prettier": "^2.8.3", | ||
"release-it": "^15.10.1", | ||
"rimraf": "^5.0.1", | ||
|
@@ -263,6 +265,11 @@ | |
"import": "./utils/json_schema.js", | ||
"require": "./utils/json_schema.cjs" | ||
}, | ||
"./utils/math": { | ||
"types": "./utils/math.d.ts", | ||
"import": "./utils/math.js", | ||
"require": "./utils/math.cjs" | ||
}, | ||
"./utils/stream": { | ||
"types": "./utils/stream.d.ts", | ||
"import": "./utils/stream.js", | ||
|
@@ -400,6 +407,9 @@ | |
"utils/json_schema.cjs", | ||
"utils/json_schema.js", | ||
"utils/json_schema.d.ts", | ||
"utils/math.cjs", | ||
"utils/math.js", | ||
"utils/math.d.ts", | ||
"utils/stream.cjs", | ||
"utils/stream.js", | ||
"utils/stream.d.ts", | ||
|
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 there! I noticed the addition of a new dependency, "@langchain/community", in the package.json file. This seems to be a new peer/dev/hard dependency, and I'm flagging this for the maintainers to review. Great work on the PR!