Pinecone TypeScript SDK - v9.0.0
    Preparing search index...

    Interface DenseVectorField

    A dense vector field configuration. Stores fixed-dimension floating-point vectors for approximate nearest-neighbor (ANN) search.

    DenseVectorField

    interface DenseVectorField {
        description?: string | null;
        dimension: number;
        metric: string;
        type: DenseVectorFieldTypeEnum;
    }
    Index
    description?: string | null

    Optional description for this field, at most 256 bytes. null in responses when none was set.

    DenseVectorField

    dimension: number

    The number of dimensions in the dense vectors stored in this field.

    DenseVectorField

    metric: string

    The distance metric used for similarity search. Possible values: cosine, dotproduct, or euclidean.

    DenseVectorField

    type: DenseVectorFieldTypeEnum

    Identifies this as a dense vector field. Must be dense_vector.

    DenseVectorField