Files
agent-s-rag-pamyatyu/package.json
T
2026-06-25 12:41:22 +03:00

26 lines
553 B
JSON

{
"name": "agent-rag-memory",
"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"
},
"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"
}
}