UNPKG

eve

Version:

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

5 lines (4 loc) • 385 B
import type { DurableStepResult } from "#execution/session/turn-step-types.js"; import type { StepResult } from "#harness/types.js"; import type { RunMode } from "#shared/run-mode.js"; export declare function resolveSessionStepResult(stepResult: StepResult, nextSerializedContext: Record<string, unknown>, mode: RunMode, beforeStepContext: Record<string, unknown>): DurableStepResult;