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

推荐订阅源

Y
Y Combinator Blog
IT之家
IT之家
博客园_首页
量子位
博客园 - 三生石上(FineUI控件)
小众软件
小众软件
博客园 - 聂微东
罗磊的独立博客
酷 壳 – CoolShell
酷 壳 – CoolShell
Hugging Face - Blog
Hugging Face - Blog
V
V2EX
爱范儿
爱范儿
大猫的无限游戏
大猫的无限游戏
宝玉的分享
宝玉的分享
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
雷峰网
雷峰网
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Google DeepMind News
Google DeepMind News
Microsoft Azure Blog
Microsoft Azure Blog
有赞技术团队
有赞技术团队
S
SegmentFault 最新的问题
Engineering at Meta
Engineering at Meta
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com

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 agents stream timeout heartbeat · openclaw/openclaw@f...
MkDev11 · 2026-05-03 · via Recent Commits to openclaw:main

@@ -2069,6 +2069,17 @@ export async function runEmbeddedPiAgent(

20692069

toolMediaUrls: attempt.toolMediaUrls,

20702070

toolAudioAsVoice: attempt.toolAudioAsVoice,

20712071

});

2072+

const timedOutDuringPrompt =

2073+

timedOut && !timedOutDuringCompaction && !timedOutDuringToolExecution;

2074+

const hasPartialAssistantTextAfterPromptTimeout =

2075+

timedOutDuringPrompt &&

2076+

(attempt.assistantTexts ?? []).some((text) => text.trim().length > 0) &&

2077+

!attempt.clientToolCalls &&

2078+

!attempt.yieldDetected &&

2079+

!attempt.didSendViaMessagingTool &&

2080+

!attempt.didSendDeterministicApprovalPrompt &&

2081+

!attempt.lastToolError &&

2082+

(attempt.toolMetas?.length ?? 0) === 0;

20722083

const attemptToolSummary = buildTraceToolSummary({

20732084

toolMetas: attempt.toolMetas,

20742085

hadFailure: Boolean(attempt.lastToolError),

@@ -2078,14 +2089,11 @@ export async function runEmbeddedPiAgent(

20782089

lastToolError: attempt.lastToolError,

20792090

});

208020912081-

// Timeout aborts can leave the run without any assistant payloads.

2082-

// Emit an explicit timeout error instead of silently completing, so

2083-

// callers do not lose the turn as an orphaned user message.

2092+

// Timeout aborts can leave the run without payloads or with only a

2093+

// partial assistant fragment. Emit an explicit timeout error instead.

20842094

if (

2085-

timedOut &&

2086-

!timedOutDuringCompaction &&

2087-

!timedOutDuringToolExecution &&

2088-

!payloadsWithToolMedia?.length

2095+

timedOutDuringPrompt &&

2096+

(!payloadsWithToolMedia?.length || hasPartialAssistantTextAfterPromptTimeout)

20892097

) {

20902098

const timeoutText = idleTimedOut

20912099

? "The model did not produce a response before the model idle timeout. " +

@@ -2094,7 +2102,7 @@ export async function runEmbeddedPiAgent(

20942102

"Please try again, or increase `agents.defaults.timeoutSeconds` in your config.";

20952103

const replayInvalid = resolveReplayInvalidForAttempt(null);

20962104

const livenessState = resolveRunLivenessState({

2097-

payloadCount: payloads.length,

2105+

payloadCount: hasPartialAssistantTextAfterPromptTimeout ? 0 : payloads.length,

20982106

aborted,

20992107

timedOut,

21002108

attempt,