prorm API Reference
    Preparing search index...

    Interface QdrantSearchOptions

    Args for search().

    interface QdrantSearchOptions {
        consistency?: number | "all" | "majority" | "quorum";
        timeout?: number;
        filter?: {};
        limit?: number;
        offset?: number;
        withPayload?: boolean | string[] | {} | {};
        withVector?: boolean | string[];
        scoreThreshold?: number;
        vectorName?: string;
    }

    Hierarchy (View Summary)

    Index
    consistency?: number | "all" | "majority" | "quorum"

    Read-consistency requirement.

    timeout?: number

    Per-request timeout override, in seconds.

    filter?: {}

    Restrict results to points matching this filter.

    limit?: number

    Max number of results to return. Default: 10.

    offset?: number

    Skip this many results (for pagination).

    withPayload?: boolean | string[] | {} | {}

    Which payload fields to attach. Default: false (none).

    withVector?: boolean | string[]

    Which vector(s) to attach. Default: false.

    scoreThreshold?: number

    Drop results scoring worse than this threshold.

    vectorName?: string

    Named vector to search against, for multi-vector collections.