move mlflow to its own command

This commit is contained in:
2026-06-05 11:47:38 -04:00
parent d7c7158464
commit d244150d98
5 changed files with 53 additions and 35 deletions

View File

@@ -1,6 +1,6 @@
import typer
from src.commands import ai_hub, infra, init, train, upload
from src.commands import ai_hub, infra, init, mlflow, train, upload
app = typer.Typer(
help="qc-cli: End-to-end model managment for Qualcomm AI Hub.",
@@ -8,6 +8,7 @@ app = typer.Typer(
)
app.add_typer(init.app)
app.add_typer(upload.app)
app.add_typer(mlflow.app, name="mlflow")
app.add_typer(infra.app, name="infra")
app.add_typer(train.app, name="train")
app.add_typer(ai_hub.app, name="ai-hub")