#Browser is working on one config but not the other
1 messages Β· Page 1 of 1 (latest)
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.