()
| 94 | |
| 95 | // Display available commands |
| 96 | displayHelp(): void { |
| 97 | console.log(chalk.bold('\nAvailable commands:')); |
| 98 | console.log(chalk.cyan(' /help') + ' - Show this help message'); |
| 99 | console.log(chalk.cyan(' /tools') + ' - List available tools'); |
| 100 | console.log(chalk.cyan(' /exit') + ' - Exit the application'); |
| 101 | console.log(); |
| 102 | } |
| 103 | // Display available tools |
| 104 | displayTools(tools: any[]): void { |
| 105 | if (tools.length === 0) { |