feat: solution for 'Агент с RAG-памятью'
CI / build (push) Has been cancelled

This commit is contained in:
2026-06-28 12:54:50 +03:00
parent a8a8111eca
commit a811a5c07d
7 changed files with 175 additions and 148 deletions
+16 -18
View File
@@ -1,26 +1,24 @@
{
"name": "agent-rag-memory",
"name": "rag-agent",
"version": "1.0.0",
"description": "A simple LangChain agent with RAG memory implemented in TypeScript",
"main": "dist/index.js",
"type": "commonjs",
"scripts": {
"build": "tsc",
"start": "ts-node src/index.ts"
"description": "A simple RAG agent with memory using OpenAI and FAISS",
"main": "src/index.js",
"bin": {
"rag-agent": "./src/cli.js"
},
"scripts": {
"start": "node src/cli.js"
},
"keywords": [
"langchain",
"rag",
"agent",
"typescript"
],
"author": "Your Name",
"license": "MIT",
"dependencies": {
"@types/node": "^20.11.0",
"langchain": "^0.0.202",
"openai": "^4.20.0",
"ts-node": "^10.9.1",
"typescript": "^5.3.3"
"@langchain/core": "^0.0.0",
"@langchain/openai": "^0.0.0",
"@langchain/textsplitter": "^0.0.0",
"@langchain/vectorstores": "^0.0.0",
"commander": "^10.0.0",
"dotenv": "^16.0.0",
"faiss-node": "^1.0.0",
"fs-extra": "^11.0.0"
}
}