eve
Version:
Filesystem-first framework for durable backend AI agents that run anywhere.
12 lines (11 loc) • 556 B
TypeScript
import { type DurableSessionState } from "#execution/durable-session-store.js";
import type { UnstampedMessageStreamEvent } from "#protocol/message.js";
/** Emits an agent invocation event on the parent stream. */
export declare function emitSubagentEventStep(input: {
readonly event: UnstampedMessageStreamEvent;
readonly sessionWritable: WritableStream<Uint8Array>;
readonly serializedContext: Record<string, unknown>;
readonly sessionState: DurableSessionState;
}): Promise<{
readonly serializedContext: Record<string, unknown>;
}>;