burme-coder-max / src /cli /__init__.py
amkyawdev's picture
Upload folder using huggingface_hub
a7d7463 verified
raw
history blame
247 Bytes
"""CLI module initialization"""
from .main import main
from .commands import run_command, train_command, eval_command
from .interactive import InteractiveMode
__all__ = ["main", "run_command", "train_command", "eval_command", "InteractiveMode"]