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

This commit is contained in:
2026-06-30 16:52:49 +03:00
parent 99e229be28
commit da77940eae
6 changed files with 192 additions and 254 deletions
+6 -5
View File
@@ -1,16 +1,17 @@
{
"name": "rag-agent-chromadb-websearch",
"version": "1.0.0",
"description": "RAG agent using ChromaDB and OpenAI API with web search",
"description": "RAG agent using ChromaDB and web search with LangChain 1.x",
"main": "src/index.js",
"type": "commonjs",
"type": "module",
"scripts": {
"start": "node src/index.js"
},
"dependencies": {
"chromadb": "^1.0.0",
"dotenv": "^16.4.5",
"node-fetch": "^2.6.7",
"openai": "^4.12.0"
"dotenv": "^16.0.3",
"langchain": "^1.0.0",
"openai": "^3.3.0",
"serpapi": "^2.0.0"
}
}