surfaces/adapter/max/handlers/help.py

26 lines
808 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

"""Help text for MAX surface (single dialog, slash commands)."""
HELP_TEXT = """
Команды (/ как в Telegram):
/start — начать
/help — эта справка
/clear или /reset — сбросить контекст агента
Вложения (файл без текста ставится в очередь):
/list — очередь вложений
/remove n — убрать из очереди
/remove all — очистить очередь
Подтверждения агента:
/yes / /no
Команды вида /new, /chats, /rename, /archive в MAX не нужны —
у вас один диалог с ботом; контекст сбрасывайте через /clear.
"""
def get_help() -> str:
return HELP_TEXT.strip()