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

    Interface PreviewFloatField

    A numeric (floating-point) field configuration. Numeric values are not declared in the index schema; include them as document metadata instead — they are indexed automatically at upsert time.

    FloatField

    interface PreviewFloatField {
        description?: string;
        filterable?: boolean;
        type: "float";
    }
    Index
    description?: string

    Optional description for this field.

    FloatField

    filterable?: boolean

    Whether this field is indexed for metadata filtering.

    FloatField

    type: "float"

    Identifies this as a float field. Must be float.

    FloatField