Zvec Node.js API Reference
    Preparing search index...

    Interface ZVecQueryParams

    Base interface for query-time parameters, requiring the type of index.

    interface ZVecQueryParams {
        radius?: number;
        isLinear?: boolean;
        isUsingRefiner?: boolean;
    }

    Hierarchy (View Summary)

    Index

    Properties

    radius?: number

    Search radius for range queries. Used in combination with top-k to filter results.

    0.0 (disabled)
    
    isLinear?: boolean

    If True, forces brute-force linear search instead of using the index. Useful for debugging or small datasets.

    false
    
    isUsingRefiner?: boolean

    Whether to use refiner for the query.

    false