langchain 1.2.32-dev-1773348967855 → 1.2.32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/chat_models/universal.cjs +1 -0
- package/chat_models/universal.d.cts +1 -0
- package/chat_models/universal.d.ts +1 -0
- package/chat_models/universal.js +1 -0
- package/hub/node.cjs +1 -0
- package/hub/node.d.cts +1 -0
- package/hub/node.d.ts +1 -0
- package/hub/node.js +1 -0
- package/hub.cjs +1 -0
- package/hub.d.cts +1 -0
- package/hub.d.ts +1 -0
- package/hub.js +1 -0
- package/load/serializable.cjs +1 -0
- package/load/serializable.d.cts +1 -0
- package/load/serializable.d.ts +1 -0
- package/load/serializable.js +1 -0
- package/load.cjs +1 -0
- package/load.d.cts +1 -0
- package/load.d.ts +1 -0
- package/load.js +1 -0
- package/package.json +5 -4
- package/storage/encoder_backed.cjs +1 -0
- package/storage/encoder_backed.d.cts +1 -0
- package/storage/encoder_backed.d.ts +1 -0
- package/storage/encoder_backed.js +1 -0
- package/storage/file_system.cjs +1 -0
- package/storage/file_system.d.cts +1 -0
- package/storage/file_system.d.ts +1 -0
- package/storage/file_system.js +1 -0
- package/storage/in_memory.cjs +1 -0
- package/storage/in_memory.d.cts +1 -0
- package/storage/in_memory.d.ts +1 -0
- package/storage/in_memory.js +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# langchain
|
|
2
2
|
|
|
3
|
+
## 1.2.32
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#10405](https://github.com/langchain-ai/langchainjs/pull/10405) [`afbf5f1`](https://github.com/langchain-ai/langchainjs/commit/afbf5f1b1a9c6014f994829ab92bbfcaecb8a30b) Thanks [@christian-bromann](https://github.com/christian-bromann)! - fix(langchain): add browser export
|
|
8
|
+
|
|
3
9
|
## 1.2.31
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require("../dist/chat_models/universal.cjs");
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "../dist/chat_models/universal.js";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "../dist/chat_models/universal.js";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "../dist/chat_models/universal.js";
|
package/hub/node.cjs
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require("../dist/hub/node.cjs");
|
package/hub/node.d.cts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "../dist/hub/node.js";
|
package/hub/node.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "../dist/hub/node.js";
|
package/hub/node.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "../dist/hub/node.js";
|
package/hub.cjs
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require("./dist/hub/index.cjs");
|
package/hub.d.cts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./dist/hub/index.js";
|
package/hub.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./dist/hub/index.js";
|
package/hub.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./dist/hub/index.js";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require("../dist/load/serializable.cjs");
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "../dist/load/serializable.js";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "../dist/load/serializable.js";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "../dist/load/serializable.js";
|
package/load.cjs
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require("./dist/load/index.cjs");
|
package/load.d.cts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./dist/load/index.js";
|
package/load.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./dist/load/index.js";
|
package/load.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./dist/load/index.js";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "langchain",
|
|
3
|
-
"version": "1.2.32
|
|
3
|
+
"version": "1.2.32",
|
|
4
4
|
"description": "Typescript bindings for langchain",
|
|
5
5
|
"author": "LangChain",
|
|
6
6
|
"license": "MIT",
|
|
@@ -53,11 +53,11 @@
|
|
|
53
53
|
"vitest": "^3.2.4",
|
|
54
54
|
"yaml": "^2.8.1",
|
|
55
55
|
"@langchain/anthropic": "1.3.23",
|
|
56
|
+
"@langchain/cohere": "1.0.4",
|
|
56
57
|
"@langchain/core": "^1.1.32",
|
|
57
|
-
"@langchain/openai": "1.2.13",
|
|
58
58
|
"@langchain/eslint": "0.1.1",
|
|
59
|
-
"@langchain/
|
|
60
|
-
"@langchain/
|
|
59
|
+
"@langchain/openai": "1.2.13",
|
|
60
|
+
"@langchain/tsconfig": "0.0.1"
|
|
61
61
|
},
|
|
62
62
|
"peerDependencies": {
|
|
63
63
|
"@langchain/core": "^1.1.32"
|
|
@@ -90,6 +90,7 @@
|
|
|
90
90
|
"types": "./dist/index.d.cts",
|
|
91
91
|
"exports": {
|
|
92
92
|
".": {
|
|
93
|
+
"browser": "./dist/browser.js",
|
|
93
94
|
"input": "./src/index.ts",
|
|
94
95
|
"require": {
|
|
95
96
|
"types": "./dist/index.d.cts",
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require("../dist/storage/encoder_backed.cjs");
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "../dist/storage/encoder_backed.js";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "../dist/storage/encoder_backed.js";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "../dist/storage/encoder_backed.js";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require("../dist/storage/file_system.cjs");
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "../dist/storage/file_system.js";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "../dist/storage/file_system.js";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "../dist/storage/file_system.js";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require("../dist/storage/in_memory.cjs");
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "../dist/storage/in_memory.js";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "../dist/storage/in_memory.js";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "../dist/storage/in_memory.js";
|