mirror of https://github.com/openclaw/openclaw.git
33 lines
745 B
JSON
33 lines
745 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."
|
|
}
|
|
},
|
|
"configSchema": {
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"webSearch": {
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"region": {
|
|
"type": "string"
|
|
},
|
|
"safeSearch": {
|
|
"type": "string",
|
|
"enum": ["strict", "moderate", "off"]
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|