26 lines
553 B
JSON
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"
|
|
}
|
|
} |