UNPKG

eve

Version:

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

5 lines (4 loc) • 306 B
import type { DurableStepResult, TurnStepInput } from "#execution/session/turn-step-types.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>;