- MAX API integration (long polling) - MockPlatformClient for agent simulation - File download & workspace storage - Basic commands: /help, /start - Attachment queue: add works, list/remove need testing [WIP: attachment queue commands] [MOCK-ONLY: requires real agent for production]
23 lines
595 B
Python
23 lines
595 B
Python
"""Help text for MAX surface (single dialog, slash commands)."""
|
|
|
|
HELP_TEXT = """
|
|
Команды:
|
|
|
|
/start — начать
|
|
/help — эта справка
|
|
/clear или /reset — сбросить контекст агента
|
|
|
|
Вложения (файл без текста ставится в очередь):
|
|
|
|
/list — очередь вложений
|
|
/remove n — убрать из очереди
|
|
/remove all — очистить очередь
|
|
|
|
Подтверждения агента:
|
|
|
|
/yes / /no
|
|
"""
|
|
|
|
|
|
def get_help() -> str:
|
|
return HELP_TEXT.strip()
|