feat: solution for 'Экзамен: RAG-агент с ChromaDB и веб-поиском'

This commit is contained in:
2026-06-30 11:57:34 +03:00
parent 2f1a172780
commit ef8bb1bd2c
7 changed files with 151 additions and 156 deletions
+5 -15
View File
@@ -1,25 +1,15 @@
{
"name": "rag-agent-chromadb",
"version": "1.0.0",
"description": "RAG agent using ChromaDB and web search",
"description": "A simple RAG agent using ChromaDB for vector storage and web search.",
"main": "src/index.js",
"type": "module",
"scripts": {
"start": "node src/index.js",
"test": "jest"
"test": "node src/test.js"
},
"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"
"@chromadb/chromadb": "^0.1.0",
"node-fetch": "^3.3.2"
}
}