Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions hud/cli/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
# ---------------------------------------------------------------------------

from .cancel import cancel_command # noqa: E402
from .check import check_command # noqa: E402
from .client import client_app # noqa: E402
from .deploy import deploy_command # noqa: E402
from .eval import eval_command # noqa: E402
Expand All @@ -49,6 +50,7 @@
app.command(name="eval")(eval_command)
app.command(name="init")(init_command)
app.command(name="cancel")(cancel_command)
app.command(name="check")(check_command)
app.add_typer(models_app, name="models")
app.add_typer(jobs_app, name="jobs")
app.add_typer(trace_app, name="trace")
Expand Down
Loading
Loading