diff --git a/src/resource/__init__.py b/src/resource/__init__.py new file mode 100644 index 0000000..386e083 --- /dev/null +++ b/src/resource/__init__.py @@ -0,0 +1,17 @@ +"""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", +]