Source code for pi_portal.modules.integrations.chat.cli.commands.command_help

"""Chat CLI Help command."""

from .bases.command import ChatCommandBase


[docs]class HelpCommand(ChatCommandBase): """Chat CLI command to list the available commands."""
[docs] def invoke(self) -> None: """Send a list of available CLI commands.""" self.chatbot.task_scheduler_client.chat_send_message( f"Available Commands: {', '.join(self.chatbot.command_list)}" )