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

This commit is contained in:
2026-06-30 00:39:05 +03:00
parent d6805973d6
commit c55f307e12
6 changed files with 226 additions and 26 deletions
+17
View File
@@ -0,0 +1,17 @@
{
"name": "rag-agent-chromadb",
"version": "1.0.0",
"description": "RAG agent using ChromaDB for vector storage and web search",
"main": "src/index.js",
"type": "module",
"scripts": {
"start": "node src/index.js",
"test": "echo \"No tests defined\""
},
"dependencies": {
"chromadb": "^0.3.0",
"dotenv": "^16.4.5",
"node-fetch": "^3.3.2",
"openai": "^4.19.1"
}
}