KnownVectorFilterMode enum
Determines whether or not filters are applied before or after the vector search is performed.
Fields
| PostFilter | The filter will be applied after the candidate set of vector results is returned. Depending on the filter selectivity, this can result in fewer results than requested by the parameter 'k'. |
| PreFilter | The filter will be applied before the search query. |
| StrictPostFilter | The filter will be applied after the global top-k candidate set of vector results is returned. This will result in fewer results than requested by the parameter 'k'. |