mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-16 07:33:46 -06:00
6 lines
246 B
TypeScript
6 lines
246 B
TypeScript
const NON_TERMINAL_AGENT_RUN_STATUSES = new Set(["accepted", "started", "in_flight"]);
|
|
|
|
export function isNonTerminalAgentRunStatus(status: unknown): boolean {
|
|
return typeof status === "string" && NON_TERMINAL_AGENT_RUN_STATUSES.has(status);
|
|
}
|