Skip to content

Commit

Permalink
update docs with l1
Browse files Browse the repository at this point in the history
  • Loading branch information
olirice committed Oct 9, 2024
1 parent 4608aef commit 03ee252
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions docs/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ Available options for distance `measure` are:

- `vecs.IndexMeasure.cosine_distance`
- `vecs.IndexMeasure.l2_distance`
- `vecs.IndexMeasure.l1_distance`
- `vecs.IndexMeasure.max_inner_product`

which correspond to different methods for comparing query vectors to the vectors in the database.
Expand Down
1 change: 1 addition & 0 deletions docs/concepts_indexes.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ Available options for distance `measure` are:

- `vecs.IndexMeasure.cosine_distance`
- `vecs.IndexMeasure.l2_distance`
- `vecs.IndexMeasure.l1_distance`
- `vecs.IndexMeasure.max_inner_product`

which correspond to different methods for comparing query vectors to the vectors in the database.
Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Vecs is a Python client library for managing and querying vector stores in Postg
## Overview

- Vector Management: create collections to persist and update vectors in a PostgreSQL database.
- Querying: Query vectors efficiently using measures such as cosine distance, l2 distance, or max inner product.
- Querying: Query vectors efficiently using measures such as cosine distance, l2 distance, l1 distance, or max inner product.
- Metadata: Each vector can have associated metadata, which can also be used as filters during queries.
- Hybrid Data: vecs creates its own schema and can coexist with your existing relational data

Expand Down

0 comments on commit 03ee252

Please sign in to comment.