mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-21 06:51:01 +00:00
Merged via squash.
Prepared head SHA: ece9226e88
Co-authored-by: lakshyaag-tavily <266572148+lakshyaag-tavily@users.noreply.github.com>
Co-authored-by: gumadeiras <5599352+gumadeiras@users.noreply.github.com>
Reviewed-by: @gumadeiras
37 lines
840 B
JSON
37 lines
840 B
JSON
{
|
|
"id": "firecrawl",
|
|
"providerAuthEnvVars": {
|
|
"firecrawl": ["FIRECRAWL_API_KEY"]
|
|
},
|
|
"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"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|