max first steps
This commit is contained in:
parent
3340c126d6
commit
eed1533cdc
10 changed files with 589 additions and 0 deletions
26
adapter/max/handlers/help.py
Normal file
26
adapter/max/handlers/help.py
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
"""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()
|
||||
Loading…
Add table
Add a link
Reference in a new issue