mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-05-29 06:31:32 +00:00
Observe unmentioned Telegram group messages
This commit is contained in:
parent
c6a992e3e3
commit
a9db0e2c74
4 changed files with 388 additions and 6 deletions
|
|
@ -75,6 +75,32 @@ Telegram bots have a **privacy mode** that is **enabled by default**. This is th
|
|||
An alternative to disabling privacy mode: promote the bot to **group admin**. Admin bots always receive all messages regardless of the privacy setting, and this avoids needing to toggle the global privacy mode.
|
||||
:::
|
||||
|
||||
### Observe group chatter without auto-replying
|
||||
|
||||
For OpenClaw/Yuanbao-style group behavior, configure Telegram so the bot can **see** ordinary group messages but only **responds** when directly triggered:
|
||||
|
||||
```yaml
|
||||
telegram:
|
||||
allowed_chats:
|
||||
- "-1001234567890"
|
||||
group_allowed_chats:
|
||||
- "-1001234567890"
|
||||
require_mention: true
|
||||
observe_unmentioned_group_messages: true
|
||||
```
|
||||
|
||||
With this mode enabled, unmentioned group messages from explicitly allowlisted chats/topics are appended to the shared chat/topic session transcript as observed context, but they do not dispatch the agent. `allowed_chats` gates where the bot responds; `group_allowed_chats` authorizes the shared group session used for observed context, so use the same chat IDs for this mode. A later `@botname` mention, reply to the bot, or configured mention pattern in that same allowlisted chat/topic can use that observed context. The triggered message is also tagged with `[nickname|user_id]` and gets a per-turn safety prompt so the model treats prior observed lines as context, not instructions addressed to the bot.
|
||||
|
||||
Equivalent environment variable:
|
||||
|
||||
```bash
|
||||
TELEGRAM_ALLOWED_CHATS=-1001234567890
|
||||
TELEGRAM_GROUP_ALLOWED_CHATS=-1001234567890
|
||||
TELEGRAM_OBSERVE_UNMENTIONED_GROUP_MESSAGES=true
|
||||
```
|
||||
|
||||
This requires Telegram to deliver ordinary group messages to the gateway, so disable BotFather privacy mode or promote the bot to group admin as described above.
|
||||
|
||||
## Step 4: Find Your User ID
|
||||
|
||||
Hermes Agent uses numeric Telegram user IDs to control access. Your user ID is **not** your username — it's a number like `123456789`.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue