export interface Insight { /** The type of insight. Will always be `"reasoning"` for now. */ type: "reasoning"; /** The content of the reasoning insight. */ content: string; }