From 5ed1eb0d0fe0e21579623ba68afa2e53a6b611c8 Mon Sep 17 00:00:00 2001 From: Teknium <127238744+teknium1@users.noreply.github.com> Date: Tue, 28 Apr 2026 07:02:30 -0700 Subject: [PATCH] docs(config): surface telegram.reactions in DEFAULT_CONFIG (#17028) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The telegram.reactions key was already wired up (gateway/config.py bridges it to TELEGRAM_REACTIONS at startup) but was undocumented and missing from DEFAULT_CONFIG, so users had no way to discover it. Add it with the existing off-by-default behavior preserved. No behavior change — runtime default stays False. Co-authored-by: teknium1 --- hermes_cli/config.py | 1 + 1 file changed, 1 insertion(+) diff --git a/hermes_cli/config.py b/hermes_cli/config.py index e94441373d..a3b4d63381 100644 --- a/hermes_cli/config.py +++ b/hermes_cli/config.py @@ -932,6 +932,7 @@ DEFAULT_CONFIG = { # Telegram platform settings (gateway mode) "telegram": { + "reactions": False, # Add 👀/✅/❌ reactions to messages during processing "channel_prompts": {}, # Per-chat/topic ephemeral system prompts (topics inherit from parent group) },