Files
Mai/src/resource/__init__.py
Mai Development 5d93e9715f
Some checks failed
Discord Webhook / git (push) Has been cancelled
feat(03-02): create resource module structure
- Created src/resource/__init__.py with module docstring
- Exported HardwareTierDetector (to be implemented)
- Established resource management module foundation
2026-01-27 18:29:38 -05:00

18 lines
588 B
Python

"""Resource management system for Mai.
This module provides intelligent resource detection, tier classification, and
adaptive scaling to enable Mai to run gracefully across different hardware
configurations from low-end systems to high-end workstations.
Key components:
- HardwareTierDetector: Classifies system capabilities into performance tiers
- ProactiveScaler: Monitors resources and requests scaling when needed
- ResourcePersonality: Communicates resource status in Mai's personality voice
"""
from .tiers import HardwareTierDetector
__all__ = [
"HardwareTierDetector",
]