mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-19 05:50:47 +00:00
41 lines
956 B
JSON
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"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|