feat: solution for 'Экзамен: Самокорректирующийся агент'

This commit is contained in:
2026-06-30 16:45:22 +03:00
parent 9ff9612bbb
commit 2bd56fb1bc
3 changed files with 39 additions and 37 deletions
+7 -8
View File
@@ -1,15 +1,14 @@
{
"name": "langgraph-reflection-rewrite",
"name": "self-correcting-agent",
"version": "1.0.0",
"main": "dist/index.js",
"description": "Selfcorrecting agent example using langgraph and langchainopenai",
"main": "src/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"start": "node dist/index.js"
"start": "node src/index.js"
},
"dependencies": {
"langgraph": "^0.1.0"
},
"devDependencies": {
"typescript": "^5.0.0"
"langgraph": "latest",
"langchain-openai": "latest"
}
}