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

推荐订阅源

H
Hackread – Cybersecurity News, Data Breaches, AI and More
U
Unit 42
Vercel News
Vercel News
Martin Fowler
Martin Fowler
云风的 BLOG
云风的 BLOG
爱范儿
爱范儿
MongoDB | Blog
MongoDB | Blog
J
Java Code Geeks
F
Fortinet All Blogs
MyScale Blog
MyScale Blog
C
Check Point Blog
N
Netflix TechBlog - Medium
Microsoft Azure Blog
Microsoft Azure Blog
aimingoo的专栏
aimingoo的专栏
博客园_首页
WordPress大学
WordPress大学
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
IT之家
IT之家
Last Week in AI
Last Week in AI
罗磊的独立博客
大猫的无限游戏
大猫的无限游戏
Jina AI
Jina AI
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
fix(gateway): keep effective tools on hot registry path ·...
steipete · 2026-04-27 · via Recent Commits to openclaw:main

@@ -23,7 +23,6 @@ const effectiveInventoryState = vi.hoisted(() => ({

2323

pluginMeta: {} as Record<string, { pluginId: string } | undefined>,

2424

channelMeta: {} as Record<string, { channelId: string } | undefined>,

2525

effectivePolicy: {} as { profile?: string; providerProfile?: string },

26-

resolvedModelCompat: undefined as Record<string, unknown> | undefined,

2726

createToolsMock: vi.fn<typeof createOpenClawCodingTools>(

2827

(_options) =>

2928

[

@@ -48,16 +47,6 @@ vi.mock("./pi-tools.js", () => ({

4847

effectiveInventoryState.createToolsMock(options),

4948

}));

504951-

vi.mock("./pi-embedded-runner/model.js", () => ({

52-

resolveModel: vi.fn(() => ({

53-

model: effectiveInventoryState.resolvedModelCompat

54-

? { compat: effectiveInventoryState.resolvedModelCompat }

55-

: undefined,

56-

authStorage: {} as never,

57-

modelRegistry: {} as never,

58-

})),

59-

}));

60-6150

vi.mock("../plugins/tools.js", () => ({

6251

getPluginToolMeta: (tool: { name: string }) => effectiveInventoryState.pluginMeta[tool.name],

6352

}));

@@ -79,7 +68,6 @@ async function loadHarness(options?: {

7968

pluginMeta?: Record<string, { pluginId: string } | undefined>;

8069

channelMeta?: Record<string, { channelId: string } | undefined>;

8170

effectivePolicy?: { profile?: string; providerProfile?: string };

82-

resolvedModelCompat?: Record<string, unknown>;

8371

}) {

8472

effectiveInventoryState.tools = options?.tools ?? [

8573

mockTool({ name: "exec", label: "Exec", description: "Run shell commands" }),

@@ -88,7 +76,6 @@ async function loadHarness(options?: {

8876

effectiveInventoryState.pluginMeta = options?.pluginMeta ?? {};

8977

effectiveInventoryState.channelMeta = options?.channelMeta ?? {};

9078

effectiveInventoryState.effectivePolicy = options?.effectivePolicy ?? {};

91-

effectiveInventoryState.resolvedModelCompat = options?.resolvedModelCompat;

9279

effectiveInventoryState.createToolsMock =

9380

options?.createToolsMock ??

9481

vi.fn<typeof createOpenClawCodingTools>((_options) => effectiveInventoryState.tools);

@@ -111,7 +98,6 @@ describe("resolveEffectiveToolInventory", () => {

11198

effectiveInventoryState.pluginMeta = {};

11299

effectiveInventoryState.channelMeta = {};

113100

effectiveInventoryState.effectivePolicy = {};

114-

effectiveInventoryState.resolvedModelCompat = undefined;

115101

effectiveInventoryState.createToolsMock = vi.fn<typeof createOpenClawCodingTools>(

116102

(_options) => effectiveInventoryState.tools,

117103

);

@@ -312,11 +298,31 @@ describe("resolveEffectiveToolInventory", () => {

312298

]);

313299

const { resolveEffectiveToolInventory } = await loadHarness({

314300

createToolsMock,

315-

resolvedModelCompat: { supportsTools: true, supportsNativeWebSearch: true },

316301

});

317302318303

resolveEffectiveToolInventory({

319-

cfg: {},

304+

cfg: {

305+

models: {

306+

providers: {

307+

xai: {

308+

baseUrl: "https://api.x.ai/v1",

309+

models: [

310+

{

311+

id: "grok-test",

312+

name: "Grok Test",

313+

api: "openai-completions",

314+

reasoning: false,

315+

input: ["text"],

316+

cost: { input: 0, output: 0, cacheRead: 0, cacheWrite: 0 },

317+

contextWindow: 128_000,

318+

maxTokens: 8_192,

319+

compat: { supportsTools: true, nativeWebSearchTool: true },

320+

},

321+

],

322+

},

323+

},

324+

},

325+

},

320326

agentDir: "/tmp/agents/main/agent",

321327

modelProvider: "xai",

322328

modelId: "grok-test",

@@ -325,7 +331,7 @@ describe("resolveEffectiveToolInventory", () => {

325331

expect(createToolsMock).toHaveBeenCalledWith(

326332

expect.objectContaining({

327333

allowGatewaySubagentBinding: true,

328-

modelCompat: { supportsTools: true, supportsNativeWebSearch: true },

334+

modelCompat: { supportsTools: true, nativeWebSearchTool: true },

329335

}),

330336

);

331337

});