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

This commit is contained in:
2026-07-01 14:42:36 +03:00
parent 153b04b33c
commit 08e0fee223
5 changed files with 95 additions and 213 deletions
+8 -14
View File
@@ -1,20 +1,14 @@
{
"name": "graph-reflection-rewrite",
"name": "self-correcting-agent",
"version": "1.0.0",
"description": "Graph implementation with reflection and rewrite nodes",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"description": "A minimal selfcorrecting agent using LangChain OpenAI provider",
"main": "src/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"test": "jest"
"start": "node src/index.js",
"test": "echo \"No tests defined\" && exit 0"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.2",
"jest": "^29.6.1",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
"dependencies": {
"langchain-openai": "^0.1.0"
}
}