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

推荐订阅源

博客园 - Franky
有赞技术团队
有赞技术团队
宝玉的分享
宝玉的分享
雷峰网
雷峰网
Hugging Face - Blog
Hugging Face - Blog
V
V2EX
大猫的无限游戏
大猫的无限游戏
博客园 - 司徒正美
D
Docker
T
The Blog of Author Tim Ferriss
罗磊的独立博客
博客园 - 叶小钗
酷 壳 – CoolShell
酷 壳 – CoolShell
Blog — PlanetScale
Blog — PlanetScale
月光博客
月光博客
J
Java Code Geeks
Jina AI
Jina AI
博客园 - 【当耐特】
C
Check Point Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
腾讯CDC
Last Week in AI
Last Week in AI
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
V
Visual Studio Blog

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
feat(brave): add http diagnostics flag · openclaw/opencla...
steipete · 2026-05-02 · via Recent Commits to openclaw:main

@@ -18,6 +18,7 @@ import {

1818

wrapWebContent,

1919

writeCachedSearchPayload,

2020

} from "openclaw/plugin-sdk/provider-web-search";

21+

import { createSubsystemLogger } from "openclaw/plugin-sdk/runtime-env";

2122

import {

2223

type BraveLlmContextResponse,

2324

mapBraveLlmContextResults,

@@ -29,6 +30,7 @@ import {

29303031

const BRAVE_SEARCH_ENDPOINT = "https://api.search.brave.com/res/v1/web/search";

3132

const BRAVE_LLM_CONTEXT_ENDPOINT = "https://api.search.brave.com/res/v1/llm/context";

33+

const braveHttpLogger = createSubsystemLogger("brave/http");

32343335

type BraveSearchResult = {

3436

title?: string;

@@ -43,6 +45,33 @@ type BraveSearchResponse = {

4345

};

4446

};

454748+

type BraveHttpDiagnostics = {

49+

enabled?: boolean;

50+

};

51+52+

function logBraveHttp(

53+

diagnostics: BraveHttpDiagnostics | undefined,

54+

event: string,

55+

meta?: Record<string, unknown>,

56+

): void {

57+

if (!diagnostics?.enabled) {

58+

return;

59+

}

60+

braveHttpLogger.info(`brave http ${event}`, meta);

61+

}

62+63+

function describeBraveRequestUrl(url: URL): {

64+

url: string;

65+

query: string;

66+

params: Record<string, string>;

67+

} {

68+

return {

69+

url: url.toString(),

70+

query: url.searchParams.get("q") ?? "",

71+

params: Object.fromEntries(url.searchParams.entries()),

72+

};

73+

}

74+4675

function resolveBraveApiKey(searchConfig?: SearchConfigRecord): string | undefined {

4776

return (

4877

readConfiguredSecretString(searchConfig?.apiKey, "tools.web.search.apiKey") ??

@@ -62,6 +91,7 @@ async function runBraveLlmContextSearch(params: {

6291

query: string;

6392

apiKey: string;

6493

timeoutSeconds: number;

94+

diagnostics?: BraveHttpDiagnostics;

6595

country?: string;

6696

search_lang?: string;

6797

freshness?: string;

@@ -95,6 +125,11 @@ async function runBraveLlmContextSearch(params: {

95125

);

96126

}

97127128+

logBraveHttp(params.diagnostics, "request", {

129+

mode: "llm-context",

130+

...describeBraveRequestUrl(url),

131+

});

132+

const startedAt = Date.now();

98133

return withTrustedWebSearchEndpoint(

99134

{

100135

url: url.toString(),

@@ -108,6 +143,12 @@ async function runBraveLlmContextSearch(params: {

108143

},

109144

},

110145

async (response) => {

146+

logBraveHttp(params.diagnostics, "response", {

147+

mode: "llm-context",

148+

status: response.status,

149+

ok: response.ok,

150+

durationMs: Date.now() - startedAt,

151+

});

111152

if (!response.ok) {

112153

const detail = await response.text();

113154

throw new Error(

@@ -126,6 +167,7 @@ async function runBraveWebSearch(params: {

126167

count: number;

127168

apiKey: string;

128169

timeoutSeconds: number;

170+

diagnostics?: BraveHttpDiagnostics;

129171

country?: string;

130172

search_lang?: string;

131173

ui_lang?: string;

@@ -158,6 +200,11 @@ async function runBraveWebSearch(params: {

158200

url.searchParams.set("freshness", `1970-01-01to${params.dateBefore}`);

159201

}

160202203+

logBraveHttp(params.diagnostics, "request", {

204+

mode: "web",

205+

...describeBraveRequestUrl(url),

206+

});

207+

const startedAt = Date.now();

161208

return withTrustedWebSearchEndpoint(

162209

{

163210

url: url.toString(),

@@ -171,6 +218,12 @@ async function runBraveWebSearch(params: {

171218

},

172219

},

173220

async (response) => {

221+

logBraveHttp(params.diagnostics, "response", {

222+

mode: "web",

223+

status: response.status,

224+

ok: response.ok,

225+

durationMs: Date.now() - startedAt,

226+

});

174227

if (!response.ok) {

175228

const detail = await response.text();

176229

throw new Error(

@@ -199,6 +252,9 @@ async function runBraveWebSearch(params: {

199252

export async function executeBraveSearch(

200253

args: Record<string, unknown>,

201254

searchConfig?: SearchConfigRecord,

255+

options?: {

256+

diagnosticsEnabled?: boolean;

257+

},

202258

): Promise<Record<string, unknown>> {

203259

const apiKey = resolveBraveApiKey(searchConfig);

204260

if (!apiKey) {

@@ -322,10 +378,13 @@ export async function executeBraveSearch(

322378

dateBefore,

323379

],

324380

);

381+

const diagnostics: BraveHttpDiagnostics = { enabled: options?.diagnosticsEnabled === true };

325382

const cached = readCachedSearchPayload(cacheKey);

326383

if (cached) {

384+

logBraveHttp(diagnostics, "cache hit", { mode: braveMode, query, cacheKey });

327385

return cached;

328386

}

387+

logBraveHttp(diagnostics, "cache miss", { mode: braveMode, query, cacheKey });

329388330389

const start = Date.now();

331390

const timeoutSeconds = resolveSearchTimeoutSeconds(searchConfig);

@@ -336,6 +395,7 @@ export async function executeBraveSearch(

336395

query,

337396

apiKey,

338397

timeoutSeconds,

398+

diagnostics,

339399

country: country ?? undefined,

340400

search_lang: normalizedLanguage.search_lang,

341401

freshness,

@@ -363,6 +423,13 @@ export async function executeBraveSearch(

363423

sources,

364424

};

365425

writeCachedSearchPayload(cacheKey, payload, cacheTtlMs);

426+

logBraveHttp(diagnostics, "cache write", {

427+

mode: "llm-context",

428+

query,

429+

cacheKey,

430+

ttlMs: cacheTtlMs,

431+

count: results.length,

432+

});

366433

return payload;

367434

}

368435

@@ -371,6 +438,7 @@ export async function executeBraveSearch(

371438

count: resolveSearchCount(count, DEFAULT_SEARCH_COUNT),

372439

apiKey,

373440

timeoutSeconds,

441+

diagnostics,

374442

country: country ?? undefined,

375443

search_lang: normalizedLanguage.search_lang,

376444

ui_lang: normalizedLanguage.ui_lang,

@@ -392,5 +460,12 @@ export async function executeBraveSearch(

392460

results,

393461

};

394462

writeCachedSearchPayload(cacheKey, payload, cacheTtlMs);

463+

logBraveHttp(diagnostics, "cache write", {

464+

mode: "web",

465+

query,

466+

cacheKey,

467+

ttlMs: cacheTtlMs,

468+

count: results.length,

469+

});

395470

return payload;

396471

}