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

推荐订阅源

U
Unit 42
博客园 - 司徒正美
V
Visual Studio Blog
博客园 - 【当耐特】
T
Tailwind CSS Blog
美团技术团队
博客园 - 叶小钗
Jina AI
Jina AI
宝玉的分享
宝玉的分享
IT之家
IT之家
Hugging Face - Blog
Hugging Face - Blog
雷峰网
雷峰网
Stack Overflow Blog
Stack Overflow Blog
博客园_首页
人人都是产品经理
人人都是产品经理
T
The Blog of Author Tim Ferriss
P
Proofpoint News Feed
Microsoft Security Blog
Microsoft Security Blog
Y
Y Combinator Blog
GbyAI
GbyAI
大猫的无限游戏
大猫的无限游戏
Martin Fowler
Martin Fowler
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
腾讯CDC

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(fireworks): pin Kimi thinking policy off · openclaw/o...
frankekn · 2026-05-05 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

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

7171
7272

- Doctor/gateway: report recent supervisor restart handoffs in `openclaw doctor --deep`, using the installed service environment when available so service-managed clean exits are visible in guided diagnostics. Thanks @shakkernerd.

7373

- Gateway/status: show recent supervisor restart handoffs in `openclaw gateway status --deep`, including JSON details, so clean service-managed restarts are reported as restart handoffs instead of opaque stopped-service diagnostics. Thanks @shakkernerd.

74+

- Providers/Fireworks: expose Kimi models as thinking-off-only and keep K2.5/K2.6 requests on `thinking: disabled`, so manual model switches do not send Fireworks-rejected `reasoning*` parameters. Refs #74289. Thanks @frankekn.

7475

- Video generation: wait up to 20 minutes for slow fal/MiniMax queue-backed jobs, stop forwarding unsupported Google Veo generated-audio options, and normalize MiniMax `720P` requests to its supported `768P` resolution with the usual override warning/details instead of failing fallback.

7576

- Video generation: accept provider-specific aspect-ratio and resolution hints at the tool boundary, normalize `720P` to MiniMax's supported `768P`, and stop sending Google `generateAudio` on Gemini video requests so provider fallback can recover from model-specific parameter differences. Thanks @vincentkoc.

7677

- OpenAI/Google Meet: fail realtime voice connection attempts when the socket closes before `session.updated`, avoiding stuck Meet joins waiting on a bridge that never became ready. Thanks @vincentkoc.

Original file line numberDiff line numberDiff line change

@@ -18,6 +18,7 @@ import {

1818

FIREWORKS_K2_6_MAX_TOKENS,

1919

FIREWORKS_K2_6_MODEL_ID,

2020

} from "./provider-catalog.js";

21+

import { resolveThinkingProfile } from "./provider-policy-api.js";

2122
2223

function createFireworksDefaultRuntimeModel(params: { reasoning: boolean }): ProviderRuntimeModel {

2324

return {

@@ -144,4 +145,42 @@ describe("fireworks provider plugin", () => {

144145

reasoning: false,

145146

});

146147

});

148+
149+

it("exposes off-only thinking policy for Fireworks Kimi models", async () => {

150+

const provider = await registerSingleProviderPlugin(fireworksPlugin);

151+
152+

expect(

153+

provider.resolveThinkingProfile?.({

154+

provider: "fireworks",

155+

modelId: "accounts/fireworks/routers/kimi-k2p5-turbo",

156+

}),

157+

).toEqual({

158+

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

159+

defaultLevel: "off",

160+

});

161+

expect(

162+

provider.resolveThinkingProfile?.({

163+

provider: "fireworks",

164+

modelId: FIREWORKS_K2_6_MODEL_ID,

165+

}),

166+

).toEqual({

167+

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

168+

defaultLevel: "off",

169+

});

170+

expect(

171+

provider.resolveThinkingProfile?.({

172+

provider: "fireworks",

173+

modelId: "accounts/fireworks/models/qwen3.6-plus",

174+

}),

175+

).toBeUndefined();

176+

expect(resolveThinkingProfile({ modelId: FIREWORKS_K2_6_MODEL_ID })).toEqual({

177+

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

178+

defaultLevel: "off",

179+

});

180+

expect(

181+

resolveThinkingProfile({

182+

modelId: "accounts/fireworks/models/qwen3.6-plus",

183+

}),

184+

).toBeUndefined();

185+

});

