export interface ChoiceDeltaToolCallFunction { name?: string; arguments?: string; } export interface ChoiceDeltaToolCall { index: number; id?: string; type?: "function"; function?: ChoiceDeltaToolCallFunction; }