You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Update python doc for MultiVector data type (#1713)
### What problem does this PR solve?
Update python doc for MultiVector data type
Issue link:#1679
### Type of change
- [x] Documentation Update
---------
Co-authored-by: writinwaters <93570324+writinwaters@users.noreply.github.com>
Creates a dense vector search expression to identify the top n closest rows to the given dense vector. Suitable for working with dense vectors (dense embeddings).
1497
+
Creates a dense vector search expression to identify the top n closest rows to the given dense vector. Suitable for working with dense vectors (dense embeddings) or multi-vectors (multiple dense embeddings in one row).
1473
1498
1474
1499
:::tip NOTE
1475
1500
To display your query results, you must chain this method with `output(columns)`, which specifies the columns to output, and a method such as `to_pl()`, `to_df()`, or `to_arrow()` to format the query results.
@@ -1479,7 +1504,7 @@ To display your query results, you must chain this method with `output(columns)`
1479
1504
1480
1505
#### vector_column_name: `str`, *Required*
1481
1506
1482
-
A non-empty string indicating the name of the vector column to search on.
1507
+
A non-empty string indicating the name of the vector column or multi-vector column to search on.
0 commit comments