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

推荐订阅源

酷 壳 – CoolShell
酷 壳 – CoolShell
G
Google Developers Blog
V
V2EX
美团技术团队
H
Help Net Security
月光博客
月光博客
爱范儿
爱范儿
Engineering at Meta
Engineering at Meta
The Cloudflare Blog
U
Unit 42
大猫的无限游戏
大猫的无限游戏
Recent Announcements
Recent Announcements
A
About on SuperTechFans
博客园 - Franky
The GitHub Blog
The GitHub Blog
N
Netflix TechBlog - Medium
人人都是产品经理
人人都是产品经理
博客园 - 司徒正美
MyScale Blog
MyScale Blog
B
Blog
雷峰网
雷峰网
Y
Y Combinator Blog
云风的 BLOG
云风的 BLOG
T
The Blog of Author Tim Ferriss

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
style: format stale source files · openclaw/openclaw@de95e41
steipete · 2026-04-23 · via Recent Commits to openclaw:main

@@ -7,9 +7,7 @@ import type { PluginRuntime } from "../../src/plugins/runtime/types.js";

77

import { registerSingleProviderPlugin } from "../../test/helpers/plugins/plugin-registration.js";

88

import amazonBedrockPlugin from "./index.js";

9910-

type InferenceProfileResult =

11-

| { models?: Array<{ modelArn?: string }> }

12-

| Error;

10+

type InferenceProfileResult = { models?: Array<{ modelArn?: string }> } | Error;

13111412

const inferenceProfileResults: InferenceProfileResult[] = [];

1513

const bedrockClientConfigs: Array<Record<string, unknown>> = [];

@@ -376,10 +374,11 @@ describe("amazon-bedrock provider plugin", () => {

376374

streamFn: spyStreamFn,

377375

} as never);

378376379-

const result = wrapped?.(modelDescriptor, { messages: [] } as never, options) as unknown as Record<

380-

string,

381-

unknown

382-

>;

377+

const result = wrapped?.(

378+

modelDescriptor,

379+

{ messages: [] } as never,

380+

options,

381+

) as unknown as Record<string, unknown>;

383382384383

