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

推荐订阅源

F
Fortinet All Blogs
有赞技术团队
有赞技术团队
量子位
N
Netflix TechBlog - Medium
博客园 - 叶小钗
博客园 - 三生石上(FineUI控件)
Google DeepMind News
Google DeepMind News
aimingoo的专栏
aimingoo的专栏
GbyAI
GbyAI
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Blog — PlanetScale
Blog — PlanetScale
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
月光博客
月光博客
Martin Fowler
Martin Fowler
Y
Y Combinator Blog
宝玉的分享
宝玉的分享
博客园 - 司徒正美
云风的 BLOG
云风的 BLOG
V
Visual Studio Blog
V
V2EX
IT之家
IT之家
L
LangChain Blog
大猫的无限游戏
大猫的无限游戏
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More

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): bound live agent model probes · openclaw/op...
steipete · 2026-05-27 · via Recent Commits to openclaw:main

@@ -88,6 +88,8 @@ const GATEWAY_LIVE_SETUP_TIMEOUT_MS = Math.max(

8888

);

8989

const GATEWAY_LIVE_MODEL_TIMEOUT_MS = resolveGatewayLiveModelTimeoutMs();

9090

const GATEWAY_LIVE_TRANSCRIPT_TIMEOUT_MS = resolveGatewayLiveTranscriptTimeoutMs();

91+

const GATEWAY_LIVE_AGENT_RUN_TIMEOUT_MS = resolveGatewayLiveAgentRunTimeoutMs();

92+

const GATEWAY_LIVE_AGENT_WAIT_TIMEOUT_MS = resolveGatewayLiveAgentWaitTimeoutMs();

9193

const GATEWAY_LIVE_HEARTBEAT_MS = Math.max(

9294

1_000,

9395

toInt(process.env.OPENCLAW_LIVE_GATEWAY_HEARTBEAT_MS, 30_000),

@@ -251,6 +253,24 @@ function resolveGatewayLiveTranscriptTimeoutMs(

251253

return Math.max(stepTimeoutMs, modelTimeoutMs);

252254

}

253255256+

function resolveGatewayLiveAgentRunTimeoutMs(

257+

modelTimeoutMs = GATEWAY_LIVE_MODEL_TIMEOUT_MS,

258+

): number {

259+

if (!Number.isFinite(modelTimeoutMs) || modelTimeoutMs <= 1_000) {

260+

return Math.max(1_000, Math.floor(modelTimeoutMs));

261+

}

262+

const terminalGraceMs = Math.min(30_000, Math.max(5_000, Math.floor(modelTimeoutMs / 6)));

263+

return Math.max(1_000, Math.floor(modelTimeoutMs - terminalGraceMs));

264+

}

265+266+

function resolveGatewayLiveAgentWaitTimeoutMs(

267+

agentRunTimeoutMs = GATEWAY_LIVE_AGENT_RUN_TIMEOUT_MS,

268+

modelTimeoutMs = GATEWAY_LIVE_MODEL_TIMEOUT_MS,

269+

): number {

270+

const waitGraceMs = Math.min(10_000, Math.max(1_000, Math.floor(modelTimeoutMs / 12)));

271+

return Math.max(1_000, Math.min(modelTimeoutMs, Math.floor(agentRunTimeoutMs + waitGraceMs)));

272+

}

273+254274

function isGatewayLiveProbeTimeout(error: string): boolean {

255275

return /probe timeout after \d+ms/i.test(error);

256276

}

@@ -680,6 +700,41 @@ describe("resolveGatewayLiveTranscriptTimeoutMs", () => {

680700

});

681701

});

682702703+

describe("resolveGatewayLiveAgentRunTimeoutMs", () => {

704+

it("leaves terminal-observation grace inside the model timeout", () => {

705+

expect(resolveGatewayLiveAgentRunTimeoutMs(180_000)).toBe(150_000);

706+

});

707+708+

it("keeps short live probes bounded but positive", () => {

709+

expect(resolveGatewayLiveAgentRunTimeoutMs(6_000)).toBe(1_000);

710+

});

711+

});

712+713+

