Skip to content

Commit 33e5253

Browse files
committed
Updated vector how-to content
1 parent ee85c2f commit 33e5253

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

articles/search/vector-search-filters.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ If you don't have source fields with text or numeric values, check for document
4545

4646
In the following example, the vector is a representation of this query string: "what Azure services support full text search". The query targets the `contentVector` field. The actual vector has 1,536 embeddings, so it's trimmed for readability.
4747

48-
The filter criteria (`category eq 'Databases'`) are applied to a filterable text field (`category`) before the search engine executes the vector query.
48+
The filter criteria are applied to a filterable text field (`category` in this example) before the search engine executes the vector query.
4949

5050
```http
5151
POST https://{{search-service-name}}.search.windows.net/indexes/{{index-name}}/docs/search?api-version=2024-07-01
@@ -83,7 +83,7 @@ api-key: {{admin-api-key}}
8383

8484
In the following example, the vector is a representation of this query string: "what Azure services support full text search". The query targets the `contentVector` field. The actual vector has 1,536 embeddings, so it's trimmed for readability.
8585

86-
The filter criteria (`category eq 'Databases'`) are applied to a filterable text field (`category`) before the search engine executes the vector query.
86+
The filter criteria are applied to a filterable text field (`category` in this example) before the search engine executes the vector query.
8787

8888
```http
8989
POST https://{{search-service-name}}.search.windows.net/indexes/{{index-name}}/docs/search?api-version=2024-05-01-preview
@@ -223,9 +223,7 @@ The following graph shows prefilter relative QPS, computed as prefilter QPS divi
223223
The vertical axis represents the relative performance of prefiltering compared to postfiltering, expressed as a ratio of QPS (queries per second). For example:
224224

225225
+ A value of `0.0` means prefiltering is 100% slower than postfiltering.
226-
227226
+ A value of `0.5` means prefiltering is 50% slower.
228-
229227
+ A value of `1.0` means prefiltering and post filtering are equivalent.
230228

231229
The horizontal axis represents the filtering rate, or the percentage of candidate documents after applying the filter. For example, a rate of `1.00%` means that the filter criteria selected one percent of the search corpus.

articles/search/vector-search-how-to-query.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Vector query how-to
2+
title: Create a Vector Query
33
titleSuffix: Azure AI Search
44
description: Learn how to build queries for vector search.
55

0 commit comments

Comments
 (0)