if (typeof result?.onPayload === "function") {

385384

await (

@@ -393,9 +392,7 @@ describe("amazon-bedrock provider plugin", () => {

393392

const provider = await registerWithConfig(undefined);

394393

const payload: Record<string, unknown> = {

395394

system: [{ text: "You are helpful." }],

396-

messages: [

397-

{ role: "user", content: [{ text: "Hello" }] },

398-

],

395+

messages: [{ role: "user", content: [{ text: "Hello" }] }],

399396

};

400397401398

await callWrappedStreamWithPayload(

@@ -410,7 +407,10 @@ describe("amazon-bedrock provider plugin", () => {

410407

expect(system).toHaveLength(2);

411408

expect(system[1]).toEqual({ cachePoint: { type: "default" } });

412409413-

const messages = payload.messages as Array<{ role: string; content: Array<Record<string, unknown>> }>;

410+

const messages = payload.messages as Array<{

411+

role: string;

412+

content: Array<Record<string, unknown>>;

413+

}>;

414414

const lastUserContent = messages[0].content;

415415

expect(lastUserContent).toHaveLength(2);

416416

expect(lastUserContent[1]).toEqual({ cachePoint: { type: "default" } });

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

420420

const provider = await registerWithConfig(undefined);

421421

const payload: Record<string, unknown> = {

422422

system: [{ text: "You are helpful." }],

423-

messages: [

424-

{ role: "user", content: [{ text: "Hello" }] },

425-

],

423+

messages: [{ role: "user", content: [{ text: "Hello" }] }],

426424

};

427425428426

await callWrappedStreamWithPayload(

@@ -441,9 +439,7 @@ describe("amazon-bedrock provider plugin", () => {

441439

const provider = await registerWithConfig(undefined);

442440

const payload: Record<string, unknown> = {

443441

system: [{ text: "You are helpful." }],

444-

messages: [

445-

{ role: "user", content: [{ text: "Hello" }] },

446-

],

442+

messages: [{ role: "user", content: [{ text: "Hello" }] }],

447443

};

448444449445

await callWrappedStreamWithPayload(

@@ -478,17 +474,18 @@ describe("amazon-bedrock provider plugin", () => {

478474

const system = payload.system as Array<Record<string, unknown>>;

479475

expect(system).toHaveLength(2);

480476481-

const messages = payload.messages as Array<{ role: string; content: Array<Record<string, unknown>> }>;

477+

const messages = payload.messages as Array<{

478+

role: string;

479+

content: Array<Record<string, unknown>>;

480+

}>;

482481

expect(messages[0].content).toHaveLength(2);

483482

});

484483485484

it("does not inject cache points for regular Anthropic model IDs (pi-ai handles them)", async () => {

486485

const provider = await registerWithConfig(undefined);

487486

const payload: Record<string, unknown> = {

488487

system: [{ text: "You are helpful." }],

489-

messages: [

490-

{ role: "user", content: [{ text: "Hello" }] },

491-

],

488+

messages: [{ role: "user", content: [{ text: "Hello" }] }],

492489

};

493490494491

// Regular model IDs contain "claude" so pi-ai handles caching natively.

@@ -517,9 +514,7 @@ describe("amazon-bedrock provider plugin", () => {

517514

const oldClaudeModel = "anthropic.claude-3-opus-20240229-v1:0";

518515

const payload: Record<string, unknown> = {

519516

system: [{ text: "You are helpful." }],

520-

messages: [

521-

{ role: "user", content: [{ text: "Hello" }] },

522-

],

517+

messages: [{ role: "user", content: [{ text: "Hello" }] }],

523518

};

524519525520

// Claude 3 Opus is not in pi-ai's supportsPromptCaching list, but it's

@@ -546,9 +541,7 @@ describe("amazon-bedrock provider plugin", () => {

546541

const provider = await registerWithConfig(undefined);

547542

const payload: Record<string, unknown> = {

548543

system: [{ text: "You are helpful." }],

549-

messages: [

550-

{ role: "user", content: [{ text: "Hello" }] },

551-

],

544+

messages: [{ role: "user", content: [{ text: "Hello" }] }],

552545

};

553546554547

await callWrappedStreamWithPayload(

@@ -584,7 +577,10 @@ describe("amazon-bedrock provider plugin", () => {

584577

payload,

585578

);

586579587-

const messages = payload.messages as Array<{ role: string; content: Array<Record<string, unknown>> }>;

580+

const messages = payload.messages as Array<{

581+

role: string;

582+

content: Array<Record<string, unknown>>;

583+

}>;

588584

// First user message should NOT have a cache point

589585

expect(messages[0].content).toHaveLength(1);

590586

// Assistant message untouched

@@ -661,17 +657,14 @@ describe("amazon-bedrock provider plugin", () => {

661657

it("retries opaque profile lookup after a transient failure instead of caching the fallback", async () => {

662658

const modelId =

663659

"arn:aws:bedrock:us-east-1:123456789012:application-inference-profile/z27qyso459dc";

664-

inferenceProfileResults.push(

665-

new Error("throttled"),

666-

{

667-

models: [

668-

{

669-

modelArn:

670-

"arn:aws:bedrock:us-east-1::foundation-model/anthropic.claude-sonnet-4-6-20250514-v1:0",

671-

},

672-

],

673-

},

674-

);

660+

inferenceProfileResults.push(new Error("throttled"), {

661+

models: [

662+

{

663+

modelArn:

664+

"arn:aws:bedrock:us-east-1::foundation-model/anthropic.claude-sonnet-4-6-20250514-v1:0",

665+

},

666+

],

667+

});

675668

const provider = await registerWithConfig(undefined);

676669

const firstPayload: Record<string, unknown> = {

677670

system: [{ text: "You are helpful." }],