Carlexxx
feat: Implement self-contained specialist managers
99c6a62
raw
history blame
384 Bytes
# aduc_framework/tools/__init__.py
# Expõe os singletons e classes principais do sub-pacote de ferramentas.
from .hardware_manager import hardware_manager
from .video_encode_tool import video_encode_tool_singleton
from . import optimization
from . import tensor_utils
__all__ = [
"hardware_manager",
"video_encode_tool_singleton",
"optimization",
"tensor_utils",
]