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

推荐订阅源

Last Week in AI
Last Week in AI
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园_首页
雷峰网
雷峰网
IT之家
IT之家
I
InfoQ
酷 壳 – CoolShell
酷 壳 – CoolShell
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
B
Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 【当耐特】
大猫的无限游戏
大猫的无限游戏
博客园 - 聂微东
Hugging Face - Blog
Hugging Face - Blog
A
About on SuperTechFans
月光博客
月光博客
P
Proofpoint News Feed
博客园 - 三生石上(FineUI控件)
J
Java Code Geeks
G
Google Developers Blog
小众软件
小众软件
宝玉的分享
宝玉的分享
Jina AI
Jina AI
V
Visual Studio 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(gateway): project failed agent turns in chat history ...
IWhatsskill · 2026-06-16 · via Recent Commits to openclaw:main

@@ -5,6 +5,7 @@ import { asFiniteNumber } from "@openclaw/normalization-core/number-coercion";

55

import { asOptionalRecord as readRecord } from "@openclaw/normalization-core/record-coerce";

66

import { normalizeOptionalString } from "@openclaw/normalization-core/string-coerce";

77

import { OPENCLAW_RUNTIME_CONTEXT_CUSTOM_TYPE } from "../agents/internal-runtime-context.js";

8+

import { STREAM_ERROR_FALLBACK_TEXT } from "../agents/stream-message-shared.js";

89

import { isHeartbeatOkResponse, isHeartbeatUserMessage } from "../auto-reply/heartbeat-filter.js";

910

import { HEARTBEAT_PROMPT } from "../auto-reply/heartbeat.js";

1011

import { extractCanvasFromText } from "../chat/canvas-render.js";

@@ -1595,16 +1596,119 @@ function projectSessionsSendInterSessionMessages(

15951596

return changed ? projected : messages;

15961597

}

159715981599+

const GATEWAY_ASSISTANT_ERROR_FALLBACK_TEXT = "The agent run failed before producing a reply.";

1600+1601+

function sanitizeAssistantErrorDisplayMessage(

1602+

message: Record<string, unknown>,

1603+

): Record<string, unknown> {

1604+

const { content, ...envelope } = message;

1605+

const next = sanitizeChatHistoryMessage(envelope, Number.MAX_SAFE_INTEGER).message as Record<

1606+

string,

1607+

unknown

1608+

>;

1609+

next.content = Array.isArray(content)

1610+

? content

1611+

.map(

1612+

(block) =>

1613+

sanitizeChatHistoryContentBlock(block, { maxChars: Number.MAX_SAFE_INTEGER }).block,

1614+

)

1615+

.filter((block) => {

1616+

if (!block || typeof block !== "object" || Array.isArray(block)) {

1617+

return true;

1618+

}

1619+

const type = (block as { type?: unknown }).type;

1620+

return type !== "thinking" && type !== "reasoning" && type !== "redacted_thinking";

1621+

})

1622+

: content;

1623+

delete next.diagnostics;

1624+

delete next.errorBody;

1625+

delete next.errorCode;

1626+

delete next.errorMessage;

1627+

delete next.errorType;

1628+

return next;

1629+

}

1630+1631+

function projectEmptyAssistantErrorMessages(

1632+

messages: Array<Record<string, unknown>>,

1633+

): Array<Record<string, unknown>> {

1634+

let changed = false;

1635+

const projected = messages.map((message) => {

1636+

if (message.role !== "assistant" || message.stopReason !== "error") {

1637+

return message;

1638+

}

1639+

const hasDisplayableStructuredContent =

1640+

Array.isArray(message.content) &&

1641+

message.content.some((block) => {

1642+

if (!block || typeof block !== "object" || Array.isArray(block)) {

1643+

return false;

1644+

}

1645+

const type = (block as { type?: unknown }).type;

1646+

return (

1647+

type !== "text" &&

1648+

type !== "thinking" &&

1649+

type !== "reasoning" &&

1650+

type !== "redacted_thinking"

1651+

);

1652+

});

1653+

if (hasDisplayableStructuredContent) {

1654+

changed = true;

1655+

return sanitizeAssistantErrorDisplayMessage(message);

1656+

}

1657+

const sanitized = sanitizeChatHistoryMessage(message, Number.MAX_SAFE_INTEGER)

1658+

.message as Record<string, unknown>;

1659+

const visibleTexts: string[] = [];

1660+

if (typeof sanitized.content === "string") {

1661+

visibleTexts.push(sanitized.content);

1662+

} else if (Array.isArray(sanitized.content)) {

1663+

for (const block of sanitized.content) {

1664+

if (!block || typeof block !== "object" || Array.isArray(block)) {

1665+

continue;

1666+

}

1667+

const entry = block as { type?: unknown; text?: unknown };

1668+

if (entry.type === "text" && typeof entry.text === "string") {

1669+

visibleTexts.push(entry.text);

1670+

}

1671+

}

1672+

}

1673+

if (typeof sanitized.text === "string") {

1674+

visibleTexts.push(sanitized.text);

1675+

}

1676+

const nonEmptyVisibleTexts = visibleTexts.map((text) => text.trim()).filter(Boolean);

1677+

const hasVisibleReplyText = nonEmptyVisibleTexts.some(

1678+

(text) => text !== STREAM_ERROR_FALLBACK_TEXT && !isSuppressedControlReplyText(text),

1679+

);

1680+

if (!shouldDropAssistantHistoryMessage(sanitized) && hasVisibleReplyText) {

1681+

changed = true;

1682+

return sanitizeAssistantErrorDisplayMessage(message);

1683+

}

1684+

changed = true;

1685+

const next: Record<string, unknown> = {

1686+

...sanitized,

1687+

content: [{ type: "text", text: GATEWAY_ASSISTANT_ERROR_FALLBACK_TEXT }],

1688+

};

1689+

delete next.diagnostics;

1690+

delete next.errorBody;

1691+

delete next.errorCode;

1692+

delete next.errorMessage;

1693+

delete next.errorType;

1694+

delete next.phase;

1695+

delete next.text;

1696+

return next;

1697+

});

1698+

return changed ? projected : messages;

1699+

}

1700+15981701

export function projectChatDisplayMessages(

15991702

messages: unknown[],

16001703

options?: { maxChars?: number; stripEnvelope?: boolean },

16011704

): Array<Record<string, unknown>> {

16021705

const source = options?.stripEnvelope === false ? messages : stripEnvelopeFromMessages(messages);

16031706

const mirrored = mirrorMessageToolVisibleReplies(source);

1707+

const projectedErrors = projectEmptyAssistantErrorMessages(toProjectedMessages(mirrored));

16041708

const projectedForwarded = mergeTtsSupplementMessages(

16051709

filterVisibleProjectedHistoryMessages(

16061710

projectSessionsSendInterSessionMessages(

1607-

toProjectedMessages(sanitizeChatHistoryMessages(mirrored, Number.MAX_SAFE_INTEGER)),

1711+

toProjectedMessages(sanitizeChatHistoryMessages(projectedErrors, Number.MAX_SAFE_INTEGER)),

16081712

),

16091713

),

16101714

);