UNPKG

eve

Version:

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

8 lines (7 loc) 256 B
/** * Execution mode for one runtime-owned run. * * Conversation runs may park and resume on follow-up input. Task runs must * finish within the current invocation and cannot wait for another message. */ export type RunMode = "conversation" | "task";