UNPKG

alwaysai

Version:

The alwaysAI command-line interface (CLI)

27 lines (25 loc) 827 B
import { createBranch } from '@alwaysai/alwayscli'; import { appShowCliLeaf } from './show'; import { appModelsCliBranch } from './models'; import { appUnderscoreInstallCliLeaf } from './_install'; import { appUnderscoreStartCliLeaf } from './_start'; import { appConfigureCliLeaf } from './configure'; import { appDeployCliLeaf } from './deploy'; import { appStartCliLeaf } from './start'; import { appExecCliLeaf } from './exec'; import { appShellCliLeaf } from './shell'; export const appCliBranch = createBranch({ name: 'app', description: 'Develop an alwaysAI application', subcommands: [ appConfigureCliLeaf, appDeployCliLeaf, appExecCliLeaf, appModelsCliBranch, appStartCliLeaf, appShellCliLeaf, appShowCliLeaf, appUnderscoreInstallCliLeaf, appUnderscoreStartCliLeaf, ], });