Files
openclaw/docs/zh-CN/perplexity.md
Josh Palmer a3ec2d0734 Docs: update zh-CN translations and pipeline
What:
- update zh-CN glossary, TM, and translator prompt
- regenerate zh-CN docs and apply targeted fixes
- add zh-CN AGENTS pipeline guidance

Why:
- address terminology/spacing feedback from #6995

Tests:
- pnpm build && pnpm check && pnpm test
2026-02-03 13:23:00 -08:00

2.1 KiB
Raw Permalink Blame History

read_when, summary, title, x-i18n
read_when summary title x-i18n
你想使用 Perplexity Sonar 进行网络搜索
你需要设置 PERPLEXITY_API_KEY 或 OpenRouter
Perplexity Sonar 的 web_search 设置 Perplexity Sonar
generated_at model provider source_hash source_path workflow
2026-02-01T21:19:10Z claude-opus-4-5 pi 264d08e62e3bec854e378dad345ca209d139cd19b0469f3b25f88bb63b73ba00 perplexity.md 15

Perplexity Sonar

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

API 选项

Perplexity直连

OpenRouter替代方案

配置示例

{
  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 URLOpenClaw 会根据 API 密钥来源选择默认值:

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

模型

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

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