openclaw
Version:
Multi-channel AI gateway with extensible messaging integrations
45 lines (44 loc) • 922 B
JSON
{
"id": "duckduckgo",
"activation": {
"onStartup": false
},
"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"
]
}
}
}
}
}
}