UNPKG

eve

Version:

Filesystem-first framework for durable backend AI agents that run anywhere.

14 lines (13 loc) 694 B
import { type DurableSessionState } from "#execution/durable-session-store.js"; import type { RuntimeSubagentResultActionResult } from "#runtime/actions/types.js"; /** Dispatches the child-agent action currently blocking a dynamic workflow. */ export declare function dispatchWorkflowRuntimeActionsStep(input: { readonly callbackBaseUrl?: string; readonly parentContinuationToken?: string; readonly parentWritable: WritableStream<Uint8Array>; readonly serializedContext: Record<string, unknown>; readonly sessionState: DurableSessionState; }): Promise<{ readonly results: readonly RuntimeSubagentResultActionResult[]; readonly sessionState: DurableSessionState; }>;