#How to disable it showing me the tool being used in telegram
11 messages · Page 1 of 1 (latest)
I'll check the docs and source for the exact config, then I'll give you the cleanest fix.
That’s usually verbose being on for that session.
In the Telegram chat where you see it, send these as standalone messages:
/verbose off
/trace off
/reasoning off
If you want it off by default, make sure your config does not have verbose enabled, for example:
agents: {
defaults: {
verboseDefault: "off",
},
}
If it still keeps showing, please paste:
openclaw --version
and I’ll help you check whether it’s a session override or config default.
Docs:
https://docs.openclaw.ai/help/faq
https://docs.openclaw.ai/tools/thinking
https://docs.openclaw.ai/gateway/configuration-reference
2026.4.12.
Yep, on 2026.4.12 this should be controllable.
Most likely fix:
/verbose off
Send that in the Telegram chat itself as a standalone message.
If it still shows tool bubbles after that, then it’s usually one of these:
-
Session override is stuck
- Open Control UI, find that session, set verbose back to inherit
-
Config default is forcing it on
- Check for:
agents: {
defaults: {
verboseDefault: "on", // change to "off"
},
}
- Also check per-agent
verboseDefault
- Other debug visibility is on
- Also send:
/trace off /reasoning off
Docs:
https://docs.openclaw.ai/help/faq
https://docs.openclaw.ai/tools/thinking
If you want, paste your agents config block and I’ll point to the exact line to change.
"agents": {
"defaults": {
"workspace": "/home/claudeuser/.openclaw/workspace",
"models": {
"openai-codex/gpt-5.4": {}
},
"model": {
"primary": "openai-codex/gpt-5.4"
}
},
"list": [
{
"id": "main",
"tools": {
"profile": "full",
"alsoAllow": [
"browser",
"canvas",
"message",
"gateway",
"nodes",
"agents_list",
"tts"
],
"deny": [
"image_generate",
"music_generate",
"video_generate"
]
}
}
]
},
That config looks fine, I don’t see anything there forcing tool chatter on.
So this is very likely a session-level verbose setting in that Telegram chat, not your agent config.
Try this in the Telegram chat:
/verbose
/verbose off
/trace off
/reasoning off
A couple useful notes:
/verboseby itself should show whether that session is currentlyon,full, oroff- your
tools.profile: "full"is not the thing causing this