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

This commit is contained in:
2026-06-30 11:25:46 +03:00
parent c55f307e12
commit eada1859e4
9 changed files with 187 additions and 159 deletions
+13 -5
View File
@@ -1,17 +1,25 @@
{
"name": "rag-agent-chromadb",
"version": "1.0.0",
"description": "RAG agent using ChromaDB for vector storage and web search",
"description": "RAG agent using ChromaDB and web search",
"main": "src/index.js",
"type": "module",
"scripts": {
"start": "node src/index.js",
"test": "echo \"No tests defined\""
"test": "jest"
},
"keywords": [
"rag",
"chromadb",
"web-search"
],
"author": "Your Name",
"license": "MIT",
"dependencies": {
"chromadb": "^0.3.0",
"dotenv": "^16.4.5",
"node-fetch": "^3.3.2",
"openai": "^4.19.1"
"dotenv": "^16.4.5"
},
"devDependencies": {
"jest": "^29.7.0"
}
}