actrone-memory
    Preparing search index...

    Interface QdrantFilter

    The payload filter this store sends: every condition must match a value, or any of a list.

    interface QdrantFilter {
        must: { key: string; match: { value: string } | { any: string[] } }[];
    }
    Index
    must: { key: string; match: { value: string } | { any: string[] } }[]