Files
Moltbot/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

85 lines
2.1 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
---
read_when:
- 你想使用 Perplexity Sonar 进行网络搜索
- 你需要设置 PERPLEXITY_API_KEY 或 OpenRouter
summary: Perplexity Sonar 的 web_search 设置
title: Perplexity Sonar
x-i18n:
generated_at: "2026-02-01T21:19:10Z"
model: claude-opus-4-5
provider: pi
source_hash: 264d08e62e3bec854e378dad345ca209d139cd19b0469f3b25f88bb63b73ba00
source_path: perplexity.md
workflow: 15
---
# Perplexity Sonar
OpenClaw 可以使用 Perplexity Sonar 作为 `web_search` 工具。你可以通过 Perplexity 的直连 API 或通过 OpenRouter 连接。
## API 选项
### Perplexity直连
- Base URLhttps://api.perplexity.ai
- 环境变量:`PERPLEXITY_API_KEY`
### OpenRouter替代方案
- Base URLhttps://openrouter.ai/api/v1
- 环境变量:`OPENROUTER_API_KEY`
- 支持预付费/加密货币积分。
## 配置示例
```json5
{
tools: {
web: {
search: {
provider: "perplexity",
perplexity: {
apiKey: "pplx-...",
baseUrl: "https://api.perplexity.ai",
model: "perplexity/sonar-pro",
},
},
},
},
}
```
## 从 Brave 切换
```json5
{
tools: {
web: {
search: {
provider: "perplexity",
perplexity: {
apiKey: "pplx-...",
baseUrl: "https://api.perplexity.ai",
},
},
},
},
}
```
如果同时设置了 `PERPLEXITY_API_KEY``OPENROUTER_API_KEY`,请设置 `tools.web.search.perplexity.baseUrl`(或 `tools.web.search.perplexity.apiKey`)以消除歧义。
如果未设置 base URLOpenClaw 会根据 API 密钥来源选择默认值:
- `PERPLEXITY_API_KEY``pplx-...` → 直连 Perplexity`https://api.perplexity.ai`
- `OPENROUTER_API_KEY``sk-or-...` → OpenRouter`https://openrouter.ai/api/v1`
- 未知密钥格式 → OpenRouter安全回退
## 模型
- `perplexity/sonar` — 带网络搜索的快速问答
- `perplexity/sonar-pro`(默认) — 多步推理 + 网络搜索
- `perplexity/sonar-reasoning-pro` — 深度研究
请参阅 [Web 工具](/tools/web) 了解 web_search 配置详情。