export interface ConversationAnalysis {
    /** The ID of the conversation analysis. */
    id: string;
    /** Latencies between turns in milliseconds. */
    latencies_ms: number[];
    /** Number of interruptions in the conversation. */
    interruptions_count: number;
}
