add initial testing

This commit is contained in:
William Jeynes
2026-01-27 22:57:49 +00:00
parent fdf8be2414
commit a3201d17a2
11 changed files with 742 additions and 5 deletions
+9 -3
View File
@@ -4,14 +4,20 @@
"description": "Main project pipeline for identifying trigger events",
"license": "GPL-3.0",
"author": "Will Jeynes",
"type": "commonjs",
"main": "index.js",
"type": "module",
"main": "index.ts",
"scripts": {
"dev": "node index.js"
"dev": "tsx run.ts"
},
"dependencies": {
"@langchain/core": "^1.1.17",
"@langchain/langgraph": "^1.1.2",
"@langchain/langgraph-sdk": "^1.5.5",
"@langchain/openai": "^1.2.3",
"dotenv": "^17.2.3",
"langchain": "^1.2.14"
},
"devDependencies": {
"tsx": "^4.21.0"
}
}