QQ Bot

Connect Hermes to QQ via the Official QQ Bot API (v2) — supporting private (C2C), group @-mentions, guild, and direct messages with voice transcription.

Overview

The QQ Bot adapter uses the Official QQ Bot API to:

Prerequisites

  1. QQ Bot Application — Register at q.qq.com:

    • Create a new application and note your App ID and App Secret
    • Enable the required intents: C2C messages, Group @-messages, Guild messages
    • Configure your bot in sandbox mode for testing, or publish for production
  2. Dependencies — The adapter requires aiohttp and httpx:

    pip install aiohttp httpx
    

Configuration

Interactive setup

hermes gateway setup

Select QQ Bot from the platform list and follow the prompts.

Manual configuration

Set the required environment variables in ~/.hermes/.env:

QQ_APP_ID=your-app-id
QQ_CLIENT_SECRET=your-app-secret

Environment Variables

VariableDescriptionDefault
QQ_APP_IDQQ Bot App ID (required)
QQ_CLIENT_SECRETQQ Bot App Secret (required)
QQBOT_HOME_CHANNELOpenID for cron/notification delivery
QQBOT_HOME_CHANNEL_NAMEDisplay name for home channelHome
QQ_ALLOWED_USERSComma-separated user OpenIDs for DM accessopen (all users)
QQ_ALLOW_ALL_USERSSet to true to allow all DMsfalse
QQ_SANDBOXRoute requests to the QQ sandbox gateway for development testingfalse
QQ_STT_API_KEYAPI key for voice-to-text provider
QQ_STT_BASE_URLBase URL for STT providerhttps://open.bigmodel.cn/api/coding/paas/v4
QQ_STT_MODELSTT model nameglm-asr

Advanced Configuration

For fine-grained control, add platform settings to ~/.hermes/config.yaml:

platforms:
  qq:
    enabled: true
    extra:
      app_id: "your-app-id"
      client_secret: "your-secret"
      markdown_support: true       # enable QQ markdown (msg_type 2). Config-only; no env-var equivalent.
      dm_policy: "open"          # open | allowlist | disabled
      allow_from:
        - "user_openid_1"
      group_policy: "open"       # open | allowlist | disabled
      group_allow_from:
        - "group_openid_1"
      stt:
        provider: "zai"          # zai (GLM-ASR), openai (Whisper), etc.
        baseUrl: "https://open.bigmodel.cn/api/coding/paas/v4"
        apiKey: "your-stt-key"
        model: "glm-asr"

Voice Messages (STT)

Voice transcription works in two stages:

  1. QQ built-in ASR (free, always tried first) — QQ provides asr_refer_text in voice message attachments, which uses Tencent’s own speech recognition

  2. Configured STT provider (fallback) — If QQ’s ASR doesn’t return text, the adapter calls an OpenAI-compatible STT API:

    • Zhipu/GLM (zai): Default provider, uses glm-asr model
    • OpenAI Whisper: Set QQ_STT_BASE_URL and QQ_STT_MODEL
    • Any OpenAI-compatible STT endpoint

Troubleshooting

Bot disconnects immediately (quick disconnect)

This usually means:

Voice messages not transcribed

  1. Check if QQ’s built-in asr_refer_text is present in the attachment data
  2. If using a custom STT provider, verify QQ_STT_API_KEY is set correctly
  3. Check gateway logs for STT error messages

Messages not delivered

Connection errors