HoneyHive TypeScript API SDK
    Preparing search index...

    Type Alias GetRunResponse

    type GetRunResponse = {
        evaluation: {
            configuration: { [key: string]: unknown };
            created_at: string;
            dataset_id?: string | null;
            description?: string | null;
            event_ids: string[];
            id: string;
            is_active: boolean;
            metadata: { [key: string]: unknown };
            metrics?: { [key: string]: number };
            name?: string | null;
            results: { [key: string]: unknown };
            run_id: string;
            scope_id: string;
            scope_type: string;
            status?: string | null;
            updated_at?: string | null;
        };
    }
    Index

    Properties

    Properties

    evaluation: {
        configuration: { [key: string]: unknown };
        created_at: string;
        dataset_id?: string | null;
        description?: string | null;
        event_ids: string[];
        id: string;
        is_active: boolean;
        metadata: { [key: string]: unknown };
        metrics?: { [key: string]: number };
        name?: string | null;
        results: { [key: string]: unknown };
        run_id: string;
        scope_id: string;
        scope_type: string;
        status?: string | null;
        updated_at?: string | null;
    }