eve
Version:
Filesystem-first framework for durable backend AI agents that run anywhere.
9 lines (8 loc) • 382 B
TypeScript
/** Posts one framework callback payload with the shared callback transport policy. */
export declare function postSessionCallbackRequest(input: {
readonly body: unknown;
/** Set false when the caller owns failure logging, such as best-effort activity. */
readonly logFailures?: boolean;
readonly timeoutMs?: number;
readonly url: string;
}): Promise<Response>;