You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-`toolMessageLogging`: when `false`, suppresses intermediate tool-result/status messages and only sends the final reply. Default behavior is automatic: enabled for DMs and forum-style threads, suppressed for regular group chats.
1811
1813
-`removeAckAfterReply`: removes ack after reply on Slack, Discord, and Telegram.
1812
1814
-`messages.statusReactions.enabled`: enables lifecycle status reactions on Slack, Discord, and Telegram.
1813
1815
On Slack and Discord, unset keeps status reactions enabled when ack reactions are active.
"Map provider -> channel id -> model override (values are provider/model or aliases).",
1496
1496
"messages.suppressToolErrors":
1497
1497
"When true, suppress ⚠️ tool-error warnings from being shown to the user. The agent already sees errors in context and can retry. Default: false.",
1498
+
"messages.toolMessageLogging":
1499
+
"When false, suppress intermediate tool-result/status messages and only send the final reply. Default behavior is automatic: enabled for DMs/forums, suppressed for regular group chats.",
1498
1500
"messages.ackReaction": "Emoji reaction used to acknowledge inbound messages (empty disables).",
Copy file name to clipboardExpand all lines: src/config/types.messages.ts
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -118,6 +118,8 @@ export type MessagesConfig = {
118
118
removeAckAfterReply?: boolean;
119
119
/** Lifecycle status reactions configuration. */
120
120
statusReactions?: StatusReactionsConfig;
121
+
/** When false, suppress intermediate tool-result/status messages and only send the final reply. Default: auto (on for DMs/forums, off for regular groups). */
122
+
toolMessageLogging?: boolean;
121
123
/** When true, suppress ⚠️ tool-error warnings from being shown to the user. Default: false. */
122
124
suppressToolErrors?: boolean;
123
125
/** Text-to-speech settings for outbound replies. */
0 commit comments