UNPKG

eve

Version:

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

7 lines (6 loc) 495 B
import type { UserContent } from "ai"; import type { SendPayload } from "#channel/routes.js"; /** Normalizes the shorthand input forms accepted by channel and session sends. */ export declare function normalizeSendInput(input: string | UserContent | SendPayload): SendPayload; /** Serializes non-data URL file parts before input crosses the durable boundary. */ export declare function serializeUrlFilePartsInMessage(message: string | UserContent | undefined): string | UserContent | undefined;