Langfuse JS/TS SDKs
    Preparing search index...

    Interface CreateDatasetRunItemRequest

    This file was auto-generated by Fern from our API Definition.

    interface CreateDatasetRunItemRequest {
        datasetItemId: string;
        datasetVersion?: string;
        metadata?: unknown;
        observationId?: string;
        runDescription?: string;
        runName: string;
        traceId?: string;
    }
    Index

    Properties

    datasetItemId: string
    datasetVersion?: string

    ISO 8601 timestamp (RFC 3339, Section 5.6) in UTC (e.g., "2026-01-21T14:35:42Z"). Specifies the dataset version to use for this experiment run. If provided, the experiment will use dataset items as they existed at or before this timestamp. If not provided, uses the latest version of dataset items.

    metadata?: unknown

    Metadata of the dataset run, updates run if run already exists

    observationId?: string
    runDescription?: string

    Description of the run. If run exists, description will be updated.

    runName: string
    traceId?: string

    traceId should always be provided. For compatibility with older SDK versions it can also be inferred from the provided observationId.