feat: solution for 'Повторный экзамен: Граф с рефлексией и доработкой'

This commit is contained in:
2026-07-01 14:40:09 +03:00
parent f14d41830d
commit 153b04b33c
10 changed files with 312 additions and 95 deletions
+16 -6
View File
@@ -1,10 +1,20 @@
{
"name": "self-correcting-agent",
"name": "graph-reflection-rewrite",
"version": "1.0.0",
"description": "A simple self-correcting agent using LangChain and LangGraph",
"main": "main.py",
"dependencies": {
"langchain-core": "^0.2.0",
"langgraph": "^0.0.1"
"description": "Graph implementation with reflection and rewrite nodes",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.2",
"jest": "^29.6.1",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
}
}