eve
Version:
Filesystem-first framework for durable backend AI agents that run anywhere.
6 lines (5 loc) • 379 B
TypeScript
import type { DurableStepResult } from "#execution/next-driver-action.js";
import type { TurnStepInput } from "#execution/durable-session-migrations/turn-workflow.js";
export type { TurnStepInput };
/** Runs a bounded batch of harness model steps inside one durable `"use step"` boundary. */
export declare function turnStep(rawInput: TurnStepInput): Promise<DurableStepResult>;