HoneyHive TypeScript API SDK
    Preparing search index...

    Type Alias UpdateRunRequest

    type UpdateRunRequest = {
        configuration?: { [key: string]: unknown };
        datapoint_ids?: string[];
        description?: string;
        evaluators?: unknown[];
        event_ids?: string[];
        metadata?: { [key: string]: unknown };
        name?: string;
        passing_ranges?: { [key: string]: { max?: number; min?: number } };
        results?: { [key: string]: unknown };
        session_ids?: string[];
        status?: "pending" | "completed" | "failed" | "cancelled" | "running";
    }
    Index

    Properties

    configuration?: { [key: string]: unknown }
    datapoint_ids?: string[]
    description?: string
    evaluators?: unknown[]
    event_ids?: string[]
    metadata?: { [key: string]: unknown }
    name?: string
    passing_ranges?: { [key: string]: { max?: number; min?: number } }
    results?: { [key: string]: unknown }
    session_ids?: string[]
    status?: "pending" | "completed" | "failed" | "cancelled" | "running"