help.py 628 B

1234567891011121314151617
  1. from nio.events.room_events import RoomMessageText
  2. from nio.rooms import MatrixRoom
  3. async def command_help(room: MatrixRoom, event: RoomMessageText, bot):
  4. body = """Available commands:
  5. !gptbot help - Show this message
  6. !gptbot newroom <room name> - Create a new room and invite yourself to it
  7. !gptbot stats - Show usage statistics for this room
  8. !gptbot botinfo - Show information about the bot
  9. !gptbot coin - Flip a coin (heads or tails)
  10. !gptbot ignoreolder - Ignore messages before this point as context
  11. !gptbot systemmessage - Get or set the system message for this room
  12. """
  13. await bot.send_message(room, body, True)