mirror of
https://github.com/QwenLM/qwen-code.git
synced 2026-08-03 13:24:41 +00:00
* fix(web-shell): sync background agent status * fix(web-shell): harden background agent reconciliation --------- Co-authored-by: ytahdn <ytahdn@gmail.com>
5 lines
178 B
TypeScript
5 lines
178 B
TypeScript
import type { DaemonSessionTaskStatus } from '@qwen-code/sdk/daemon';
|
|
|
|
export function isComposerTask(task: DaemonSessionTaskStatus): boolean {
|
|
return task.kind !== 'agent';
|
|
}
|