From 3d5c8259f5063640d56111cac964d9b51deda619 Mon Sep 17 00:00:00 2001 From: Markov Andrey Date: Tue, 30 Jun 2026 13:53:12 +0000 Subject: [PATCH] =?UTF-8?q?=D0=A0=D0=B5=D0=B4=D0=B0=D0=BA=D1=82=D0=B8?= =?UTF-8?q?=D1=80=D0=BE=D0=B2=D0=B0=D1=82=D1=8C=20=5F=5Finit=5F=5F.py?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- rag/__init__.py | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/rag/__init__.py b/rag/__init__.py index cd21bc4..14564b8 100644 --- a/rag/__init__.py +++ b/rag/__init__.py @@ -10,10 +10,25 @@ - команды ботов, - фоновые воркеры, - утилиты. - Используется как RAG-ядром, так и тонкими XMPP-клиентами-профилями. """ __version__ = "3.0.0" __author__ = "Андрей Марков, Вениамин Кокорин" -__license__ = "ISC" \ No newline at end of file +__license__ = "ISC" + +# Импорт основных классов для удобства +from .rag_orchestrator import RAGOrchestrator +from .history_manager import HistoryManager +from .intent_router import IntentRouter +from .query_processor import QueryProcessor +from .indexing_manager import IndexingManager + +# Экспортируем их для использования в других модулях +__all__ = [ + "RAGOrchestrator", + "HistoryManager", + "IntentRouter", + "QueryProcessor", + "IndexingManager", +] \ No newline at end of file