From e185b4d6cfb70fbac36703f109a638c372c2cb83 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9C=D0=B0=D1=80=D0=B0=D1=82=20=D0=A4=D0=B0=D0=B7=D1=8B?= =?UTF-8?q?=D0=BB=D0=BE=D0=B2?= Date: Fri, 15 May 2026 08:48:35 +0000 Subject: [PATCH] add file --- rag_tools.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rag_tools.py b/rag_tools.py index c8c2ed7..4cb1355 100644 --- a/rag_tools.py +++ b/rag_tools.py @@ -1,8 +1,8 @@ from langchain.tools import tool -from vector_store import QdrantStore +from vector_store import ChromaStore from chunker import get_chunks -store = QdrantStore() +store = ChromaStore() @tool def search_knowledge_base(query: str, max_results: int = 5) -> str: