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