Skip to content

Commit 9f19b4a

Browse files
committed
phrasing
1 parent 1d19cfc commit 9f19b4a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ Here's a modified example so that you can see the basic structure of a response
226226

227227
A query request can include a vector query and a [filter expression](search-filters.md). Filters apply to text and numeric fields, and are useful for including or excluding search documents based on filter criteria. Although a vector field isn't filterable itself, you can set up a filterable text or numeric field.
228228

229-
In contrast with full text search, a filter in a pure vector query is effectively processed as a post-query operation. The set of k-NN is retrieved, and then combined with the set of filtered results. As such, the value of `"k"` determines the surface over which the filter is applied. For `"k": 10`, the filter is applied to 10 most similar documents. For `"k": 100`, the filter iterates over a larger body of documents.
229+
In contrast with full text search, a filter in a pure vector query is effectively processed as a post-query operation. The set of k-NN is retrieved, and then combined with the set of filtered results. As such, the value of `"k"` predetermines the surface over which the filter is applied. For `"k": 10`, the filter is applied to 10 most similar documents. For `"k": 100`, the filter iterates over 100 documents (assuming the index contains 100 documents that are sufficiently similar to the query).
230230

231231
```http
232232
POST https://{{search-service-name}}.search.windows.net/indexes/{{index-name}}/docs/search?api-version=2023-07-01-Preview

0 commit comments

Comments
 (0)