mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-19 05:50:47 +00:00
34 lines
769 B
JSON
34 lines
769 B
JSON
{
|
|
"id": "firecrawl",
|
|
"uiHints": {
|
|
"webSearch.apiKey": {
|
|
"label": "Firecrawl Search API Key",
|
|
"help": "Firecrawl API key for web search (fallback: FIRECRAWL_API_KEY env var).",
|
|
"sensitive": true,
|
|
"placeholder": "fc-..."
|
|
},
|
|
"webSearch.baseUrl": {
|
|
"label": "Firecrawl Search Base URL",
|
|
"help": "Firecrawl Search base URL override."
|
|
}
|
|
},
|
|
"configSchema": {
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"webSearch": {
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"apiKey": {
|
|
"type": ["string", "object"]
|
|
},
|
|
"baseUrl": {
|
|
"type": "string"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|