import type { ChoiceDeltaToolCall } from "./ChoiceDeltaToolCall.mjs"; export interface ChoiceDelta { content?: string | null; refusal?: string | null; reasoning_content?: string | null; role?: string | null; function_call?: Record | null; tool_calls?: ChoiceDeltaToolCall[] | null; }