Langfuse JS/TS SDKs
    Preparing search index...

    Interface ScoreConfig

    Configuration for a score

    interface ScoreConfig {
        categories?: ConfigCategory[];
        createdAt: string;
        dataType: ScoreDataType;
        description?: string;
        id: string;
        isArchived: boolean;
        maxValue?: number;
        minValue?: number;
        name: string;
        projectId: string;
        updatedAt: string;
    }
    Index

    Properties

    categories?: ConfigCategory[]

    Configures custom categories for categorical scores

    createdAt: string
    dataType: ScoreDataType
    description?: string
    id: string
    isArchived: boolean

    Whether the score config is archived. Defaults to false

    maxValue?: number

    Sets maximum value for numerical scores. If not set, the maximum value defaults to +∞

    minValue?: number

    Sets minimum value for numerical scores. If not set, the minimum value defaults to -∞

    name: string
    projectId: string
    updatedAt: string