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

推荐订阅源

Stack Overflow Blog
Stack Overflow Blog
S
SegmentFault 最新的问题
大猫的无限游戏
大猫的无限游戏
The GitHub Blog
The GitHub Blog
M
MIT News - Artificial intelligence
T
Tailwind CSS Blog
aimingoo的专栏
aimingoo的专栏
Last Week in AI
Last Week in AI
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
罗磊的独立博客
H
Help Net Security
Engineering at Meta
Engineering at Meta
Microsoft Security Blog
Microsoft Security Blog
阮一峰的网络日志
阮一峰的网络日志
J
Java Code Geeks
T
The Blog of Author Tim Ferriss
Hugging Face - Blog
Hugging Face - Blog
C
Check Point Blog
F
Fortinet All Blogs
腾讯CDC
博客园 - Franky
WordPress大学
WordPress大学
U
Unit 42

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(openai): normalize responses replay tool ids · opencl...
yetval · 2026-05-27 · via Recent Commits to openclaw:main
1+

import { createHash } from "node:crypto";

12

import type { AgentMessage } from "@earendil-works/pi-agent-core";

2334

type OpenAIThinkingBlock = {

@@ -20,6 +21,10 @@ type DowngradeOpenAIReasoningBlocksOptions = {

2021

dropReplayableReasoning?: boolean;

2122

};

222324+

const OPENAI_RESPONSES_ID_MAX_LENGTH = 64;

25+

const OPENAI_RESPONSES_CALL_ID_RE = /^call_[A-Za-z0-9_-]{1,59}$/;

26+

const OPENAI_RESPONSES_FUNCTION_CALL_ITEM_ID_RE = /^fc_[A-Za-z0-9_-]{1,61}$/;

27+2328

function parseOpenAIReasoningSignature(value: unknown): OpenAIReasoningSignature | null {

2429

if (!value) {

2530

return null;

@@ -86,6 +91,193 @@ function isOpenAIToolCallType(type: unknown): boolean {

8691

return type === "toolCall" || type === "toolUse" || type === "functionCall";

8792

}

889394+

function shortOpenAIResponsesIdHash(id: string): string {

95+

return createHash("sha256").update(id).digest("hex").slice(0, 10);

96+

}

97+98+

function sanitizeOpenAIResponsesIdTail(value: string): string {

99+

return value.replace(/[^A-Za-z0-9_-]/g, "_").replace(/^_+|_+$/g, "");

100+

}

101+102+

function normalizeOpenAIResponsesIdPart(params: {

103+

value: string;

104+

prefix: "call_" | "fc_";

105+

isValid: (value: string) => boolean;

106+

}): string {

107+

const trimmed = params.value.trim();

108+

if (params.isValid(trimmed)) {

109+

return trimmed;

110+

}

111+112+

const rawTail = trimmed.startsWith(params.prefix) ? trimmed.slice(params.prefix.length) : trimmed;

113+

const hash = shortOpenAIResponsesIdHash(trimmed || params.prefix);

114+

const maxTailLength = OPENAI_RESPONSES_ID_MAX_LENGTH - params.prefix.length;

115+

const hashSuffix = `_${hash}`;

116+

const safeTail = sanitizeOpenAIResponsesIdTail(rawTail);

117+

const clippedBase = safeTail.slice(0, Math.max(1, maxTailLength - hashSuffix.length));

118+

const tail = `${clippedBase || "id"}${hashSuffix}`.slice(0, maxTailLength);

119+

return `${params.prefix}${tail}`;

120+

}

121+122+

function normalizeOpenAIResponsesFunctionCallId(id: string): string {

123+

const { callId, itemId } = splitOpenAIFunctionCallPairing(id);

124+

const normalizedCallId = normalizeOpenAIResponsesIdPart({

125+

value: callId,

126+

prefix: "call_",

127+

isValid: (value) => OPENAI_RESPONSES_CALL_ID_RE.test(value),

128+

});

129+130+

if (!itemId) {

131+

return normalizedCallId;

132+

}

133+134+

const normalizedItemId = normalizeOpenAIResponsesIdPart({

135+

value: itemId,

136+

prefix: "fc_",

137+

isValid: (value) => OPENAI_RESPONSES_FUNCTION_CALL_ITEM_ID_RE.test(value),

138+

});

139+

return `${normalizedCallId}|${normalizedItemId}`;

140+

}

141+142+

function shouldNormalizeOpenAIResponsesToolCallId(id: string): boolean {

143+

const pairing = splitOpenAIFunctionCallPairing(id);

144+

if (!OPENAI_RESPONSES_CALL_ID_RE.test(pairing.callId)) {

145+

return true;

146+

}

147+

if (pairing.itemId === undefined) {

148+

return false;

149+

}

150+

return !OPENAI_RESPONSES_FUNCTION_CALL_ITEM_ID_RE.test(pairing.itemId);

151+

}

152+153+

function createOpenAIResponsesToolCallIdResolver(): {

154+

resolveAssistantId: (id: string) => string;

155+

resolveToolResultId: (id: string) => string;

156+

} {

157+

const rewrittenByOriginalId = new Map<string, string>();

158+159+

return {

160+

resolveAssistantId(id: string): string {

161+

const rewritten = rewrittenByOriginalId.get(id);

162+

if (rewritten) {

163+

return rewritten;

164+

}

165+

if (!shouldNormalizeOpenAIResponsesToolCallId(id)) {

166+

return id;

167+

}

168+

const normalized = normalizeOpenAIResponsesFunctionCallId(id);

169+

rewrittenByOriginalId.set(id, normalized);

170+

return normalized;

171+

},

172+

resolveToolResultId(id: string): string {

173+

const rewritten = rewrittenByOriginalId.get(id);

174+

if (rewritten) {

175+

return rewritten;

176+

}

177+

if (!shouldNormalizeOpenAIResponsesToolCallId(id)) {

178+

return id;

179+

}

180+

const normalized = normalizeOpenAIResponsesFunctionCallId(id);

181+

rewrittenByOriginalId.set(id, normalized);

182+

return normalized;

183+

},

184+

};

185+

}

186+187+

/**

188+

* OpenAI Responses rejects replayed `function_call.call_id`,

189+

* `function_call.id`, and matching `function_call_output.call_id` values

190+

* that exceed its 64-char `call_*` / `fc_*` shape. pi-ai skips its own

191+

* normalizer for same-model replay, then splits persisted `call_id|fc_id`

192+

* pairs directly into the provider payload, so OpenClaw must normalize here.

193+

*/

194+

export function normalizeOpenAIResponsesToolCallIds(messages: AgentMessage[]): AgentMessage[] {

195+

let changed = false;

196+

const resolver = createOpenAIResponsesToolCallIdResolver();

197+

const rewrittenMessages: AgentMessage[] = [];

198+199+

for (const msg of messages) {

200+

if (!msg || typeof msg !== "object") {

201+

rewrittenMessages.push(msg);

202+

continue;

203+

}

204+205+

const role = (msg as { role?: unknown }).role;

206+

if (role === "assistant") {

207+

const assistantMsg = msg as Extract<AgentMessage, { role: "assistant" }>;

208+

if (!Array.isArray(assistantMsg.content)) {

209+

rewrittenMessages.push(msg);

210+

continue;

211+

}

212+213+

let assistantChanged = false;

214+

const nextContent = assistantMsg.content.map((block) => {

215+

if (!block || typeof block !== "object") {

216+

return block;

217+

}

218+

const toolCallBlock = block as OpenAIToolCallBlock;

219+

if (!isOpenAIToolCallType(toolCallBlock.type) || typeof toolCallBlock.id !== "string") {

220+

return block;

221+

}

222+223+

const nextId = resolver.resolveAssistantId(toolCallBlock.id);

224+

if (nextId === toolCallBlock.id) {

225+

return block;

226+

}

227+

assistantChanged = true;

228+

return {

229+

...(block as unknown as Record<string, unknown>),

230+

id: nextId,

231+

} as typeof block;

232+

});

233+234+

if (!assistantChanged) {

235+

rewrittenMessages.push(msg);

236+

continue;

237+

}

238+

changed = true;

239+

rewrittenMessages.push({ ...assistantMsg, content: nextContent } as AgentMessage);

240+

continue;

241+

}

242+243+

if (role === "toolResult") {

244+

const toolResult = msg as Extract<AgentMessage, { role: "toolResult" }> & {

245+

toolUseId?: unknown;

246+

};

247+

let toolResultChanged = false;

248+

const updates: Record<string, string> = {};

249+250+

if (typeof toolResult.toolCallId === "string") {

251+

const nextToolCallId = resolver.resolveToolResultId(toolResult.toolCallId);

252+

if (nextToolCallId !== toolResult.toolCallId) {

253+

updates.toolCallId = nextToolCallId;

254+

toolResultChanged = true;

255+

}

256+

}

257+258+

if (typeof toolResult.toolUseId === "string") {

259+

const nextToolUseId = resolver.resolveToolResultId(toolResult.toolUseId);

260+

if (nextToolUseId !== toolResult.toolUseId) {

261+

updates.toolUseId = nextToolUseId;

262+

toolResultChanged = true;

263+

}

264+

}

265+266+

if (!toolResultChanged) {

267+

rewrittenMessages.push(msg);

268+

continue;

269+

}

270+

changed = true;

271+

rewrittenMessages.push({ ...toolResult, ...updates } as AgentMessage);

272+

continue;

273+

}

274+275+

rewrittenMessages.push(msg);

276+

}

277+278+

return changed ? rewrittenMessages : messages;

279+

}

280+89281

/**

90282

* OpenAI can reject replayed `function_call` items with an `fc_*` id if the

91283

* matching `reasoning` item is absent in the same assistant turn.