mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-20 22:40:58 +00:00
35 lines
778 B
JSON
35 lines
778 B
JSON
{
|
|
"id": "brave",
|
|
"uiHints": {
|
|
"webSearch.apiKey": {
|
|
"label": "Brave Search API Key",
|
|
"help": "Brave Search API key (fallback: BRAVE_API_KEY env var).",
|
|
"sensitive": true,
|
|
"placeholder": "BSA..."
|
|
},
|
|
"webSearch.mode": {
|
|
"label": "Brave Search Mode",
|
|
"help": "Brave Search mode: web or llm-context."
|
|
}
|
|
},
|
|
"configSchema": {
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"webSearch": {
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"apiKey": {
|
|
"type": ["string", "object"]
|
|
},
|
|
"mode": {
|
|
"type": "string",
|
|
"enum": ["web", "llm-context"]
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|