alwaysai
Version:
The alwaysAI command-line interface (CLI)
11 lines (9 loc) • 311 B
text/typescript
import { appShowCliLeaf as appShow } from '../show';
import { appConfigFile } from '../../../util/app-config-file';
export const showModels: typeof appShow = {
...appShow,
description: 'Show this application\'s "models" configuration',
async action() {
return appConfigFile.describeModels();
},
};