feat: restore experimental flag for websearch/codesearch tools (#5132)

Co-authored-by: opencode-agent[bot] <opencode-agent[bot]@users.noreply.github.com>
Co-authored-by: rekram1-node <rekram1-node@users.noreply.github.com>
This commit is contained in:
Ben Vargas
2025-12-06 13:29:34 -07:00
committed by GitHub
parent a59c80e076
commit 419983c0f1
2 changed files with 6 additions and 1 deletions

View File

@@ -113,7 +113,10 @@ export namespace ToolRegistry {
const result = await Promise.all(
tools
.filter((t) => {
if (t.id === "codesearch" || t.id === "websearch") return providerID === "opencode"
// Enable websearch/codesearch for zen users OR via enable flag
if (t.id === "codesearch" || t.id === "websearch") {
return providerID === "opencode" || Flag.OPENCODE_ENABLE_EXA
}
return true
})
.map(async (t) => ({