# -*- coding: utf-8 -*- """ Пакет rag – RAG-ядро платформы Эфцекабот. """ __version__ = "3.0.0" __author__ = "Андрей Марков, Вениамин Кокорин" __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 from .auth import verify_api_key, set_auth_config __all__ = [ "RAGOrchestrator", "HistoryManager", "IntentRouter", "QueryProcessor", "IndexingManager", "verify_api_key", "set_auth_config", ]