From 923ff72893d7cefaf9dfc60d41f19207e640e1a1 Mon Sep 17 00:00:00 2001 From: Louis Date: Thu, 23 May 2024 13:21:35 +0700 Subject: [PATCH] chore: add model pull alias --- .../src/infrastructure/commanders/cortex-command.commander.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cortex-js/src/infrastructure/commanders/cortex-command.commander.ts b/cortex-js/src/infrastructure/commanders/cortex-command.commander.ts index 05aa30271..1223f900f 100644 --- a/cortex-js/src/infrastructure/commanders/cortex-command.commander.ts +++ b/cortex-js/src/infrastructure/commanders/cortex-command.commander.ts @@ -4,6 +4,7 @@ import { ChatCommand } from './chat.command'; import { ModelsCommand } from './models.command'; import { InitCommand } from './init.command'; import { RunCommand } from './shortcuts/run.command'; +import { ModelPullCommand } from './models/model-pull.command'; @RootCommand({ subCommands: [ @@ -12,6 +13,7 @@ import { RunCommand } from './shortcuts/run.command'; ChatCommand, InitCommand, RunCommand, + ModelPullCommand, ], description: 'Cortex CLI', })