Files
openclaw/extensions/exa/openclaw.plugin.json
Andrii Furmanets b6a8759b29 fix(web-search): restore SecretRef runtime compatibility for bundled providers (#68424)
Adds missing compatibility runtime path metadata for bundled SecretRef-capable web-search providers and keeps the manifest registry covered by a regression test.\n\nThanks @afurm!
2026-04-21 02:34:24 +01:00

36 lines
740 B
JSON

{
"id": "exa",
"providerAuthEnvVars": {
"exa": ["EXA_API_KEY"]
},
"uiHints": {
"webSearch.apiKey": {
"label": "Exa API Key",
"help": "Exa Search API key (fallback: EXA_API_KEY env var).",
"sensitive": true,
"placeholder": "exa-..."
}
},
"contracts": {
"webSearchProviders": ["exa"]
},
"configContracts": {
"compatibilityRuntimePaths": ["tools.web.search.apiKey"]
},
"configSchema": {
"type": "object",
"additionalProperties": false,
"properties": {
"webSearch": {
"type": "object",
"additionalProperties": false,
"properties": {
"apiKey": {
"type": ["string", "object"]
}
}
}
}
}
}