mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-06 07:40:44 +00:00
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!
36 lines
740 B
JSON
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"]
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|