Pinecone TypeScript SDK - v8.1.0
    Preparing search index...

    Type Alias RecordSparseValues

    A sparse representation of vector values

    type RecordSparseValues = {
        indices: number[];
        values: number[];
    }
    Index
    indices: number[]

    A list of indices where non-zero values are present in a vector.

    values: number[]

    The values that correspond to the positions in the indices array.