alwaysai
Version:
The alwaysAI command-line interface (CLI)
12 lines (10 loc) • 333 B
text/typescript
import { AppJsonFile } from '../../../core/app';
import { appShowCliLeaf as appShow } from '../show';
export const showModels: typeof appShow = {
...appShow,
description: 'Show this application\'s "models" configuration',
async action() {
const appJsonFile = AppJsonFile();
return appJsonFile.describeModels();
}
};