10 lines
390 B
Python
10 lines
390 B
Python
"""Hermes health monitor — system resources + model management.
|
|
|
|
Monitors the local machine (Hermes/M3 Max) for memory pressure, disk usage,
|
|
Ollama model health, zombie processes, and network connectivity.
|
|
"""
|
|
|
|
from infrastructure.hermes.monitor import HealthLevel, HealthReport, HermesMonitor, hermes_monitor
|
|
|
|
__all__ = ["HermesMonitor", "HealthLevel", "HealthReport", "hermes_monitor"]
|