/**
 * The sentiment analysis configuration
 */
export interface SentimentAnalysis {
    /**
     * Whether sentiment analysis is enabled
     */
    enabled?: boolean;
    /**
     * Whether to show stats
     */
    showStats?: boolean;
    /**
     * The model version
     */
    modelVersion?: string;
}
