()
| 367 | // ========================================================================= |
| 368 | |
| 369 | private getSlashCommands(): readonly KimiSlashCommand[] { |
| 370 | const builtins = sortSlashCommands(BUILTIN_SLASH_COMMANDS).filter((command) => |
| 371 | isExperimentalFlagEnabled(command.experimentalFlag), |
| 372 | ); |
| 373 | return [...builtins, ...this.skillCommands, ...this.pluginCommands]; |
| 374 | } |
| 375 | |
| 376 | private setupAutocomplete(): void { |
| 377 | const slashCommands: SlashAutocompleteCommand[] = this.getSlashCommands().map((cmd) => { |
no test coverage detected