describe("resolveGatewayLiveAgentWaitTimeoutMs", () => {

714+

it("waits past the run timeout but before the model timeout", () => {

715+

expect(resolveGatewayLiveAgentWaitTimeoutMs(150_000, 180_000)).toBe(160_000);

716+

});

717+

});

718+719+

describe("formatGatewayLiveAgentWaitFailure", () => {

720+

it("includes terminal attribution fields without requiring transcript text", () => {

721+

expect(

722+

formatGatewayLiveAgentWaitFailure({

723+

context: "anthropic prompt",

724+

runId: "run-1",

725+

result: {

726+

status: "timeout",

727+

timeoutPhase: "provider",

728+

providerStarted: true,

729+

stopReason: "rpc",

730+

},

731+

}).message,

732+

).toContain(

733+

"anthropic prompt: agent.wait timeout for runId=run-1 (timeoutPhase=provider, providerStarted=true, stopReason=rpc)",

734+

);

735+

});

736+

});

737+683738

describe("assertGatewayLiveDidNotSkipAllDueToTimeout", () => {

684739

it("allows all-skip runs when no timeout skip was involved", () => {

685740

expect(() =>

@@ -1582,6 +1637,64 @@ async function waitForSessionAssistantText(params: {

15821637

throw new Error(`${timeoutLabel} timeout after ${timeoutMs}ms (${params.context})`);

15831638

}

158416391640+

function formatGatewayLiveAgentWaitFailure(params: {

1641+

context: string;

1642+

runId: string;

1643+

result: unknown;

1644+

}): Error {

1645+

const result = params.result as

1646+

| {

1647+

status?: unknown;

1648+

error?: unknown;

1649+

stopReason?: unknown;

1650+

timeoutPhase?: unknown;

1651+

providerStarted?: unknown;

1652+

}

1653+

| null

1654+

| undefined;

1655+

const status = typeof result?.status === "string" ? result.status : "unknown";

1656+

const details = [

1657+

typeof result?.timeoutPhase === "string" ? `timeoutPhase=${result.timeoutPhase}` : undefined,

1658+

typeof result?.providerStarted === "boolean"

1659+

? `providerStarted=${String(result.providerStarted)}`

1660+

: undefined,

1661+

typeof result?.stopReason === "string" ? `stopReason=${result.stopReason}` : undefined,

1662+

typeof result?.error === "string" ? `error=${result.error}` : undefined,

1663+

].filter((value): value is string => Boolean(value));

1664+

return new Error(

1665+

`${params.context}: agent.wait ${status} for runId=${params.runId}${

1666+

details.length > 0 ? ` (${details.join(", ")})` : ""

1667+

}`,

1668+

);

1669+

}

1670+1671+

async function waitForGatewayAgentRun(params: {

1672+

client: GatewayClient;

1673+

runId: string;

1674+

context: string;

1675+

timeoutMs?: number;

1676+

}): Promise<void> {

1677+

const timeoutMs = params.timeoutMs ?? GATEWAY_LIVE_TRANSCRIPT_TIMEOUT_MS;

1678+

const result = await params.client.request(

1679+

"agent.wait",

1680+

{

1681+

runId: params.runId,

1682+

timeoutMs,

1683+

},

1684+

{

1685+

timeoutMs: timeoutMs + 5_000,

1686+

},

1687+

);

1688+

if ((result as { status?: unknown } | undefined)?.status === "ok") {

1689+

return;

1690+

}

1691+

throw formatGatewayLiveAgentWaitFailure({

1692+

context: params.context,

1693+

runId: params.runId,

1694+

result,

1695+

});

1696+

}

1697+15851698

async function requestGatewayAgentText(params: {

15861699

client: GatewayClient;

15871700

sessionKey: string;

@@ -1599,27 +1712,55 @@ async function requestGatewayAgentText(params: {

15991712

const baselineAssistantCount = (

16001713

await readSessionAssistantTexts(params.sessionKey, params.modelKey)

16011714

).length;

1715+

const runId = params.idempotencyKey;

16021716

const accepted = await withGatewayLiveProbeTimeout(

16031717

params.client.request("agent", {

16041718

sessionKey: params.sessionKey,

1605-

idempotencyKey: params.idempotencyKey,

1719+

idempotencyKey: runId,

16061720

message: params.message,

16071721

thinking: params.thinkingLevel,

16081722

deliver: false,

1723+

timeout: Math.ceil(GATEWAY_LIVE_AGENT_RUN_TIMEOUT_MS / 1_000),

16091724

attachments: params.attachments,

16101725

}),

16111726

`${params.context}: agent-accept`,

16121727

);

16131728

if (accepted?.status !== "accepted") {

16141729

throw new Error(`agent status=${String(accepted?.status)}`);

16151730

}

1616-

return await waitForSessionAssistantText({

1731+

const transcriptPromise = waitForSessionAssistantText({

16171732

sessionKey: params.sessionKey,

16181733

baselineAssistantCount,

16191734

context: `${params.context}: transcript-final`,

16201735

modelKey: params.modelKey,

16211736

timeoutLabel: "model",

16221737

timeoutMs: GATEWAY_LIVE_TRANSCRIPT_TIMEOUT_MS,

1738+

}).then((text) => ({ kind: "transcript" as const, text }));

1739+

const agentWaitPromise = waitForGatewayAgentRun({

1740+

client: params.client,

1741+

runId,

1742+

context: `${params.context}: agent-wait`,

1743+

timeoutMs: GATEWAY_LIVE_AGENT_WAIT_TIMEOUT_MS,

1744+

}).then(

1745+

() => ({ kind: "agent-ok" as const }),

1746+

(error: unknown) => ({ kind: "agent-error" as const, error }),

1747+

);

1748+

const first = await Promise.race([transcriptPromise, agentWaitPromise]);

1749+

if (first.kind === "transcript") {

1750+

void agentWaitPromise.catch(() => undefined);

1751+

return first.text;

1752+

}

1753+

void transcriptPromise.catch(() => undefined);

1754+

if (first.kind === "agent-error") {

1755+

throw first.error instanceof Error ? first.error : new Error(String(first.error));

1756+

}

1757+

return await waitForSessionAssistantText({

1758+

sessionKey: params.sessionKey,

1759+

baselineAssistantCount,

1760+

context: `${params.context}: transcript-after-agent-wait`,

1761+

modelKey: params.modelKey,

1762+

timeoutLabel: "probe",

1763+

timeoutMs: GATEWAY_LIVE_PROBE_TIMEOUT_MS,

16231764

});

16241765

}

16251766

@@ -2128,7 +2269,7 @@ async function runGatewayModelSuite(params: GatewayModelSuiteParams) {

21282269

`[${params.label}] running ${params.candidates.length} models (thinking=${params.thinkingLevel})`,

21292270

);

21302271

logProgress(

2131-

`[${params.label}] heartbeat=${Math.max(1, Math.round(GATEWAY_LIVE_HEARTBEAT_MS / 1_000))}s probe-timeout=${Math.max(1, Math.round(GATEWAY_LIVE_PROBE_TIMEOUT_MS / 1_000))}s model-timeout=${Math.max(1, Math.round(GATEWAY_LIVE_MODEL_TIMEOUT_MS / 1_000))}s transcript-timeout=${Math.max(1, Math.round(GATEWAY_LIVE_TRANSCRIPT_TIMEOUT_MS / 1_000))}s`,

2272+

`[${params.label}] heartbeat=${Math.max(1, Math.round(GATEWAY_LIVE_HEARTBEAT_MS / 1_000))}s probe-timeout=${Math.max(1, Math.round(GATEWAY_LIVE_PROBE_TIMEOUT_MS / 1_000))}s agent-timeout=${Math.max(1, Math.round(GATEWAY_LIVE_AGENT_RUN_TIMEOUT_MS / 1_000))}s agent-wait=${Math.max(1, Math.round(GATEWAY_LIVE_AGENT_WAIT_TIMEOUT_MS / 1_000))}s model-timeout=${Math.max(1, Math.round(GATEWAY_LIVE_MODEL_TIMEOUT_MS / 1_000))}s transcript-timeout=${Math.max(1, Math.round(GATEWAY_LIVE_TRANSCRIPT_TIMEOUT_MS / 1_000))}s`,

21322273

);

21332274

const anthropicKeys = collectAnthropicApiKeys();

21342275

if (anthropicKeys.length > 0) {