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

推荐订阅源

V
V2EX
P
Proofpoint News Feed
D
DataBreaches.Net
C
Check Point Blog
L
LangChain Blog
量子位
美团技术团队
Vercel News
Vercel News
人人都是产品经理
人人都是产品经理
N
Netflix TechBlog - Medium
V
Visual Studio Blog
Microsoft Security Blog
Microsoft Security Blog
博客园 - 【当耐特】
MongoDB | Blog
MongoDB | Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Last Week in AI
Last Week in AI
The GitHub Blog
The GitHub Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
U
Unit 42
腾讯CDC
M
MIT News - Artificial intelligence
Microsoft Azure Blog
Microsoft Azure Blog
Blog — PlanetScale
Blog — PlanetScale

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
test: clear bedrock provider broad matchers · openclaw/op...
steipete · 2026-05-10 · via Recent Commits to openclaw:main

@@ -209,6 +209,55 @@ function runtimePluginConfig(config?: Record<string, unknown>): OpenClawConfig {

209209

} as OpenClawConfig;

210210

}

211211212+

function requireRecord(value: unknown, label: string): Record<string, unknown> {

213+

if (!value || typeof value !== "object" || Array.isArray(value)) {

214+

throw new Error(`expected ${label} to be a record`);

215+

}

216+

return value as Record<string, unknown>;

217+

}

218+219+

function requireArray(value: unknown, label: string): unknown[] {

220+

if (!Array.isArray(value)) {

221+

throw new Error(`expected ${label} to be an array`);

222+

}

223+

return value;

224+

}

225+226+

function expectRecordFields(record: Record<string, unknown>, fields: Record<string, unknown>) {

227+

for (const [key, value] of Object.entries(fields)) {

228+

expect(record[key]).toEqual(value);

229+

}

230+

}

231+232+

function expectWrappedResultFields(result: unknown, fields: Record<string, unknown>) {

233+

expectRecordFields(requireRecord(result, "wrapped stream result"), fields);

234+

}

235+236+

function expectPayloadServiceTier(result: Record<string, unknown>, type: string) {

237+

expectRecordFields(requireRecord(result._capturedPayload, "captured payload"), {

238+

serviceTier: { type },

239+

});

240+

}

241+242+

function expectThinkingProfile(

243+

profile: unknown,

244+

fields: { defaultLevel?: string; levelIds?: string[]; includesAdaptive?: boolean },

245+

) {

246+

const record = requireRecord(profile, "thinking profile");

247+

if (fields.defaultLevel !== undefined) {

248+

expect(record.defaultLevel).toBe(fields.defaultLevel);

249+

}

250+

const levelIds = requireArray(record.levels, "thinking levels").map((level) =>

251+

String(requireRecord(level, "thinking level").id),

252+

);

253+

if (fields.levelIds) {

254+

expect(levelIds).toEqual(fields.levelIds);

255+

}

256+

if (fields.includesAdaptive !== undefined) {

257+

expect(levelIds.includes("adaptive")).toBe(fields.includesAdaptive);

258+

}

259+

}

260+212261

