Langfuse JS/TS SDKs
    Preparing search index...
    interface Text {
        authorUserId: string | null;
        comment: string | null;
        configId: string | null;
        createdAt: string;
        datasetRunId?: string | null;
        dataType: "TEXT";
        environment: string;
        id: string;
        metadata?: unknown;
        name: string;
        observationId?: string | null;
        queueId: string | null;
        sessionId?: string | null;
        source: ScoreSource;
        stringValue: string;
        timestamp: string;
        trace?: GetScoresResponseTraceData;
        traceId?: string | null;
        updatedAt: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    authorUserId: string | null

    The user ID of the author

    comment: string | null

    Comment on the score

    configId: string | null

    Reference a score config on a score. When set, config and score name must be equal and value must comply to optionally defined numerical range

    createdAt: string
    datasetRunId?: string | null

    The dataset run ID associated with the score

    dataType: "TEXT"
    environment: string

    The environment from which this score originated. Can be any lowercase alphanumeric string with hyphens and underscores that does not start with 'langfuse'.

    id: string
    metadata?: unknown

    Metadata associated with the score

    name: string
    observationId?: string | null

    The observation ID associated with the score

    queueId: string | null

    The annotation queue referenced by the score. Indicates if score was initially created while processing annotation queue.

    sessionId?: string | null

    The session ID associated with the score

    source: ScoreSource
    stringValue: string

    The text content of the score (1-500 characters)

    timestamp: string
    traceId?: string | null

    The trace ID associated with the score

    updatedAt: string