feat: solution for '8. Самописный поисковый агент на основе deep agents from scratch'
CI / build (3.1) (push) Has been cancelled
CI / build (3.11) (push) Has been cancelled
CI / build (3.8) (push) Has been cancelled
CI / build (3.9) (push) Has been cancelled

This commit is contained in:
2026-07-01 13:50:40 +03:00
parent 9dafd2991f
commit fea117b469
6 changed files with 160 additions and 124 deletions
+7 -7
View File
@@ -1,16 +1,16 @@
{
"name": "deep-agent-scratch",
"name": "deep-agent-search",
"version": "1.0.0",
"description": "Deep Agent implementation based on LangChain",
"description": "A simple search agent built with LangChain DeepAgent and OpenAI",
"main": "src/index.js",
"type": "commonjs",
"type": "module",
"scripts": {
"start": "node src/index.js",
"test": "echo \"No tests\""
"test": "node test.js"
},
"dependencies": {
"langchain": "^0.2.0",
"openai": "^4.0.0",
"dotenv": "^16.4.5"
"langchain": "^0.0.112",
"langchain-openai": "^0.0.112",
"langchain-community": "^0.0.112"
}
}