describe("amazon-bedrock provider plugin", () => {

213262

beforeEach(() => {

214263

foundationModelResults.length = 0;

@@ -246,23 +295,20 @@ describe("amazon-bedrock provider plugin", () => {

246295

it("marks Claude 4.6 Bedrock models as adaptive by default", async () => {

247296

const provider = await registerSingleProviderPlugin(amazonBedrockPlugin);

248297249-

expect(

298+

expectThinkingProfile(

250299

provider.resolveThinkingProfile?.({

251300

provider: "amazon-bedrock",

252301

modelId: "us.anthropic.claude-opus-4-6-v1",

253302

} as never),

254-

).toMatchObject({

255-

levels: expect.arrayContaining([{ id: "adaptive" }]),

256-

defaultLevel: "adaptive",

257-

});

258-

expect(

303+

{ includesAdaptive: true, defaultLevel: "adaptive" },

304+

);

305+

expectThinkingProfile(

259306

provider.resolveThinkingProfile?.({

260307

provider: "amazon-bedrock",

261308

modelId: "amazon.nova-micro-v1:0",

262309

} as never),

263-

).toMatchObject({

264-

levels: expect.not.arrayContaining([{ id: "adaptive" }]),

265-

});

310+

{ includesAdaptive: false },

311+

);

266312

});

267313268314

it("mirrors Claude Opus 4.7 thinking levels for Bedrock model refs", async () => {

@@ -274,24 +320,16 @@ describe("amazon-bedrock provider plugin", () => {

274320

"eu.anthropic.claude-opus-4-7",

275321

"arn:aws:bedrock:us-west-2:123456789012:inference-profile/us.anthropic.claude-opus-4-7",

276322

]) {

277-

expect(

323+

expectThinkingProfile(

278324

provider.resolveThinkingProfile?.({

279325

provider: "amazon-bedrock",

280326

modelId,

281327

} as never),

282-

).toMatchObject({

283-

levels: [

284-

{ id: "off" },

285-

{ id: "minimal" },

286-

{ id: "low" },

287-

{ id: "medium" },

288-

{ id: "high" },

289-

{ id: "xhigh" },

290-

{ id: "adaptive" },

291-

{ id: "max" },

292-

],

293-

defaultLevel: "off",

294-

});

328+

{

329+

levelIds: ["off", "minimal", "low", "medium", "high", "xhigh", "adaptive", "max"],

330+

defaultLevel: "off",

331+

},

332+

);

295333

}

296334

});

297335

@@ -323,7 +361,7 @@ describe("amazon-bedrock provider plugin", () => {

323361

streamFn: (_model: unknown, _context: unknown, options: Record<string, unknown>) => options,

324362

} as never);

325363326-

expect(

364+

expectWrappedResultFields(

327365

wrapped?.(

328366

{

329367

api: "openai-completions",

@@ -333,9 +371,8 @@ describe("amazon-bedrock provider plugin", () => {

333371

{ messages: [] } as never,

334372

{},

335373

),

336-

).toMatchObject({

337-

cacheRetention: "none",

338-

});

374+

{ cacheRetention: "none" },

375+

);

339376

});

340377341378

it("refreshes AWS shared config cache before Bedrock sends", async () => {

@@ -391,7 +428,7 @@ describe("amazon-bedrock provider plugin", () => {

391428

{ temperature: 0.2, maxTokens: 10 },

392429

) as Record<string, unknown> | undefined;

393430394-

expect(result).toMatchObject({ maxTokens: 10 });

431+

expectWrappedResultFields(result, { maxTokens: 10 });

395432

expect(result).not.toHaveProperty("temperature");

396433

});

397434

@@ -413,7 +450,7 @@ describe("amazon-bedrock provider plugin", () => {

413450

{ temperature: 0.2, maxTokens: 10 },

414451

) as Record<string, unknown> | undefined;

415452416-

expect(result).toMatchObject({ maxTokens: 10 });

453+

expectWrappedResultFields(result, { maxTokens: 10 });

417454

expect(result).not.toHaveProperty("temperature");

418455

});

419456

@@ -437,7 +474,7 @@ describe("amazon-bedrock provider plugin", () => {

437474

{ temperature: 0, region: "us-west-2" } as never,

438475

) as Record<string, unknown> | undefined;

439476440-

expect(result).toMatchObject({ region: "us-west-2" });

477+

expectWrappedResultFields(result, { region: "us-west-2" });

441478

expect(result).not.toHaveProperty("temperature");

442479

});

443480

@@ -459,7 +496,7 @@ describe("amazon-bedrock provider plugin", () => {

459496

{ temperature: 0.4, maxTokens: 12 },

460497

) as Record<string, unknown> | undefined;

461498462-

expect(result).toMatchObject({ maxTokens: 12 });

499+

expectWrappedResultFields(result, { maxTokens: 12 });

463500

expect(result).not.toHaveProperty("temperature");

464501

});

465502

@@ -544,7 +581,7 @@ describe("amazon-bedrock provider plugin", () => {

544581

const discovery = pluginJson.configSchema?.properties?.discovery;

545582

const guardrail = pluginJson.configSchema?.properties?.guardrail;

546583547-

expect(discovery).toMatchObject({

584+

expectRecordFields(requireRecord(discovery, "discovery schema"), {

548585

type: "object",

549586

additionalProperties: false,

550587

});

@@ -567,7 +604,7 @@ describe("amazon-bedrock provider plugin", () => {

567604

minimum: 1,

568605

});

569606570-

expect(guardrail).toMatchObject({

607+

expectRecordFields(requireRecord(guardrail, "guardrail schema"), {

571608

type: "object",

572609

additionalProperties: false,

573610

});

@@ -598,7 +635,7 @@ describe("amazon-bedrock provider plugin", () => {

598635599636

expect(result).not.toHaveProperty("_capturedPayload");

600637

// The onPayload hook should not exist when no guardrail is configured

601-

expect(result).toMatchObject({ cacheRetention: "none" });

638+

expectWrappedResultFields(result, { cacheRetention: "none" });

602639

});

603640604641

it("injects all four fields when guardrail config includes optional fields", async () => {

@@ -680,7 +717,7 @@ describe("amazon-bedrock provider plugin", () => {

680717

},

681718

});

682719

// Non-Anthropic models should also get cacheRetention: "none"

683-

expect(result).toMatchObject({ cacheRetention: "none" });

720+

expectWrappedResultFields(result, { cacheRetention: "none" });

684721

});

685722686723

it("uses live plugin config to inject guardrailConfig after startup disable", async () => {

@@ -720,7 +757,7 @@ describe("amazon-bedrock provider plugin", () => {

720757

);

721758722759

expect(result).not.toHaveProperty("_capturedPayload");

723-

expect(result).toMatchObject({ cacheRetention: "none" });

760+

expectWrappedResultFields(result, { cacheRetention: "none" });

724761

});

725762

});

726763

@@ -740,7 +777,7 @@ describe("amazon-bedrock provider plugin", () => {

740777

runtimePluginConfig(undefined),

741778

{ serviceTier: "flex" },

742779

);

743-

expect(result._capturedPayload).toMatchObject({ serviceTier: { type: "flex" } });

780+

expectPayloadServiceTier(result, "flex");

744781

});

745782746783

it("injects serviceTier for valid snake_case value ('priority')", async () => {

@@ -752,7 +789,7 @@ describe("amazon-bedrock provider plugin", () => {

752789

runtimePluginConfig(undefined),

753790

{ service_tier: "priority" },

754791

);

755-

expect(result._capturedPayload).toMatchObject({ serviceTier: { type: "priority" } });

792+

expectPayloadServiceTier(result, "priority");

756793

});

757794758795

it("injects serviceTier for all valid tier names", async () => {

@@ -765,7 +802,7 @@ describe("amazon-bedrock provider plugin", () => {

765802

runtimePluginConfig(undefined),

766803

{ serviceTier: tier },

767804

);

768-

expect(result._capturedPayload).toMatchObject({ serviceTier: { type: tier } });

805+

expectPayloadServiceTier(result, tier);

769806

}

770807

});

771808

@@ -791,7 +828,7 @@ describe("amazon-bedrock provider plugin", () => {

791828

{ serviceTier: "flex" },

792829

{ serviceTier: { type: "priority" } },

793830

);

794-

expect(result._capturedPayload).toMatchObject({ serviceTier: { type: "priority" } });

831+

expectPayloadServiceTier(result, "priority");

795832

});

796833797834

it("skips injection for non-converse API models", async () => {