diff --git a/docs/querit.md b/docs/querit.md index 4754eec2a..5e70cd2d5 100644 --- a/docs/querit.md +++ b/docs/querit.md @@ -7,7 +7,7 @@ read_when: # Querit -Clawdbot supports Querit as an alternative provider for `web_search`. +Moltbot supports Querit as an alternative provider for `web_search`. ## Get an API key diff --git a/src/agents/tools/web-search.ts b/src/agents/tools/web-search.ts index 9b92f420a..a86162962 100644 --- a/src/agents/tools/web-search.ts +++ b/src/agents/tools/web-search.ts @@ -4,7 +4,6 @@ import type { MoltbotConfig } from "../../config/config.js"; import { formatCliCommand } from "../../cli/command-format.js"; import type { AnyAgentTool } from "./common.js"; import { jsonResult, readNumberParam, readStringParam } from "./common.js"; -import { logDebug } from "../../logger.js"; import { CacheEntry, DEFAULT_CACHE_TTL_MINUTES, @@ -151,8 +150,8 @@ function missingSearchKeyPayload(provider: (typeof SEARCH_PROVIDERS)[number]) { if (provider === "querit") { return { error: "missing_querit_api_key", - message: `web_search (querit) needs an API key. Run \`${formatCliCommand("clawdbot configure --section web")}\` to store it, or set QUERIT_API_KEY in the Gateway environment.`, - docs: "https://docs.clawd.bot/tools/web", + message: `web_search (querit) needs an API key. Run \`${formatCliCommand("moltbot configure --section web")}\` to store it, or set QUERIT_API_KEY in the Gateway environment.`, + docs: "https://docs.molt.bot/tools/web", }; } return {