From 5b14d74a5e76eb4dbfe2625f5f4ba927318d2485 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9A=D0=B8=D1=80=D0=B8=D0=BB=D0=BB=20=D0=A0=D0=BE=D0=BC?= =?UTF-8?q?=D0=B0=D0=BD=D0=BE=D0=B2?= Date: Fri, 5 Jun 2026 10:25:41 +0000 Subject: [PATCH] Update src/__init__.py --- src/__init__.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/__init__.py b/src/__init__.py index afc9923..f1726d1 100644 --- a/src/__init__.py +++ b/src/__init__.py @@ -1 +1,8 @@ -# Init file for src package \ No newline at end of file +"""Package initialization for the RAG agent project. + +This file exposes the public classes and functions that are intended to be +imported by users of the package. +""" + +from .vector_store import KnowledgeBase +from .tools import search_knowledge_base, add_to_knowledge_base \ No newline at end of file