UNPKG

alwaysai

Version:

The alwaysAI command-line interface (CLI)

12 lines (10 loc) 340 B
import { createBranch } from '@alwaysai/alwayscli'; import { init } from './init'; import { publish } from './publish'; import { modelVersion } from './version'; export const model = createBranch({ name: 'model', hidden: true, description: 'Log in or log out of the alwaysAI cloud', subcommands: [init, publish, modelVersion], });