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

This commit is contained in:
2026-07-01 14:54:52 +03:00
parent 5912e0f5cc
commit 581d783243
4 changed files with 129 additions and 50 deletions
+9 -4
View File
@@ -1,14 +1,19 @@
{
"name": "self-correcting-agent",
"version": "1.0.0",
"description": "A minimal selfcorrecting agent using LangChain OpenAI provider",
"description": "A minimal Node.js project demonstrating a selfcorrecting agent using langchain-openai and langchain-core.",
"main": "src/index.js",
"type": "module",
"scripts": {
"start": "node src/index.js",
"test": "echo \"No tests defined\" && exit 0"
"start": "node src/index.js"
},
"dependencies": {
"langchain-core": "^0.1.0",
"langchain-openai": "^0.1.0"
}
},
"engines": {
"node": ">=18"
},
"author": "Your Name",
"license": "MIT"
}