fix: 保证工具调用开始态可见

- 工具开始事件后让出一次有界绘制机会

- 覆盖快速工具调用的状态可见性测试
This commit is contained in:
2026-08-20 11:24:25 +08:00
parent 7f083a9433
commit 9078ca163e
2 changed files with 114 additions and 0 deletions

View File

@@ -29,6 +29,8 @@ interface ActiveAguiRun {
abort: () => void;
}
const TOOL_START_PAINT_FALLBACK_MS = 50;
/** 带 HTTP 状态码的 AG-UI 传输异常。 */
export class EasyFlowAguiHttpError extends Error {
constructor(
@@ -69,6 +71,36 @@ function toTransportJson<T>(value: T): T {
return JSON.parse(JSON.stringify(value)) as T;
}
/**
* 在工具开始事件后让出一次页面绘制机会。
*
* <p>AG-UI 可能在同一批响应数据中连续送达工具开始和结果事件。Vue 虽已收到开始态,
* 浏览器仍可能在首次绘制前就将其覆盖为完成态。这里使用一帧回调并设置有界兜底,
* 既确保前台页面能展示“调用中”,也避免后台标签页暂停动画帧时阻塞事件流。</p>
*
* @returns 页面获得绘制机会后完成的 Promise
*/
function waitForToolStartPaint(): Promise<void> {
return new Promise((resolve) => {
let settled = false;
const complete = () => {
if (settled) return;
settled = true;
clearTimeout(fallbackTimer);
resolve();
};
const fallbackTimer = setTimeout(complete, TOOL_START_PAINT_FALLBACK_MS);
if (typeof globalThis.requestAnimationFrame !== 'function') {
setTimeout(complete, 0);
return;
}
globalThis.requestAnimationFrame(() => {
// requestAnimationFrame 回调发生在绘制前,再让出一个任务周期后继续消费后续事件。
setTimeout(complete, 0);
});
});
}
/**
* EasyFlow 的无头 AG-UI 运行客户端。
*
@@ -142,6 +174,9 @@ export class EasyFlowAguiClient {
) {
terminalReceived = true;
}
if (event.type === EventType.TOOL_CALL_START) {
await waitForToolStartPaint();
}
}
if (!activeRun.aborted && !terminalReceived) {
throw new Error('Agent 事件流缺少终态,请重试');
@@ -198,6 +233,9 @@ export class EasyFlowAguiClient {
if (Number.isSafeInteger(cursor) && cursor > 0) {
options.onCursor?.(cursor);
}
if (event.type === EventType.TOOL_CALL_START) {
await waitForToolStartPaint();
}
}
if (!terminalReceived) {
if (activeRun.aborted) return;