export interface ChatToolCall { id: string; type: "function"; function: { name: string; arguments: string; }; } export interface ChatUsage { prompt_tokens: number; completion_tokens: number; total_tokens: number; } export interface ChatChoice { index: number; message: { role: string; content: string | null; tool_calls?: ChatToolCall[]; }; finish_reason: string; } //# sourceMappingURL=chat-fragments-types.d.ts.map