UNPKG

eve

Version:

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

13 lines (12 loc) 511 B
export interface DeliveryPolicy { readonly allowsEmptyDelivery: boolean; readonly instruction?: string; } /** Resolves one policy for both model prompting and empty-response recovery. */ export declare function resolveDeliveryPolicy(input: { readonly hasOutputSchema: boolean; readonly isChild: boolean; readonly isFirstTurn: boolean; readonly hasScheduleProvenance: boolean; readonly taskDeliveryPhase: "none" | "initiating" | "pending" | "settled" | undefined; }): DeliveryPolicy;