mirror of https://github.com/openclaw/openclaw.git
Fix incorrect rendering of brave costs in docs (#44989)
Merged via squash.
Prepared head SHA: 8c69de8222
Co-authored-by: keelanfh <19519457+keelanfh@users.noreply.github.com>
Co-authored-by: altaywtf <9790196+altaywtf@users.noreply.github.com>
Reviewed-by: @altaywtf
This commit is contained in:
parent
5b63f6486f
commit
fc408bba37
|
|
@ -118,6 +118,7 @@ Docs: https://docs.openclaw.ai
|
||||||
- Delivery/dedupe: trim completed direct-cron delivery cache correctly and keep mirrored transcript dedupe active even when transcript files contain malformed lines. (#44666) thanks @frankekn.
|
- Delivery/dedupe: trim completed direct-cron delivery cache correctly and keep mirrored transcript dedupe active even when transcript files contain malformed lines. (#44666) thanks @frankekn.
|
||||||
- CLI/thinking help: add the missing `xhigh` level hints to `openclaw cron add`, `openclaw cron edit`, and `openclaw agent` so the help text matches the levels already accepted at runtime. (#44819) Thanks @kiki830621.
|
- CLI/thinking help: add the missing `xhigh` level hints to `openclaw cron add`, `openclaw cron edit`, and `openclaw agent` so the help text matches the levels already accepted at runtime. (#44819) Thanks @kiki830621.
|
||||||
- Agents/Anthropic replay: drop replayed assistant thinking blocks for native Anthropic and Bedrock Claude providers so persisted follow-up turns no longer fail on stored thinking blocks. (#44843) Thanks @jmcte.
|
- Agents/Anthropic replay: drop replayed assistant thinking blocks for native Anthropic and Bedrock Claude providers so persisted follow-up turns no longer fail on stored thinking blocks. (#44843) Thanks @jmcte.
|
||||||
|
- Docs/Brave pricing: escape literal dollar signs in Brave Search cost text so the docs render the free credit and per-request pricing correctly. (#44989) Thanks @keelanfh.
|
||||||
|
|
||||||
## 2026.3.11
|
## 2026.3.11
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -73,7 +73,7 @@ await web_search({
|
||||||
## Notes
|
## Notes
|
||||||
|
|
||||||
- OpenClaw uses the Brave **Search** plan. If you have a legacy subscription (e.g. the original Free plan with 2,000 queries/month), it remains valid but does not include newer features like LLM Context or higher rate limits.
|
- OpenClaw uses the Brave **Search** plan. If you have a legacy subscription (e.g. the original Free plan with 2,000 queries/month), it remains valid but does not include newer features like LLM Context or higher rate limits.
|
||||||
- Each Brave plan includes **$5/month in free credit** (renewing). The Search plan costs $5 per 1,000 requests, so the credit covers 1,000 queries/month. Set your usage limit in the Brave dashboard to avoid unexpected charges. See the [Brave API portal](https://brave.com/search/api/) for current plans.
|
- Each Brave plan includes **\$5/month in free credit** (renewing). The Search plan costs \$5 per 1,000 requests, so the credit covers 1,000 queries/month. Set your usage limit in the Brave dashboard to avoid unexpected charges. See the [Brave API portal](https://brave.com/search/api/) for current plans.
|
||||||
- The Search plan includes the LLM Context endpoint and AI inference rights. Storing results to train or tune models requires a plan with explicit storage rights. See the Brave [Terms of Service](https://api-dashboard.search.brave.com/terms-of-service).
|
- The Search plan includes the LLM Context endpoint and AI inference rights. Storing results to train or tune models requires a plan with explicit storage rights. See the Brave [Terms of Service](https://api-dashboard.search.brave.com/terms-of-service).
|
||||||
- Results are cached for 15 minutes by default (configurable via `cacheTtlMinutes`).
|
- Results are cached for 15 minutes by default (configurable via `cacheTtlMinutes`).
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -85,8 +85,8 @@ See [Memory](/concepts/memory).
|
||||||
- **Kimi (Moonshot)**: `KIMI_API_KEY`, `MOONSHOT_API_KEY`, or `tools.web.search.kimi.apiKey`
|
- **Kimi (Moonshot)**: `KIMI_API_KEY`, `MOONSHOT_API_KEY`, or `tools.web.search.kimi.apiKey`
|
||||||
- **Perplexity Search API**: `PERPLEXITY_API_KEY`, `OPENROUTER_API_KEY`, or `tools.web.search.perplexity.apiKey`
|
- **Perplexity Search API**: `PERPLEXITY_API_KEY`, `OPENROUTER_API_KEY`, or `tools.web.search.perplexity.apiKey`
|
||||||
|
|
||||||
**Brave Search free credit:** Each Brave plan includes $5/month in renewing
|
**Brave Search free credit:** Each Brave plan includes \$5/month in renewing
|
||||||
free credit. The Search plan costs $5 per 1,000 requests, so the credit covers
|
free credit. The Search plan costs \$5 per 1,000 requests, so the credit covers
|
||||||
1,000 requests/month at no charge. Set your usage limit in the Brave dashboard
|
1,000 requests/month at no charge. Set your usage limit in the Brave dashboard
|
||||||
to avoid unexpected charges.
|
to avoid unexpected charges.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -65,8 +65,8 @@ Use `openclaw configure --section web` to set up your API key and choose a provi
|
||||||
2. In the dashboard, choose the **Search** plan and generate an API key.
|
2. In the dashboard, choose the **Search** plan and generate an API key.
|
||||||
3. Run `openclaw configure --section web` to store the key in config, or set `BRAVE_API_KEY` in your environment.
|
3. Run `openclaw configure --section web` to store the key in config, or set `BRAVE_API_KEY` in your environment.
|
||||||
|
|
||||||
Each Brave plan includes **$5/month in free credit** (renewing). The Search
|
Each Brave plan includes **\$5/month in free credit** (renewing). The Search
|
||||||
plan costs $5 per 1,000 requests, so the credit covers 1,000 queries/month. Set
|
plan costs \$5 per 1,000 requests, so the credit covers 1,000 queries/month. Set
|
||||||
your usage limit in the Brave dashboard to avoid unexpected charges. See the
|
your usage limit in the Brave dashboard to avoid unexpected charges. See the
|
||||||
[Brave API portal](https://brave.com/search/api/) for current plans and
|
[Brave API portal](https://brave.com/search/api/) for current plans and
|
||||||
pricing.
|
pricing.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue