Skip to content

Commit b78f651

Browse files
committed
indent comment
1 parent 35987a6 commit b78f651

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/search/includes/quickstarts/search-get-started-vector-python.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -399,7 +399,7 @@ The first example demonstrates a basic scenario where you want to find document
399399

400400
The vector query string is `quintessential lodging near running trails, eateries, retail`, which is vectorized into 1,536 embeddings for this query.
401401

402-
<!-- retain numeric references to 5 and 7. Too hard to spot these values if they are written out. -->
402+
<!-- retain numeric references to 5 and 7. Too hard to spot these values if they are written out. -->
403403
The response for the vector equivalent of `quintessential lodging near running trails, eateries, retail` consists of 7 results but the code specifies `top=5` so only the first 5 results are returned. Furthermore, only the fields specified by the `select` are returned.
404404

405405
`search_client.search()` returns a dict-like object. Each result provides a search score, which can be accessed using `score = result.get("@search.score", "N/A")`. While not displayed in this example, in a similarity search, the response always includes `k` results ordered by the value similarity score.

0 commit comments

Comments
 (0)