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

This commit is contained in:
2026-06-30 14:38:01 +03:00
parent babdcf160b
commit b0f9325dbf
3 changed files with 73 additions and 24 deletions
+14 -6
View File
@@ -1,15 +1,23 @@
{
"name": "graph-reflexivity",
"name": "self-correcting-agent",
"version": "1.0.0",
"description": "A simple graph implementation with reflexivity support",
"main": "src/index.js",
"type": "module",
"description": "A simple Node.js implementation of a selfcorrecting agent that uses the OpenAI API to review and improve its own responses.",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "jest"
},
"keywords": [
"openai",
"self-correcting",
"agent",
"nodejs"
],
"author": "Your Name",
"license": "MIT",
"dependencies": {
"graphlib": "^2.1.8",
"lodash": "^4.17.21"
"dotenv": "^16.4.5",
"openai": "^4.20.0"
},
"devDependencies": {
"jest": "^29.7.0"