UNPKG

ai-utils.js

Version:

Build AI applications, chatbots, and agents with JavaScript and TypeScript.

8 lines (7 loc) 145 B
export type DeltaEvent<FULL_DELTA> = { type: "delta"; fullDelta: FULL_DELTA; } | { type: "error"; error: unknown; } | undefined;