mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-21 10:16:44 +00:00
* docs(secrets): remove retired web credential paths * refactor(web): remove retired provider compatibility paths * refactor(providers): delete retired compatibility routes * refactor(secrets): remove retired credential aliases * refactor(plugin-sdk): delete retired compatibility surfaces * docs(plugin-sdk): remove retired migration guidance * chore(plugin-sdk): refresh rebased surface budgets * chore(plugin-sdk): refresh API removal baseline * refactor(compat): migrate retired internal callers * chore(plugin-sdk): refresh current-main baselines * test(config): migrate plugin-owned secret assertions * test(gateway): narrow plugin secret refs * fix(plugin-sdk): preserve private boundary type identity * chore(compat): remove stale sweep references * chore(lint): lower max-lines budget * refactor(secrets): remove unused web helper * build(plugin-sdk): drop removed compat entries * chore(plugin-sdk): refresh rebased API baseline * chore(plugin-sdk): use Linux API baseline hash * fix(plugin-sdk): preserve private bundled build entries * fix(plugin-sdk): package private runtime facades * fix(plugins): preserve external credential contracts
56 lines
1.2 KiB
JSON
56 lines
1.2 KiB
JSON
{
|
|
"id": "perplexity",
|
|
"icon": "https://cdn.simpleicons.org/perplexity",
|
|
"activation": {
|
|
"onStartup": false
|
|
},
|
|
"setup": {
|
|
"providers": [
|
|
{
|
|
"id": "perplexity",
|
|
"envVars": ["PERPLEXITY_API_KEY", "OPENROUTER_API_KEY"]
|
|
}
|
|
]
|
|
},
|
|
"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."
|
|
}
|
|
},
|
|
"contracts": {
|
|
"webSearchProviders": ["perplexity"]
|
|
},
|
|
"configSchema": {
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"webSearch": {
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"apiKey": {
|
|
"type": ["string", "object"]
|
|
},
|
|
"baseUrl": {
|
|
"type": "string"
|
|
},
|
|
"model": {
|
|
"type": "string"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|