mirror of
https://github.com/Ladebeze66/llm_lab_perso.git
synced 2025-12-13 09:06:50 +01:00
8 lines
144 B
Python
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() |