codecamp

OpenClaw Perplexity Sonar 的 web_search 设置

Perplexity Sonar

OpenClaw 可以使用 Perplexity Sonar 作为 web_search 工具。你可以通过 Perplexity 的直连 API 或通过 OpenRouter 连接。

API 选项

Perplexity(直连)

  • Base URL:https://api.perplexity.ai
  • 环境变量:PERPLEXITY_API_KEY

OpenRouter(替代方案)

  • Base URL:https://openrouter.ai/api/v1
  • 环境变量:OPENROUTER_API_KEY
  • 支持预付费/加密货币积分。

配置示例

{
  tools: {
    web: {
      search: {
        provider: "perplexity",
        perplexity: {
          apiKey: "pplx-...",
          baseUrl: "https://api.perplexity.ai",
          model: "perplexity/sonar-pro",
        },
      },
    },
  },
}

从 Brave 切换

{
  tools: {
    web: {
      search: {
        provider: "perplexity",
        perplexity: {
          apiKey: "pplx-...",
          baseUrl: "https://api.perplexity.ai",
        },
      },
    },
  },
}

如果同时设置了 PERPLEXITY_API_KEYOPENROUTER_API_KEY,请设置 tools.web.search.perplexity.baseUrl(或 tools.web.search.perplexity.apiKey)以消除歧义。

如果未设置 base URL,OpenClaw 会根据 API 密钥来源选择默认值:

  • PERPLEXITY_API_KEYpplx-... → 直连 Perplexity(https://api.perplexity.ai
  • OPENROUTER_API_KEYsk-or-... → OpenRouter(https://openrouter.ai/api/v1
  • 未知密钥格式 → OpenRouter(安全回退)

模型

  • perplexity/sonar — 带网络搜索的快速问答
  • perplexity/sonar-pro(默认) — 多步推理 + 网络搜索
  • perplexity/sonar-reasoning-pro — 深度研究

请参阅 Web 工具 了解 web_search 配置详情。

OpenClaw 用于 web_search 的 Brave Search API 设置
OpenClaw 提升的 exec 模式和 /elevated 指令
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

OpenClaw 消息渠道

OpenClaw 工具

OpenClaw 模型

OpenClaw 平台

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }