Files
big-agi/src/apps/chat/commands/CommandsHelp.tsx
T
2024-01-08 00:42:49 -08:00

14 lines
275 B
TypeScript

import type { ICommandsProvider } from './ICommandsProvider';
export const CommandsHelp: ICommandsProvider = {
id: 'cmd-help',
rank: 99,
getCommands: () => [{
primary: '/help',
alternatives: ['/?'],
description: 'Display this list of commands',
}],
};