agentledger-langgraph 1.2.0
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/README.md +14 -0
- package/package.json +25 -0
- package/src/index.d.ts +2 -0
- package/src/index.js +2 -0
package/README.md
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# agentledger-langgraph
|
|
2
|
+
|
|
3
|
+
TypeScript LangGraph-compatible adapter boundary for AgentLedger Runtime.
|
|
4
|
+
|
|
5
|
+
```bash
|
|
6
|
+
npm install agentledger-runtime agentledger-langgraph
|
|
7
|
+
```
|
|
8
|
+
|
|
9
|
+
```js
|
|
10
|
+
import { LangGraphCheckpointerAdapter, LangGraphNodeAdapter } from 'agentledger-langgraph';
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
The LangGraph peer dependency is optional because the `1.2.x` package exposes a dependency-free facade first.
|
|
14
|
+
|
package/package.json
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "agentledger-langgraph",
|
|
3
|
+
"version": "1.2.0",
|
|
4
|
+
"private": false,
|
|
5
|
+
"description": "LangGraph adapter package for AgentLedger Runtime.",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"main": "src/index.js",
|
|
8
|
+
"types": "src/index.d.ts",
|
|
9
|
+
"dependencies": {
|
|
10
|
+
"agentledger-runtime": "^1.2.0"
|
|
11
|
+
},
|
|
12
|
+
"peerDependencies": {
|
|
13
|
+
"@langchain/langgraph": ">=0.2"
|
|
14
|
+
},
|
|
15
|
+
"peerDependenciesMeta": {
|
|
16
|
+
"@langchain/langgraph": {
|
|
17
|
+
"optional": true
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
"files": [
|
|
21
|
+
"src/",
|
|
22
|
+
"README.md"
|
|
23
|
+
]
|
|
24
|
+
}
|
|
25
|
+
|
package/src/index.d.ts
ADDED
package/src/index.js
ADDED