Files
openclaw/extensions/perplexity/openclaw.plugin.json
2026-03-17 23:39:51 -05:00

41 lines
956 B
JSON

{
"id": "perplexity",
"uiHints": {
"webSearch.apiKey": {
"label": "Perplexity API Key",
"help": "Perplexity or OpenRouter API key for web search.",
"sensitive": true,
"placeholder": "pplx-..."
},
"webSearch.baseUrl": {
"label": "Perplexity Base URL",
"help": "Optional Perplexity/OpenRouter chat-completions base URL override."
},
"webSearch.model": {
"label": "Perplexity Model",
"help": "Optional Sonar/OpenRouter model override."
}
},
"configSchema": {
"type": "object",
"additionalProperties": false,
"properties": {
"webSearch": {
"type": "object",
"additionalProperties": false,
"properties": {
"apiKey": {
"type": ["string", "object"]
},
"baseUrl": {
"type": "string"
},
"model": {
"type": "string"
}
}
}
}
}
}