feat: add uninstall command (#5208)

This commit is contained in:
rari404
2025-12-07 14:23:30 -05:00
committed by GitHub
parent 9c938eec73
commit ec27759f90
2 changed files with 346 additions and 0 deletions

View File

@@ -6,6 +6,7 @@ import { Log } from "./util/log"
import { AuthCommand } from "./cli/cmd/auth"
import { AgentCommand } from "./cli/cmd/agent"
import { UpgradeCommand } from "./cli/cmd/upgrade"
import { UninstallCommand } from "./cli/cmd/uninstall"
import { ModelsCommand } from "./cli/cmd/models"
import { UI } from "./cli/ui"
import { Installation } from "./installation"
@@ -86,6 +87,7 @@ const cli = yargs(hideBin(process.argv))
.command(AuthCommand)
.command(AgentCommand)
.command(UpgradeCommand)
.command(UninstallCommand)
.command(ServeCommand)
.command(WebCommand)
.command(ModelsCommand)