import type { ToolCallChunk } from './tool-call-chunk.js'; /** * Representation of the 'ChatDelta' schema. */ export type ChatDelta = { role?: string; content: string; /** * The refusal message generated by the model. */ refusal?: string; tool_calls?: ToolCallChunk[]; } & Record; //# sourceMappingURL=chat-delta.d.ts.map