Skip to content

Commit 9107e14

Browse files
authored
Update src/content/docs/vectorize/best-practices/query-vectors.mdx
1 parent 835f60a commit 9107e14

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/content/docs/vectorize/best-practices/query-vectors.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ Refer to [Vectorize API](/vectorize/reference/client-api/) for additional exampl
7272
When querying vectors, you can specify to either use high-precision scoring, thereby increasing the precision of the query matches scores as well as the accuracy of the query results, or use approximate scoring for faster response times.
7373
Using approximate scoring, returned scores will be an approximation of the real distance/similarity between your query and the returned vectors; this is the query's default as it's a nice trade-off between accuracy and latency.
7474

75-
High-precision scoring is enabled by setting `returnValues: true` on your query; this tells Vectorize to use the original vector values for your matches, which enables the computation of exact scores of matches, increasing the accuracy of the results. Because it processes more data though, high-precision scoring will increase the latency of queries.
75+
High-precision scoring is enabled by setting `returnValues: true` on your query. This setting tells Vectorize to use the original vector values for your matches, allowing the computation of exact match scores and increasing the accuracy of the results. Because it processes more data, though, high-precision scoring will increase the latency of queries.
7676

7777
## Workers AI
7878

0 commit comments

Comments
 (0)