Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/weaviate/config-refs/schema/multi-vector.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Single vector collections are valid and continue to use the original collection
Use the collection definition to [configure the vector spaces](../../manage-collections/vector-config.mdx#define-named-vectors) for each data object.

:::info Adding named vectors to existing collections
Currently, it is only possible to [add new named vectors](../../manage-collections/vector-config.mdx#add-new-named-vectors) to collections that were initially configured to use named vectors.
Currently, it is only possible to [add new named vectors](../../manage-collections/vector-config.mdx#add-new-named-vectors) to collections that were initially configured to use named vectors.
:::

### Query a named vector
Expand All @@ -35,8 +35,6 @@ To do a vector search on a collection with named vectors, specify the vector spa

Use named vectors with [vector similarity searches](/weaviate/search/similarity#named-vectors) (`near_text`, `near_object`, `near_vector`, `near_image`) and [hybrid search](/weaviate/search/hybrid#named-vectors).

Named vector collections support hybrid search, but only for one vector at a time.

[Keyword search](/weaviate/search/bm25) syntax does not change if a collection has named vectors.

### Query multiple named vectors
Expand All @@ -54,6 +52,8 @@ In a multi-target vector search, you can specify:
- The query(ies) to compare to the target vectors
- The weights to apply to each distance (raw, or normalized) for each target vector

Multi-target vector search is available for `near_xxx` queries (from `v1.26`), as well as `hybrid` queries (from `v1.27`).

Read more in [How-to: Multi-target vector search](../../search/multi-vector.md).

## Related pages
Expand Down
2 changes: 2 additions & 0 deletions docs/weaviate/search/multi-vector.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ There are multiple ways to specify the target vectors and query vectors, such as

<!-- TODO: Move most of the description/prose to a new "vector.md" page under concepts/search. -->

Multi-target vector search is available for `near_xxx` queries (from `v1.26`), as well as `hybrid` queries (from `v1.27`).

### Available join strategies.

- **minimum** (*default*) Use the minimum of all vector distances.
Expand Down