Files
fckbot/rag/__init__.py
Markov Andrey 59feffc190 Update 9 files
- /rag/config_models.py
- /rag/utils/config_loader.py
- /rag/auth.py
- /rag/rag_server.py
- /rag/rag_api.py
- /rag/rag_orchestrator.py
- /rag/__init__.py
- /bots/xmpp/client.py
- /bots/rag_client.py
2026-06-30 14:27:34 +00:00

25 lines
660 B
Python
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# -*- 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",
]