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

推荐订阅源

Blog — PlanetScale
Blog — PlanetScale
爱范儿
爱范儿
MongoDB | Blog
MongoDB | Blog
腾讯CDC
aimingoo的专栏
aimingoo的专栏
月光博客
月光博客
Engineering at Meta
Engineering at Meta
C
Check Point Blog
N
Netflix TechBlog - Medium
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
L
LangChain Blog
大猫的无限游戏
大猫的无限游戏
IT之家
IT之家
Microsoft Security Blog
Microsoft Security Blog
GbyAI
GbyAI
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
T
The Blog of Author Tim Ferriss
Last Week in AI
Last Week in AI
B
Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
人人都是产品经理
人人都是产品经理
博客园 - 叶小钗
WordPress大学
WordPress大学
博客园 - 司徒正美

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(thinking): default implicit reasoning models to mediu...
Takhoffman · 2026-04-23 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -42,6 +42,7 @@ Docs: https://docs.openclaw.ai

4242
4343

### Fixes

4444
45+

- Thinking defaults/status: raise the implicit default thinking level for reasoning-capable models from legacy `off`/`low` fallback behavior to a safe provider-supported `medium` equivalent when no explicit config default is set, preserve configured-model reasoning metadata when runtime catalog loading is empty, and make `/status` report the same resolved default as runtime.

4546

- Gateway/model pricing: fetch OpenRouter and LiteLLM pricing asynchronously at startup and extend catalog fetch timeouts to 30 seconds, reducing noisy timeout warnings during slow upstream responses.

4647

- Status: show `Fast` in `/status` when fast mode is enabled, including config/default-derived fast mode, and omit it when disabled.

4748

- OpenAI/image generation: detect Azure OpenAI-style image endpoints, use Azure `api-key` auth plus deployment-scoped image URLs, and honor `AZURE_OPENAI_API_VERSION` so image generation and edits work against Azure-hosted OpenAI resources. (#70570) Thanks @zhanggpcsu.

Original file line numberDiff line numberDiff line change

@@ -1363,10 +1363,10 @@ describe("model-selection", () => {

13631363

expect(resolveAnthropicOpus47Thinking(cfg)).toBe("off");

13641364

});

13651365
1366-

it("falls back to low when no provider thinking hook is active", () => {

1366+

it("falls back to medium when no provider thinking hook is active", () => {

13671367

const cfg = {} as OpenClawConfig;

13681368
1369-

expect(resolveAnthropicOpusThinking(cfg)).toBe("low");

1369+

expect(resolveAnthropicOpusThinking(cfg)).toBe("medium");

13701370
13711371

expect(

13721372

resolveThinkingDefault({

@@ -1382,7 +1382,7 @@ describe("model-selection", () => {

13821382

},

13831383

],

13841384

}),

1385-

).toBe("low");

1385+

).toBe("medium");

13861386

});

13871387

});

13881388

});

Original file line numberDiff line numberDiff line change

@@ -1,4 +1,4 @@

1-

import { resolveThinkingDefaultForModel } from "../auto-reply/thinking.shared.js";

1+

import { resolveThinkingDefaultForModel } from "../auto-reply/thinking.js";

22

import type { OpenClawConfig } from "../config/types.openclaw.js";

33

import {

44

normalizeLowercaseStringOrEmpty,

Original file line numberDiff line numberDiff line change

@@ -141,6 +141,7 @@ function createModelCatalogModuleMock() {

141141

provider: "openai",

142142

id: "gpt-5.4",

143143

name: "GPT-5.4",

144+

reasoning: true,

144145

contextWindow: 400000,

145146

},

146147

],

@@ -940,6 +941,104 @@ describe("session_status tool", () => {

940941

}

941942

});

942943
944+

