feat: add shadow LangGraph orchestrator runtime

This commit is contained in:
john
2026-07-24 21:25:40 +08:00
parent 46ea22b342
commit 24336d0178
29 changed files with 3247 additions and 25 deletions
+19
View File
@@ -0,0 +1,19 @@
{
"name": "@memind/workflow-orchestrator",
"private": true,
"version": "0.1.0",
"type": "module",
"engines": {
"node": ">=20"
},
"scripts": {
"start": "node server.mjs",
"test": "node --test *.test.mjs"
},
"dependencies": {
"@langchain/core": "^1.2.3",
"@langchain/langgraph": "^1.4.8",
"@langchain/langgraph-checkpoint-postgres": "^1.0.4",
"express": "^4.21.2"
}
}