147186

});

Original file line numberDiff line numberDiff line change

@@ -16,6 +16,7 @@ import {

1616

FIREWORKS_DEFAULT_MODEL_ID,

1717

} from "./provider-catalog.js";

1818

import { wrapFireworksProviderStream } from "./stream.js";

19+

import { resolveFireworksThinkingProfile } from "./thinking-policy.js";

1920
2021

const PROVIDER_ID = "fireworks";

2122

function resolveFireworksDynamicModel(ctx: ProviderResolveDynamicModelContext) {

@@ -77,6 +78,7 @@ export default defineSingleProviderPluginEntry({

7778

},

7879

...OPENAI_COMPATIBLE_REPLAY_HOOKS,

7980

wrapStreamFn: wrapFireworksProviderStream,

81+

resolveThinkingProfile: ({ modelId }) => resolveFireworksThinkingProfile(modelId),

8082

resolveDynamicModel: (ctx) => resolveFireworksDynamicModel(ctx),

8183

isModernModelRef: () => true,

8284

},

Original file line numberDiff line numberDiff line change

@@ -0,0 +1,8 @@

1+

import { resolveFireworksThinkingProfile } from "./thinking-policy.js";

2+
3+

export function resolveThinkingProfile(params: {

4+

provider?: string;

5+

modelId: string;

6+

}): ReturnType<typeof resolveFireworksThinkingProfile> {

7+

return resolveFireworksThinkingProfile(params.modelId);

8+

}

Original file line numberDiff line numberDiff line change

@@ -74,7 +74,7 @@ describe("createFireworksKimiThinkingDisabledWrapper", () => {

7474

});

7575
7676

it("strips reasoning fields when disabling Fireworks Kimi thinking", () => {

77-

const payload = capturePayload({

77+

const k2p5Payload = capturePayload({

7878

provider: "fireworks",

7979

api: "openai-completions",

8080

modelId: "accounts/fireworks/models/kimi-k2p5",

@@ -84,8 +84,19 @@ describe("createFireworksKimiThinkingDisabledWrapper", () => {

8484

reasoningEffort: "low",

8585

},

8686

});

87+

const k2p6Payload = capturePayload({

88+

provider: "fireworks",

89+

api: "openai-completions",

90+

modelId: "accounts/fireworks/models/kimi-k2p6",

91+

initialPayload: {

92+

reasoning_effort: "low",

93+

reasoning: { effort: "low" },

94+

reasoningEffort: "low",

95+

},

96+

});

8797
88-

expect(payload).toEqual({ thinking: { type: "disabled" } });

98+

expect(k2p5Payload).toEqual({ thinking: { type: "disabled" } });

99+

expect(k2p6Payload).toEqual({ thinking: { type: "disabled" } });

89100

});

90101
91102

it("passes sanitized payloads to caller onPayload hooks", () => {

Original file line numberDiff line numberDiff line change

@@ -0,0 +1,17 @@

1+

import type { ProviderThinkingProfile } from "openclaw/plugin-sdk/plugin-entry";

2+

import { isFireworksKimiModelId } from "./model-id.js";

3+
4+

const FIREWORKS_KIMI_THINKING_PROFILE = {

5+

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

6+

defaultLevel: "off",

7+

} as const satisfies ProviderThinkingProfile;

8+
9+

export function resolveFireworksThinkingProfile(

10+

modelId: string,

11+

): ProviderThinkingProfile | undefined {

12+

if (!isFireworksKimiModelId(modelId)) {

13+

return undefined;

14+

}

15+
16+

return FIREWORKS_KIMI_THINKING_PROFILE;

17+

}