it("uses the implicit model thinking default when no config default is set", async () => {

945+

resetSessionStore({

946+

"agent:kira:main": {

947+

sessionId: "agent-thinking-implicit",

948+

updatedAt: 10,

949+

},

950+

});

951+

const savedConfig = mockConfig;

952+

try {

953+

mockConfig = {

954+

session: { mainKey: "main", scope: "per-sender" },

955+

agents: {

956+

defaults: {

957+

model: { primary: "openai/gpt-5.4" },

958+

models: {},

959+

},

960+

list: [

961+

{

962+

id: "kira",

963+

model: "openai/gpt-5.4",

964+

},

965+

],

966+

},

967+

tools: {

968+

agentToAgent: { enabled: false },

969+

},

970+

};

971+
972+

const tool = getSessionStatusTool("agent:kira:main");

973+
974+

await tool.execute("call-agent-thinking-implicit", {});

975+
976+

expect(buildStatusMessageMock).toHaveBeenCalledWith(

977+

expect.objectContaining({

978+

agentId: "kira",

979+

agent: expect.objectContaining({

980+

thinkingDefault: "medium",

981+

}),

982+

}),

983+

);

984+

} finally {

985+

mockConfig = savedConfig;

986+

}

987+

});

988+
989+

it("hydrates runtime catalog metadata for status when configured model metadata omits reasoning", async () => {

990+

resetSessionStore({

991+

"agent:kira:main": {

992+

sessionId: "agent-thinking-runtime-hydration",

993+

updatedAt: 10,

994+

},

995+

});

996+

const savedConfig = mockConfig;

997+

try {

998+

mockConfig = {

999+

session: { mainKey: "main", scope: "per-sender" },

1000+

agents: {

1001+

defaults: {

1002+

model: { primary: "openai/gpt-5.4" },

1003+

models: {},

1004+

},

1005+

list: [

1006+

{

1007+

id: "kira",

1008+

model: "openai/gpt-5.4",

1009+

},

1010+

],

1011+

},

1012+

models: {

1013+

providers: {

1014+

openai: {

1015+

baseUrl: "https://api.openai.com/v1",

1016+

models: [{ id: "gpt-5.4", name: "GPT-5.4" }],

1017+

},

1018+

},

1019+

},

1020+

tools: {

1021+

agentToAgent: { enabled: false },

1022+

},

1023+

};

1024+
1025+

const tool = getSessionStatusTool("agent:kira:main");

1026+
1027+

await tool.execute("call-agent-thinking-runtime-hydration", {});

1028+
1029+

expect(buildStatusMessageMock).toHaveBeenCalledWith(

1030+

expect.objectContaining({

1031+

agentId: "kira",

1032+

agent: expect.objectContaining({

1033+

thinkingDefault: "medium",

1034+

}),

1035+

}),

1036+

);

1037+

} finally {

1038+

mockConfig = savedConfig;

1039+

}

1040+

});

1041+
9431042

