mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-06 05:20:43 +00:00
46 lines
1.0 KiB
JSON
46 lines
1.0 KiB
JSON
{
|
|
"id": "exa",
|
|
"activation": {
|
|
"onStartup": false
|
|
},
|
|
"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-..."
|
|
},
|
|
"webSearch.baseUrl": {
|
|
"label": "Exa Search Base URL",
|
|
"help": "Optional Exa Search API base URL override. OpenClaw appends /search when the URL does not already end there."
|
|
}
|
|
},
|
|
"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"]
|
|
},
|
|
"baseUrl": {
|
|
"type": "string"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|