eve
Version:
Filesystem-first framework for durable backend AI agents that run anywhere.
8 lines (7 loc) • 471 B
TypeScript
/** Starts workflow-tool runs for pending blocking actions from either source. */
import { type CoordinationDispatchInput, type CoordinationDispatchResult } from "#execution/coordination-dispatch-shared.js";
type CoordinationDispatchStepInput = CoordinationDispatchInput & {
readonly action: "park" | "dispatch-workflow-tasks";
};
export declare function dispatchCoordinationStep(input: CoordinationDispatchStepInput): Promise<CoordinationDispatchResult>;
export {};