it("falls back to origin.provider when resolving queue settings", async () => {

9441043

resetSessionStore({

9451044

main: {

Original file line numberDiff line numberDiff line change

@@ -28,10 +28,12 @@ import { formatTaskStatusDetail, formatTaskStatusTitle } from "../../tasks/task-

2828

import { loadModelCatalog } from "../model-catalog.js";

2929

import {

3030

buildAllowedModelSet,

31+

buildConfiguredModelCatalog,

3132

buildModelAliasIndex,

3233

modelKey,

3334

resolveDefaultModelForAgent,

3435

resolveModelRefFromString,

36+

resolveThinkingDefault,

3537

} from "../model-selection.js";

3638

import {

3739

describeSessionStatusTool,

@@ -561,7 +563,32 @@ export function createSessionStatusTool(opts?: {

561563

resolvedVerboseLevel: (statusSessionEntry.verboseLevel ?? "off") as VerboseLevel,

562564

resolvedReasoningLevel: (statusSessionEntry.reasoningLevel ?? "off") as ReasoningLevel,

563565

resolvedElevatedLevel: statusSessionEntry.elevatedLevel as ElevatedLevel | undefined,

564-

resolveDefaultThinkingLevel: async () => cfg.agents?.defaults?.thinkingDefault,

566+

resolveDefaultThinkingLevel: async () => {

567+

const configuredCatalog = buildConfiguredModelCatalog({ cfg });

568+

const configuredSelectedEntry = configuredCatalog.find(

569+

(entry) => entry.provider === providerForCard && entry.id === defaultModelForCard,

570+

);

571+

const shouldHydrateRuntimeCatalog =

572+

configuredCatalog.length === 0 ||

573+

!configuredSelectedEntry ||

574+

configuredSelectedEntry.reasoning === undefined;

575+

const runtimeCatalog = shouldHydrateRuntimeCatalog

576+

? await loadModelCatalog({ config: cfg })

577+

: undefined;

578+

const runtimeSelectedEntry = runtimeCatalog?.find(

579+

(entry) => entry.provider === providerForCard && entry.id === defaultModelForCard,

580+

);

581+

const catalog =

582+

runtimeSelectedEntry || configuredCatalog.length === 0

583+

? (runtimeCatalog ?? configuredCatalog)

584+

: configuredCatalog;

585+

return resolveThinkingDefault({

586+

cfg,

587+

provider: providerForCard,

588+

model: defaultModelForCard,

589+

catalog,

590+

});

591+

},

565592

isGroup,

566593

defaultGroupActivation: () => "mention",

567594

taskLineOverride: taskLine,

Original file line numberDiff line numberDiff line change

@@ -75,6 +75,77 @@ describe("createModelSelectionState catalog loading", () => {

7575

expect(loadModelCatalog).not.toHaveBeenCalled();

7676

});

7777
78+

it("uses the implicit model default when no global thinking default is configured", async () => {

79+

vi.mocked(loadModelCatalog).mockClear();

80+

const cfg = {

81+

agents: {

82+

defaults: {

83+

models: {

84+

"openai-codex/gpt-5.4": {},

85+

},

86+

},

87+

},

88+

models: {

89+

providers: {

90+

"openai-codex": {

91+

baseUrl: "https://api.openai.com/v1",

92+

models: [makeConfiguredModel()],

93+

},

94+

},

95+

},

96+

} as OpenClawConfig;

97+
98+

const state = await createModelSelectionState({

99+

cfg,

100+

agentCfg: cfg.agents?.defaults,

101+

defaultProvider: "openai-codex",

102+

defaultModel: "gpt-5.4",

103+

provider: "openai-codex",

104+

model: "gpt-5.4",

105+

hasModelDirective: false,

106+

});

107+
108+

await expect(state.resolveDefaultThinkingLevel()).resolves.toBe("medium");

109+

expect(loadModelCatalog).not.toHaveBeenCalled();

110+

});

111+
112+

it("hydrates runtime catalog metadata when the configured allowlist entry lacks reasoning", async () => {

113+

vi.mocked(loadModelCatalog).mockClear();

114+

vi.mocked(loadModelCatalog).mockResolvedValueOnce([

115+

{ provider: "openai-codex", id: "gpt-5.4", name: "GPT-5.4", reasoning: true },

116+

]);

117+

const cfg = {

118+

agents: {

119+

defaults: {

120+

models: {

121+

"openai-codex/gpt-5.4": {},

122+

},

123+

},

124+

},

125+

models: {

126+

providers: {

127+

"openai-codex": {

128+

baseUrl: "https://api.openai.com/v1",

129+

models: [makeConfiguredModel({ reasoning: undefined })],

130+

},

131+

},

132+

},

133+

} as OpenClawConfig;

134+
135+

const state = await createModelSelectionState({

136+

cfg,

137+

agentCfg: cfg.agents?.defaults,

138+

defaultProvider: "openai-codex",

139+

defaultModel: "gpt-5.4",

140+

provider: "openai-codex",

141+

model: "gpt-5.4",

142+

hasModelDirective: false,

143+

});

144+
145+

await expect(state.resolveDefaultThinkingLevel()).resolves.toBe("medium");

146+

expect(loadModelCatalog).toHaveBeenCalledOnce();

147+

});

148+
78149

it("prefers per-agent thinkingDefault over model and global defaults", async () => {

79150

vi.mocked(loadModelCatalog).mockClear();

80151

const cfg = {

Original file line numberDiff line numberDiff line change

@@ -457,11 +457,26 @@ export async function createModelSelectionState(params: {

457457

defaultThinkingLevel = explicitThinkingDefault;

458458

return defaultThinkingLevel;

459459

}

460-

if (!modelCatalog) {

460+

let catalogForThinking =

461+

modelCatalog && modelCatalog.length > 0 ? modelCatalog : allowedModelCatalog;

462+

const selectedCatalogEntry = catalogForThinking?.find(

463+

(entry) => entry.provider === provider && entry.id === model,

464+

);

465+

const shouldHydrateRuntimeCatalog =

466+

!modelCatalog && (!selectedCatalogEntry || selectedCatalogEntry.reasoning === undefined);

467+

if (shouldHydrateRuntimeCatalog) {

461468

modelCatalog = await (await loadModelCatalogRuntime()).loadModelCatalog({ config: cfg });

462469

logStage("catalog-loaded-for-thinking", `entries=${modelCatalog.length}`);

470+

const runtimeSelectedEntry = modelCatalog.find(

471+

(entry) => entry.provider === provider && entry.id === model,

472+

);

473+

catalogForThinking =

474+

runtimeSelectedEntry || !catalogForThinking || catalogForThinking.length === 0

475+

? modelCatalog.length > 0

476+

? modelCatalog

477+

: allowedModelCatalog

478+

: allowedModelCatalog;

463479

}

464-

const catalogForThinking = modelCatalog.length > 0 ? modelCatalog : allowedModelCatalog;

465480

const resolved = resolveThinkingDefault({

466481

cfg,

467482

provider,

Original file line numberDiff line numberDiff line change

@@ -259,16 +259,49 @@ describe("resolveThinkingDefaultForModel", () => {

259259

).toBe("off");

260260

});

261261
262-

it("defaults reasoning-capable catalog models to low", () => {

262+

it("defaults reasoning-capable catalog models to medium", () => {

263263

expect(

264264

resolveThinkingDefaultForModel({

265265

provider: "openai",

266266

model: "gpt-5.4",

267267

catalog: [{ provider: "openai", id: "gpt-5.4", reasoning: true }],

268268

}),

269+

).toBe("medium");

270+

});

271+
272+

it("remaps implicit reasoning defaults to the strongest supported level at or below medium", () => {

273+

providerRuntimeMocks.resolveProviderBinaryThinking.mockImplementation(

274+

({ provider }) => provider === "demo-binary",

275+

);

276+
277+

expect(

278+

resolveThinkingDefaultForModel({

279+

provider: "demo-binary",

280+

model: "demo-model",

281+

catalog: [{ provider: "demo-binary", id: "demo-model", reasoning: true }],

282+

}),

269283

).toBe("low");

270284

});

271285
286+

it("keeps catalog reasoning context when remapping implicit reasoning defaults", () => {

287+

providerRuntimeMocks.resolveProviderThinkingProfile.mockImplementation(

288+

({ provider, context }) =>

289+

provider === "demo-contextual" && context.reasoning

290+

? { levels: [{ id: "off" }, { id: "low" }, { id: "medium" }] }

291+

: provider === "demo-contextual"

292+

? { levels: [{ id: "off" }] }

293+

: undefined,

294+

);

295+
296+

expect(

297+

resolveThinkingDefaultForModel({

298+

provider: "demo-contextual",

299+

model: "demo-model",

300+

catalog: [{ provider: "demo-contextual", id: "demo-model", reasoning: true }],

301+

}),

302+

).toBe("medium");

303+

});

304+
272305

it("defaults to off when no adaptive or reasoning hint is present", () => {

273306

expect(

274307

resolveThinkingDefaultForModel({