Files
openclaw/extensions/duckduckgo/openclaw.plugin.json
2026-03-27 01:45:52 +00:00

36 lines
808 B
JSON

{
"id": "duckduckgo",
"uiHints": {
"webSearch.region": {
"label": "DuckDuckGo Region",
"help": "Optional DuckDuckGo region code such as us-en, uk-en, or de-de."
},
"webSearch.safeSearch": {
"label": "DuckDuckGo SafeSearch",
"help": "SafeSearch level for DuckDuckGo results."
}
},
"contracts": {
"webSearchProviders": ["duckduckgo"]
},
"configSchema": {
"type": "object",
"additionalProperties": false,
"properties": {
"webSearch": {
"type": "object",
"additionalProperties": false,
"properties": {
"region": {
"type": "string"
},
"safeSearch": {
"type": "string",
"enum": ["strict", "moderate", "off"]
}
}
}
}
}
}