diff --git a/docs/concepts/usage-tracking.md b/docs/concepts/usage-tracking.md index d95d2e6925d..0beba65250d 100644 --- a/docs/concepts/usage-tracking.md +++ b/docs/concepts/usage-tracking.md @@ -30,7 +30,7 @@ title: "Usage Tracking" - **GitHub Copilot**: OAuth tokens in auth profiles. - **Gemini CLI**: OAuth tokens in auth profiles. - **OpenAI Codex**: OAuth tokens in auth profiles (accountId used when present). -- **MiniMax**: API key (coding plan key; `MINIMAX_CODE_PLAN_KEY` or `MINIMAX_API_KEY`); uses the 5‑hour coding plan window. MiniMax's raw `usage_percent` / `usagePercent` fields mean **remaining** quota, so OpenClaw inverts them before display; count-based fields win when present. +- **MiniMax**: API key (coding plan key; `MINIMAX_CODE_PLAN_KEY`, `MINIMAX_CODING_API_KEY`, or `MINIMAX_API_KEY`); uses the 5‑hour coding plan window. MiniMax's raw `usage_percent` / `usagePercent` fields mean **remaining** quota, so OpenClaw inverts them before display; count-based fields win when present. - **z.ai**: API key via env/config/auth store. Usage is hidden if no matching OAuth/API credentials exist. diff --git a/docs/help/faq.md b/docs/help/faq.md index 1fe710ce100..e5650e309fd 100644 --- a/docs/help/faq.md +++ b/docs/help/faq.md @@ -1412,9 +1412,10 @@ for usage/billing and raise limits as needed. `web_fetch` works without an API key. `web_search` depends on your selected provider: - - API-backed providers such as Brave, Exa, Firecrawl, Gemini, Grok, Kimi, Perplexity, and Tavily require their normal API key setup. + - API-backed providers such as Brave, Exa, Firecrawl, Gemini, Grok, Kimi, MiniMax Search, Perplexity, and Tavily require their normal API key setup. - Ollama Web Search is key-free, but it uses your configured Ollama host and requires `ollama signin`. - DuckDuckGo is key-free, but it is an unofficial HTML-based integration. + - SearXNG is key-free/self-hosted; configure `SEARXNG_BASE_URL` or `plugins.entries.searxng.config.webSearch.baseUrl`. **Recommended:** run `openclaw configure --section web` and choose a provider. Environment alternatives: @@ -1425,7 +1426,9 @@ for usage/billing and raise limits as needed. - Gemini: `GEMINI_API_KEY` - Grok: `XAI_API_KEY` - Kimi: `KIMI_API_KEY` or `MOONSHOT_API_KEY` + - MiniMax Search: `MINIMAX_CODE_PLAN_KEY`, `MINIMAX_CODING_API_KEY`, or `MINIMAX_API_KEY` - Perplexity: `PERPLEXITY_API_KEY` or `OPENROUTER_API_KEY` + - SearXNG: `SEARXNG_BASE_URL` - Tavily: `TAVILY_API_KEY` ```json5 diff --git a/docs/reference/api-usage-costs.md b/docs/reference/api-usage-costs.md index ce87e49fac5..f4b724f6f37 100644 --- a/docs/reference/api-usage-costs.md +++ b/docs/reference/api-usage-costs.md @@ -100,11 +100,12 @@ See [Memory](/concepts/memory). - **Gemini (Google Search)**: `GEMINI_API_KEY` or `plugins.entries.google.config.webSearch.apiKey` - **Grok (xAI)**: `XAI_API_KEY` or `plugins.entries.xai.config.webSearch.apiKey` - **Kimi (Moonshot)**: `KIMI_API_KEY`, `MOONSHOT_API_KEY`, or `plugins.entries.moonshot.config.webSearch.apiKey` +- **MiniMax Search**: `MINIMAX_CODE_PLAN_KEY`, `MINIMAX_CODING_API_KEY`, `MINIMAX_API_KEY`, or `plugins.entries.minimax.config.webSearch.apiKey` - **Ollama Web Search**: key-free by default, but requires a reachable Ollama host plus `ollama signin`; can also reuse normal Ollama provider bearer auth when the host requires it - **Perplexity Search API**: `PERPLEXITY_API_KEY`, `OPENROUTER_API_KEY`, or `plugins.entries.perplexity.config.webSearch.apiKey` - **Tavily**: `TAVILY_API_KEY` or `plugins.entries.tavily.config.webSearch.apiKey` - **DuckDuckGo**: key-free fallback (no API billing, but unofficial and HTML-based) -- **SearXNG**: key-free/self-hosted (no hosted API billing) +- **SearXNG**: `SEARXNG_BASE_URL` or `plugins.entries.searxng.config.webSearch.baseUrl` (key-free/self-hosted; no hosted API billing) Legacy `tools.web.search.*` provider paths still load through the temporary compatibility shim, but they are no longer the recommended config surface. diff --git a/docs/start/wizard.md b/docs/start/wizard.md index c5fcd4489b4..34c33c4123e 100644 --- a/docs/start/wizard.md +++ b/docs/start/wizard.md @@ -36,9 +36,9 @@ openclaw agents add CLI onboarding includes a web search step where you can pick a provider -such as Brave, Firecrawl, Gemini, Grok, Kimi, Ollama Web Search, Perplexity, -or Tavily. Some providers require an API key, while others are key-free. You -can also configure this later with +such as Brave, DuckDuckGo, Exa, Firecrawl, Gemini, Grok, Kimi, MiniMax Search, +Ollama Web Search, Perplexity, SearXNG, or Tavily. Some providers require an +API key, while others are key-free. You can also configure this later with `openclaw configure --section web`. Docs: [Web tools](/tools/web).