26 lines
No EOL
630 B
Python
26 lines
No EOL
630 B
Python
"""Help handler for MAX surface."""
|
|
|
|
HELP_TEXT = """
|
|
Available commands:
|
|
|
|
Chat management:
|
|
!new [name] — Create a new chat
|
|
!chats — List active chats
|
|
!rename <name> — Rename current chat
|
|
!archive — Archive current chat
|
|
!clear / !reset — Reset chat context
|
|
|
|
Attachments:
|
|
!list — Show attachment queue
|
|
!remove <n> — Remove attachment from queue
|
|
!remove all — Clear attachment queue
|
|
|
|
Actions:
|
|
!yes — Confirm agent action
|
|
!no — Cancel agent action
|
|
!help — Show this help
|
|
"""
|
|
|
|
|
|
def get_help() -> str:
|
|
return HELP_TEXT.strip() |