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

推荐订阅源

罗磊的独立博客
L
LangChain Blog
aimingoo的专栏
aimingoo的专栏
IT之家
IT之家
B
Blog
博客园_首页
博客园 - 司徒正美
有赞技术团队
有赞技术团队
博客园 - 聂微东
I
InfoQ
美团技术团队
GbyAI
GbyAI
阮一峰的网络日志
阮一峰的网络日志
H
Help Net Security
大猫的无限游戏
大猫的无限游戏
MyScale Blog
MyScale Blog
WordPress大学
WordPress大学
The GitHub Blog
The GitHub Blog
A
About on SuperTechFans
人人都是产品经理
人人都是产品经理
Microsoft Azure Blog
Microsoft Azure Blog
Engineering at Meta
Engineering at Meta
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
The Cloudflare 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(xai): request encrypted reasoning include for all rea...
geraint0923 · 2026-06-23 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -523,7 +523,11 @@ Legacy aliases still normalize to the canonical bundled ids:

523523

`agents.defaults.models["xai/<model>"].params.tool_stream` to `false` to

524524

disable it.

525525

- The bundled xAI wrapper strips unsupported strict tool-schema flags and

526-

reasoning payload keys before sending native xAI requests.

526+

reasoning *effort* payload keys before sending native xAI requests. Only

527+

`grok-4.3` / `grok-4.3-*` advertise configurable reasoning effort; all

528+

other reasoning-capable xAI models still request

529+

`include: ["reasoning.encrypted_content"]` so prior encrypted reasoning

530+

can be replayed on follow-up turns.

527531

- `web_search`, `x_search`, and `code_execution` are exposed as OpenClaw

528532

tools. OpenClaw enables the specific xAI built-in it needs inside each tool

529533

request instead of attaching all native tools to every chat turn.

Original file line numberDiff line numberDiff line change

@@ -188,6 +188,33 @@ describe("xai provider plugin", () => {

188188

"grok-composer-2.5-fast",

189189

"grok-build",

190190

]);

191+

const composer = result.provider.models.find((model) => model.id === "grok-composer-2.5-fast");

192+

if (!composer) {

193+

throw new Error("expected OAuth Composer model");

194+

}

195+

expect(composer.reasoning).toBe(true);

196+

expect(result.provider.models.find((model) => model.id === "grok-build")?.reasoning).toBe(true);

197+

const normalizedComposer = provider.normalizeResolvedModel?.({

198+

provider: "xai",

199+

modelId: composer.id,

200+

model: { ...composer, provider: "xai" },

201+

} as never);

202+

if (!normalizedComposer) {

203+

throw new Error("expected normalized OAuth Composer model");

204+

}

205+

const capture = createXaiPayloadCaptureStream();

206+

const wrapped = provider.wrapStreamFn?.({

207+

provider: "xai",

208+

modelId: normalizedComposer.id,

209+

extraParams: {},

210+

streamFn: capture.streamFn,

211+

} as never);

212+

if (!wrapped) {

213+

throw new Error("expected xAI stream wrapper");

214+

}

215+

void wrapped(normalizedComposer as never, { messages: [] } as never, {});

216+

expect(capture.getCapturedPayload()).not.toHaveProperty("reasoning");

217+

expect(capture.getCapturedPayload()?.include).toEqual(["reasoning.encrypted_content"]);

191218

