25 lines
478 B
JSON
25 lines
478 B
JSON
{
|
|
"name": "rag-agent-chromadb",
|
|
"version": "1.0.0",
|
|
"description": "RAG agent using ChromaDB and web search",
|
|
"main": "src/index.js",
|
|
"scripts": {
|
|
"start": "node src/index.js",
|
|
"test": "jest"
|
|
},
|
|
"keywords": [
|
|
"rag",
|
|
"chromadb",
|
|
"web-search"
|
|
],
|
|
"author": "Your Name",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"chromadb": "^0.3.0",
|
|
"node-fetch": "^3.3.2",
|
|
"dotenv": "^16.4.5"
|
|
},
|
|
"devDependencies": {
|
|
"jest": "^29.7.0"
|
|
}
|
|
} |