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

This commit is contained in:
2026-06-30 12:59:48 +03:00
parent 136e69e967
commit 27dcde060a
6 changed files with 190 additions and 178 deletions
+5 -6
View File
@@ -1,17 +1,16 @@
{
"name": "rag-agent-chromadb-websearch",
"version": "1.0.0",
"description": "RAG agent using ChromaDB and web search with Ollama LLM",
"description": "RAG agent using ChromaDB and OpenAI API with web search",
"main": "src/index.js",
"type": "module",
"type": "commonjs",
"scripts": {
"start": "node src/index.js"
},
"dependencies": {
"langchain": "^1.0.0",
"chromadb": "^1.0.0",
"node-fetch": "^3.3.0",
"dotenv": "^16.0.0",
"ollama": "^0.1.0"
"dotenv": "^16.4.5",
"node-fetch": "^2.6.7",
"openai": "^4.12.0"
}
}