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

This commit is contained in:
2026-06-30 12:09:29 +03:00
parent 4f5e00efdb
commit 136e69e967
6 changed files with 181 additions and 179 deletions
+8 -6
View File
@@ -1,15 +1,17 @@
{
"name": "rag-agent-chromadb",
"name": "rag-agent-chromadb-websearch",
"version": "1.0.0",
"description": "A simple RAG agent using ChromaDB for vector storage and web search.",
"description": "RAG agent using ChromaDB and web search with Ollama LLM",
"main": "src/index.js",
"type": "module",
"scripts": {
"start": "node src/index.js",
"test": "node src/test.js"
"start": "node src/index.js"
},
"dependencies": {
"@chromadb/chromadb": "^0.1.0",
"node-fetch": "^3.3.2"
"langchain": "^1.0.0",
"chromadb": "^1.0.0",
"node-fetch": "^3.3.0",
"dotenv": "^16.0.0",
"ollama": "^0.1.0"
}
}