feat(03-02): create resource module structure
Some checks failed
Discord Webhook / git (push) Has been cancelled
Some checks failed
Discord Webhook / git (push) Has been cancelled
- Created src/resource/__init__.py with module docstring - Exported HardwareTierDetector (to be implemented) - Established resource management module foundation
This commit is contained in:
17
src/resource/__init__.py
Normal file
17
src/resource/__init__.py
Normal file
@@ -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",
|
||||||
|
]
|
||||||
Reference in New Issue
Block a user