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

推荐订阅源

Y
Y Combinator Blog
腾讯CDC
Recent Announcements
Recent Announcements
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Hugging Face - Blog
Hugging Face - Blog
H
Help Net Security
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Last Week in AI
Last Week in AI
博客园_首页
D
DataBreaches.Net
P
Proofpoint News Feed
云风的 BLOG
云风的 BLOG
V
Visual Studio Blog
月光博客
月光博客
Jina AI
Jina AI
Stack Overflow Blog
Stack Overflow Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 【当耐特】
Vercel News
Vercel News
WordPress大学
WordPress大学
J
Java Code Geeks
博客园 - 聂微东
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
U
Unit 42

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
refactor: keep legacy web search config in doctor · openc...
steipete · 2026-04-22 · via Recent Commits to openclaw:main

@@ -301,11 +301,9 @@ async function resolveSecretInputWithEnvFallback(params: {

301301

function setResolvedWebSearchApiKey(params: {

302302

resolvedConfig: OpenClawConfig;

303303

provider: PluginWebSearchProviderEntry;

304-

path: string;

305304

value: string;

306305

}): void {

307-

const useLegacySearchConfig = params.path === "tools.web.search.apiKey";

308-

if (params.provider.setConfiguredCredentialValue && !useLegacySearchConfig) {

306+

if (params.provider.setConfiguredCredentialValue) {

309307

params.provider.setConfiguredCredentialValue(params.resolvedConfig, params.value);

310308

return;

311309

}

@@ -416,8 +414,7 @@ function readConfiguredProviderCredential(params: {

416414

config: OpenClawConfig;

417415

search: Record<string, unknown> | undefined;

418416

}): unknown {

419-

const configuredValue = params.provider.getConfiguredCredentialValue?.(params.config);

420-

return configuredValue ?? params.provider.getCredentialValue(params.search);

417+

return params.provider.getConfiguredCredentialValue?.(params.config);

421418

}

422419423420

function inactivePathsForProvider(provider: PluginWebSearchProviderEntry): string[] {

@@ -432,7 +429,6 @@ function inactivePathsForProvider(provider: PluginWebSearchProviderEntry): strin

432429

function setResolvedWebFetchApiKey(params: {

433430

resolvedConfig: OpenClawConfig;

434431

provider: PluginWebFetchProviderEntry;

435-

path: string;

436432

value: string;

437433

}): void {

438434

const tools = ensureObject(params.resolvedConfig as Record<string, unknown>, "tools");

@@ -561,25 +557,6 @@ export async function resolveRuntimeWebTools(params: {

561557

diagnostics: [],

562558

};

563559

if (search || hasPluginWebSearchConfig) {

564-

let searchCompatibilityOnlyPluginIds: string[] = [];

565-

if (

566-

!rawProvider &&

567-

!hasPluginWebSearchConfig &&

568-

isRecord(search) &&

569-

Object.prototype.hasOwnProperty.call(search, "apiKey")

570-

) {

571-

const { resolveManifestContractPluginIdsByCompatibilityRuntimePath } =

572-

await loadRuntimeWebToolsManifest();

573-

searchCompatibilityOnlyPluginIds = resolveManifestContractPluginIdsByCompatibilityRuntimePath(

574-

{

575-

contract: "webSearchProviders",

576-

path: "tools.web.search.apiKey",

577-

origin: "bundled",

578-

config: params.sourceConfig,

579-

env,

580-

},

581-

);

582-

}

583560

const searchSurface = await resolveRuntimeWebProviderSurface({

584561

contract: "webSearchProviders",

585562

rawProvider,

@@ -596,12 +573,6 @@ export async function resolveRuntimeWebTools(params: {

596573

sourceConfig: params.sourceConfig,

597574

context: params.context,

598575

configuredBundledPluginId,

599-

onlyPluginIds:

600-

configuredBundledPluginId === undefined &&

601-

searchCompatibilityOnlyPluginIds.length > 0 &&

602-

!(await getHasCustomWebSearchRisk())

603-

? searchCompatibilityOnlyPluginIds

604-

: undefined,

605576

hasCustomWebSearchPluginRisk: await getHasCustomWebSearchRisk(),

606577

}),

607578

sortProviders: sortWebSearchProvidersForAutoDetect,

@@ -647,16 +618,10 @@ export async function resolveRuntimeWebTools(params: {

647618

path,

648619

envVars,

649620

}),

650-

setResolvedCredential: ({ resolvedConfig, provider, path, value }) =>

621+

setResolvedCredential: ({ resolvedConfig, provider, value }) =>

651622

setResolvedWebSearchApiKey({

652623

resolvedConfig,

653624

provider,

654-

path:

655-

search &&

656-

Object.prototype.hasOwnProperty.call(search, "apiKey") &&

657-

provider.getConfiguredCredentialValue?.(params.sourceConfig) == null

658-

? "tools.web.search.apiKey"

659-

: path,

660625

value,

661626

}),

662627

inactivePathsForProvider,

@@ -747,11 +712,10 @@ export async function resolveRuntimeWebTools(params: {

747712

envVars,

748713

restrictEnvRefsToEnvVars: true,

749714

}),

750-

setResolvedCredential: ({ resolvedConfig, provider, path, value }) =>

715+

setResolvedCredential: ({ resolvedConfig, provider, value }) =>

751716

setResolvedWebFetchApiKey({

752717

resolvedConfig,

753718

provider,

754-

path,

755719

value,

756720

}),

757721

inactivePathsForProvider: inactivePathsForFetchProvider,