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

推荐订阅源

freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
H
Help Net Security
云风的 BLOG
云风的 BLOG
Apple Machine Learning Research
Apple Machine Learning Research
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Hugging Face - Blog
Hugging Face - Blog
博客园_首页
D
Docker
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Blog — PlanetScale
Blog — PlanetScale
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
GbyAI
GbyAI
博客园 - Franky
B
Blog RSS Feed
Stack Overflow Blog
Stack Overflow Blog
L
LangChain Blog
量子位
V
Visual Studio Blog
Y
Y Combinator Blog
小众软件
小众软件
N
Netflix TechBlog - Medium
博客园 - 三生石上(FineUI控件)
Microsoft Security Blog
Microsoft Security 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(bedrock): expose Opus 4.7 max thinking · openclaw/ope...
clawsweeper · 2026-04-30 · via Recent Commits to openclaw:main

@@ -285,6 +285,22 @@ function injectBedrockCachePoints(

285285

}

286286

}

287287288+

function patchOpus47MaxThinkingEffort(payload: Record<string, unknown>): void {

289+

const fieldsValue = payload.additionalModelRequestFields;

290+

const fields =

291+

fieldsValue && typeof fieldsValue === "object" && !Array.isArray(fieldsValue)

292+

? (fieldsValue as Record<string, unknown>)

293+

: {};

294+

const outputConfigValue = fields.output_config;

295+

const outputConfig =

296+

outputConfigValue && typeof outputConfigValue === "object" && !Array.isArray(outputConfigValue)

297+

? (outputConfigValue as Record<string, unknown>)

298+

: {};

299+

outputConfig.effort = "max";

300+

fields.output_config = outputConfig;

301+

payload.additionalModelRequestFields = fields;

302+

}

303+288304

export function registerAmazonBedrockPlugin(api: OpenClawPluginApi): void {

289305

// Keep registration-local constants inside the function so partial module

290306

// initialization during test bootstrap cannot trip TDZ reads.

@@ -441,7 +457,7 @@ export function registerAmazonBedrockPlugin(api: OpenClawPluginApi): void {

441457

},

442458

resolveConfigApiKey: ({ env }) => resolveBedrockConfigApiKey(env),

443459

...anthropicByModelReplayHooks,

444-

wrapStreamFn: ({ modelId, config, model, streamFn }) => {

460+

wrapStreamFn: ({ modelId, config, model, streamFn, thinkingLevel }) => {

445461

const currentGuardrail = resolveCurrentPluginConfig(config)?.guardrail;

446462

// Apply cache + guardrail wrapping.

447463

const wrapped =

@@ -452,12 +468,13 @@ export function registerAmazonBedrockPlugin(api: OpenClawPluginApi): void {

452468

const mayNeedCacheInjection =

453469

isBedrockAppInferenceProfile(modelId) && !piAiWouldInjectCachePoints(modelId);

454470

const shouldOmitTemperature = isOpus47BedrockModelRef(modelId);

471+

const shouldPatchMaxThinking = shouldOmitTemperature && thinkingLevel === "max";

455472456473

// For known Anthropic models (heuristic match), enable injection immediately.

457474

// For opaque profile IDs, we'll resolve via GetInferenceProfile on first call.

458475

const heuristicMatch = needsCachePointInjection(modelId);

459476460-

if (!region && !mayNeedCacheInjection && !shouldOmitTemperature) {

477+

if (!region && !mayNeedCacheInjection && !shouldOmitTemperature && !shouldPatchMaxThinking) {

461478

return wrapped;

462479

}

463480

@@ -471,8 +488,24 @@ export function registerAmazonBedrockPlugin(api: OpenClawPluginApi): void {

471488

Object.assign({}, options, region ? { region } : {}),

472489

);

473490491+

const originalOnPayload = merged.onPayload as

492+

| ((payload: unknown, model: unknown) => unknown)

493+

| undefined;

494+474495

if (!mayNeedCacheInjection) {

475-

return underlying(streamModel, context, merged);

496+

return underlying(streamModel, context, {

497+

...merged,

498+

...(shouldPatchMaxThinking

499+

? {

500+

onPayload: (payload: unknown, payloadModel: unknown) => {

501+

if (payload && typeof payload === "object") {

502+

patchOpus47MaxThinkingEffort(payload as Record<string, unknown>);

503+

}

504+

return originalOnPayload?.(payload, payloadModel);

505+

},

506+

}

507+

: {}),

508+

});

476509

}

477510478511

// Use the cacheRetention from options if explicitly set.

@@ -485,10 +518,6 @@ export function registerAmazonBedrockPlugin(api: OpenClawPluginApi): void {

485518

// want caching enabled, so defaulting to "short" is the safer behavior.

486519

const cacheRetention =

487520

typeof merged.cacheRetention === "string" ? merged.cacheRetention : "short";

488-

const originalOnPayload = merged.onPayload as

489-

| ((payload: unknown, model: unknown) => unknown)

490-

| undefined;

491-492521

if (heuristicMatch) {

493522

// Fast path: ARN heuristic already identified this as Claude, but the

494523

// concrete target may still need profile traits for Opus 4.7 payloads.

@@ -499,6 +528,9 @@ export function registerAmazonBedrockPlugin(api: OpenClawPluginApi): void {

499528

if (payload && typeof payload === "object") {

500529

const payloadRecord = payload as Record<string, unknown>;

501530

injectBedrockCachePoints(payloadRecord, cacheRetention);

531+

if (shouldPatchMaxThinking) {

532+

patchOpus47MaxThinkingEffort(payloadRecord);

533+

}

502534

if (mayNeedTemperatureTrait) {

503535

const traits = await resolveAppProfileTraits(modelId, region);

504536

if (traits.omitTemperature) {

@@ -522,6 +554,9 @@ export function registerAmazonBedrockPlugin(api: OpenClawPluginApi): void {

522554

if (traits.cacheEligible) {

523555

injectBedrockCachePoints(payloadRecord, cacheRetention);

524556

}

557+

if (shouldPatchMaxThinking) {

558+

patchOpus47MaxThinkingEffort(payloadRecord);

559+

}

525560

if (traits.omitTemperature) {

526561

omitDeprecatedOpus47PayloadTemperature(payloadRecord);

527562

}