Skip to content

BYM Mode Advanced

Configure persona mode for natural, human-like interactions.

Overview

BYM (Be Your Mind) mode makes AI behave more like a real person, with proactive messages and personality.

Advanced Feature

BYM mode requires careful configuration. Inappropriate settings may cause spam or unwanted behavior.

Basic Configuration

yaml
bym:
  enabled: false         # Disabled by default
  persona: "default"     # Persona preset
  proactiveChat: false   # Proactive messages

Persona Configuration

yaml
bym:
  enabled: true
  persona:
    name: "小助手"
    personality: friendly
    speakingStyle: casual
    interests:
      - music
      - technology
      - games

Proactive Chat

AI initiates conversations:

yaml
bym:
  proactiveChat:
    enabled: true
    minInterval: 3600000   # Min 1 hour between
    maxPerDay: 5           # Max 5 per day
    triggers:
      - timeOfDay           # Morning greetings
      - groupActivity       # When group is active
      - keywords            # Specific topics

Response Style

yaml
bym:
  style:
    useEmoji: true
    casualLanguage: true
    shortResponses: true
    personality:
      cheerful: 0.8
      helpful: 0.9
      humorous: 0.5

Group-Specific BYM

yaml
groups:
  123456789:
    bym:
      enabled: true
      persona: "catgirl"
      proactiveChat: true
  987654321:
    bym:
      enabled: false

Safety Controls

yaml
bym:
  safety:
    maxMessagesPerMinute: 3
    cooldownAfterError: 300000
    blacklistKeywords: []
    requireMention: true

Personality Templates

TemplateDescription
defaultBalanced assistant
friendlyWarm and approachable
professionalFormal and precise
playfulFun and casual
catgirlCute cat persona

Commands

txt
#bym开启          # Enable BYM mode
#bym关闭          # Disable BYM mode
#bym状态          # View BYM status

Best Practices

PracticeReason
Start conservativePrevent spam
Test in private groupAvoid disruption
Monitor closelyCatch issues early
Set rate limitsPrevent abuse

Next Steps

Released under the MIT License