Interface SentimentAnalysisNodeParameters

Source
interface SentimentAnalysisNodeParameters {
    inputText?: string;
    options?: {
        batching?: {
            batchSize?: number;
            delayBetweenBatches?: number;
        };
        categories?: string;
        enableAutoFixing?: boolean;
        includeDetailedResults?: boolean;
        systemPromptTemplate?: string;
    };
}

Properties§

§readonly inputText?: string

Use an expression to reference data in previous nodes or enter static text Type options: {"rows":2}

§readonly options?: { ... }

Default: {}