sail / sail_scripts /core /dashboard.py
muterornament's picture
Industrialize: Backup sovereign training pipeline
e5b79b7 verified
Raw
History Blame Contribute Delete
481 Bytes
from utils.logger import get_logger
logger = get_logger("sail.dashboard")
class Dashboard:
def __init__(self, settings):
self.settings = settings
def start(self):
print("\n" + "="*60)
print(" SAIL v2 Dashboard (Stub)")
print(" In a full implementation, this would launch a web UI.")
print(" Please use 'python sail.py --mode api' for the REST API.")
print("="*60 + "\n")
logger.info("Dashboard started (stub)")