This commit is contained in:
+16
-18
@@ -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"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user