mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-21 15:01:03 +00:00
Merged via squash.
Prepared head SHA: ece9226e88
Co-authored-by: lakshyaag-tavily <266572148+lakshyaag-tavily@users.noreply.github.com>
Co-authored-by: gumadeiras <5599352+gumadeiras@users.noreply.github.com>
Reviewed-by: @gumadeiras
44 lines
1.0 KiB
JSON
44 lines
1.0 KiB
JSON
{
|
|
"id": "perplexity",
|
|
"providerAuthEnvVars": {
|
|
"perplexity": ["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."
|
|
}
|
|
},
|
|
"configSchema": {
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"webSearch": {
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"apiKey": {
|
|
"type": ["string", "object"]
|
|
},
|
|
"baseUrl": {
|
|
"type": "string"
|
|
},
|
|
"model": {
|
|
"type": "string"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|