#Browser is working on one config but not the other

1 messages Β· Page 1 of 1 (latest)

glacial cloudBOT
#

To help others find answers, you can mark your question as solved via Right click solution message -> Apps -> βœ… Mark Solution

swift ventureBOT
#

Yep β€” I can see the issue from your paste.

Your non-working config has:

plugins: {
allow: ["telegram", "duckduckgo"]
}

That allowlist excludes the bundled browser plugin, so browser commands/tool vanish.

Fixed config patch

{
#
browser: {
enabled: true
},
plugins: {
allow: ["telegram", "duckduckgo", "browser"],
entries: {
telegram: { enabled: true },
duckduckgo: { enabled: true },
browser: { enabled: true }
}
}
}

You can also just remove plugins.allow entirely if you don’t need a strict plugin allowlist.