From d3f6445e146c87f91e4c13f6a14cce4240b77b86 Mon Sep 17 00:00:00 2001 From: Ray Offiah Date: Sat, 18 Jan 2025 10:58:22 +0000 Subject: [PATCH] Fix grammar in the pre-filtering section Clarify pre-filtering in vector search documentation. Updated the pre-filtering section to explicitly state its support in the Search Service and describe how it optimizes searches. Refactor pre-filtering description in vector search guide Simplified and clarified the explanation of pre-filtering benefits. --- antora.yml | 2 +- .../vector-search/pages/pre-filtering-vector-search.adoc | 9 +++------ 2 files changed, 4 insertions(+), 7 deletions(-) diff --git a/antora.yml b/antora.yml index 34abfa58..023634de 100644 --- a/antora.yml +++ b/antora.yml @@ -9,6 +9,6 @@ ext: HEAD: sources: docs-server: - branches: release/7.6 + branches: [release/7.6] override: startPage: server:introduction:intro.adoc diff --git a/modules/vector-search/pages/pre-filtering-vector-search.adoc b/modules/vector-search/pages/pre-filtering-vector-search.adoc index 0d133e91..f7d74f85 100644 --- a/modules/vector-search/pages/pre-filtering-vector-search.adoc +++ b/modules/vector-search/pages/pre-filtering-vector-search.adoc @@ -8,13 +8,10 @@ == About Pre-filtering -Using pre-filtering as part of your vector search offers two key advantages: +The Search Service supports pre-filtering on Vector Search queries. +Pre-filtering allows you to execute vector searches over a subset of the vector index, +via the means of a filter request that qualifies the subset. -. *Enhanced precision and relevance:* -Narrow your search results based on specific criteria, such as organization, date/time ranges, or geospatial locations. - -. *Performance optimization:* -Reduce the search space before executing queries to improve query execution time and reduce computational overhead. == Prerequisites