expect(providerAuthRuntimeMocks.resolveApiKeyForProvider).toHaveBeenCalledWith({

192219

provider: "xai",

193220

cfg: { models: {} },

Original file line numberDiff line numberDiff line change

@@ -23,6 +23,9 @@ const XAI_GROK_OAUTH_BASE_URL = "https://cli-chat-proxy.grok.com/v1";

2323

const XAI_GROK_OAUTH_MODELS_ENDPOINT = `${XAI_GROK_OAUTH_BASE_URL}/models`;

2424

const XAI_MODELS_CACHE_TTL_MS = 60_000;

2525

const XAI_GROK_OAUTH_MODELS_CACHE_TTL_MS = 60_000;

26+

// Composer emits replayable Responses reasoning, but the OAuth catalog omits that capability.

27+

// Keep it classified here or the stream wrapper will omit encrypted reasoning from replay.

28+

const XAI_GROK_OAUTH_REASONING_MODEL_IDS = new Set(["grok-composer-2.5-fast"]);

2629

const XAI_UNKNOWN_MODEL_COST = {

2730

input: 0,

2831

output: 0,

@@ -146,11 +149,13 @@ function buildXaiOauthModelFromLiveRow(row: unknown): ModelDefinitionConfig | un

146149

readLiveModelPositiveInteger(row, ["max_completion_tokens", "maxCompletionTokens"]) ??

147150

fallback?.maxTokens ??

148151

XAI_DEFAULT_MAX_TOKENS;

149-

const reasoning =

152+

const supportsReasoningEffort =

150153

readLiveModelBoolean(row, "supports_reasoning_effort") ??

151-

readLiveModelBoolean(row, "supportsReasoningEffort") ??

152-

fallback?.reasoning ??

153-

false;

154+

readLiveModelBoolean(row, "supportsReasoningEffort");

155+

const reasoning =

156+

supportsReasoningEffort === true ||

157+

fallback?.reasoning === true ||

158+

XAI_GROK_OAUTH_REASONING_MODEL_IDS.has(modelId);

154159
155160

return {

156161

id: modelId,

Original file line numberDiff line numberDiff line change

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

11

// Xai plugin module implements runtime model compat behavior.

2+

// Reasoning effort is configurable only for grok-4.3*; encrypted reasoning include/replay is

3+

// handled separately in stream.ts for all reasoning-capable xAI models.

24

import { applyXaiModelCompat } from "./model-compat.js";

35
46

type XaiRuntimeModelCompat = {

Original file line numberDiff line numberDiff line change

@@ -395,6 +395,55 @@ describe("xai stream wrappers", () => {

395395

expect(payload).not.toHaveProperty("reasoning_effort");

396396

});

397397
398+

it("still requests encrypted reasoning include when effort is unsupported", () => {

399+

const payload: Record<string, unknown> = {

400+

reasoning: { effort: "high" },

401+

input: [],

402+

};

403+

const baseStreamFn: StreamFn = (model, _context, options) => {

404+

options?.onPayload?.(payload, model);

405+

return {} as ReturnType<StreamFn>;

406+

};

407+

const wrapped = createXaiToolPayloadCompatibilityWrapper(baseStreamFn);

408+
409+

void wrapped(

410+

{

411+

api: "openai-responses",

412+

provider: "xai",

413+

id: "grok-build-0.1",

414+

reasoning: true,

415+

compat: { supportsReasoningEffort: false },

416+

} as unknown as Model<"openai-responses">,

417+

{ messages: [] } as Context,

418+

{},

419+

);

420+
421+

expect(payload).not.toHaveProperty("reasoning");

422+

expect(payload.include).toEqual(["reasoning.encrypted_content"]);

423+

});

424+
425+

it("merges encrypted reasoning include with existing include entries", () => {

426+

const payload: Record<string, unknown> = {

427+

include: ["file_search_call.results"],

428+

};

429+

runXaiToolPayloadWrapper({

430+

payload,

431+

modelId: "grok-build-0.1",

432+

});

433+
434+

expect(payload.include).toEqual(["file_search_call.results", "reasoning.encrypted_content"]);

435+

});

436+
437+

it("does not request encrypted reasoning include for non-reasoning xai models", () => {

438+

const payload: Record<string, unknown> = {};

439+

runXaiToolPayloadWrapper({

440+

payload,

441+

modelId: "grok-4-fast-non-reasoning",

442+

});

443+
444+

expect(payload).not.toHaveProperty("include");

445+

});

446+
398447

it("keeps native xAI Responses thinking efforts before the shared runtime dispatches payloads", async () => {

399448

const payload = await captureXaiResponsesPayloadWithThinking();

400449
Original file line numberDiff line numberDiff line change

@@ -53,6 +53,26 @@ function supportsReasoningControls(model: { compat?: unknown; reasoning?: unknow

5353

return model.reasoning === true && compat?.supportsReasoningEffort !== false;

5454

}

5555
56+

const XAI_REASONING_ENCRYPTED_CONTENT_INCLUDE = "reasoning.encrypted_content";

57+
58+

/** xAI-only: request encrypted reasoning for every reasoning-capable model, even when effort is unsupported. */

59+

function ensureXaiResponsesEncryptedReasoningInclude(

60+

payloadObj: Record<string, unknown>,

61+

model: { api?: unknown; provider?: unknown; reasoning?: unknown },

62+

): void {

63+

if (model.provider !== "xai" || model.api !== "openai-responses" || model.reasoning !== true) {

64+

return;

65+

}

66+

const existing = payloadObj.include;

67+

const include = Array.isArray(existing)

68+

? existing.filter((entry): entry is string => typeof entry === "string")

69+

: [];

70+

if (!include.includes(XAI_REASONING_ENCRYPTED_CONTENT_INCLUDE)) {

71+

include.push(XAI_REASONING_ENCRYPTED_CONTENT_INCLUDE);

72+

}

73+

payloadObj.include = include;

74+

}

75+
5676

const TOOL_RESULT_IMAGE_REPLAY_TEXT = "Attached image(s) from tool result:";

5777
5878

type ReplayableInputImagePart =

@@ -181,10 +201,13 @@ export function createXaiToolPayloadCompatibilityWrapper(

181201

}

182202

normalizeXaiResponsesToolResultPayload(payloadObj, model);

183203

if (!supportsReasoningControls(model)) {

204+

// Only grok-4.3* advertises configurable effort; drop effort fields elsewhere.

184205

delete payloadObj.reasoning;

185206

delete payloadObj.reasoningEffort;

186207

delete payloadObj.reasoning_effort;

187208

}

209+

// All reasoning xAI models should still request + later replay encrypted_content.

210+

ensureXaiResponsesEncryptedReasoningInclude(payloadObj, model);

188211

}

189212

return originalOnPayload?.(payload, model);

190213

},