惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

B
Blog
D
Docker
J
Java Code Geeks
腾讯CDC
Blog — PlanetScale
Blog — PlanetScale
G
Google Developers Blog
M
MIT News - Artificial intelligence
L
LangChain Blog
T
The Blog of Author Tim Ferriss
P
Proofpoint News Feed
MyScale Blog
MyScale Blog
博客园 - Franky
GbyAI
GbyAI
Hugging Face - Blog
Hugging Face - Blog
aimingoo的专栏
aimingoo的专栏
Last Week in AI
Last Week in AI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 聂微东
N
Netflix TechBlog - Medium
B
Blog RSS Feed
Y
Y Combinator Blog
阮一峰的网络日志
阮一峰的网络日志
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Google DeepMind News
Google DeepMind News

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
docs(tools): convert perplexity-search params to ParamFie...
vincentkoc · 2026-04-24 · via Recent Commits to openclaw:main

@@ -99,18 +99,45 @@ If `provider: "perplexity"` is configured and the Perplexity key SecretRef is un

9999100100

These parameters apply to the native Perplexity Search API path.

101101102-

| Parameter | Description |

103-

| --------------------- | ---------------------------------------------------- |

104-

| `query` | Search query (required) |

105-

| `count` | Number of results to return (1-10, default: 5) |

106-

| `country` | 2-letter ISO country code (e.g., "US", "DE") |

107-

| `language` | ISO 639-1 language code (e.g., "en", "de", "fr") |

108-

| `freshness` | Time filter: `day` (24h), `week`, `month`, or `year` |

109-

| `date_after` | Only results published after this date (YYYY-MM-DD) |

110-

| `date_before` | Only results published before this date (YYYY-MM-DD) |

111-

| `domain_filter` | Domain allowlist/denylist array (max 20) |

112-

| `max_tokens` | Total content budget (default: 25000, max: 1000000) |

113-

| `max_tokens_per_page` | Per-page token limit (default: 2048) |

102+

<ParamField path="query" type="string" required>

103+

Search query.

104+

</ParamField>

105+106+

<ParamField path="count" type="number" default="5">

107+

Number of results to return (1–10).

108+

</ParamField>

109+110+

<ParamField path="country" type="string">

111+

2-letter ISO country code (e.g. `US`, `DE`).

112+

</ParamField>

113+114+

<ParamField path="language" type="string">

115+

ISO 639-1 language code (e.g. `en`, `de`, `fr`).

116+

</ParamField>

117+118+

<ParamField path="freshness" type="'day' | 'week' | 'month' | 'year'">

119+

Time filter — `day` is 24 hours.

120+

</ParamField>

121+122+

<ParamField path="date_after" type="string">

123+

Only results published after this date (`YYYY-MM-DD`).

124+

</ParamField>

125+126+

<ParamField path="date_before" type="string">

127+

Only results published before this date (`YYYY-MM-DD`).

128+

</ParamField>

129+130+

<ParamField path="domain_filter" type="string[]">

131+

Domain allowlist/denylist array (max 20).

132+

</ParamField>

133+134+

<ParamField path="max_tokens" type="number" default="25000">

135+

Total content budget (max 1000000).

136+

</ParamField>

137+138+

<ParamField path="max_tokens_per_page" type="number" default="2048">

139+

Per-page token limit.

140+

</ParamField>

114141115142

For the legacy Sonar/OpenRouter compatibility path:

116143