llm_lab_perso/monitor.py
2025-04-21 17:36:30 +02:00

8 lines
144 B
Python

#!/usr/bin/env python3
"""
Launcher for LLM Lab system monitor
"""
from utils.system_monitor import main
if __name__ == "__main__":
main()