diff --git a/API_Reference/pymilvus/v2.5.x/ORM/Collection/search.md b/API_Reference/pymilvus/v2.5.x/ORM/Collection/search.md index 114f22ad9e..162351f8a3 100644 --- a/API_Reference/pymilvus/v2.5.x/ORM/Collection/search.md +++ b/API_Reference/pymilvus/v2.5.x/ORM/Collection/search.md @@ -152,7 +152,6 @@ A **SearchResult** object that contains a list of **Hits** objects. │ ├── id │ ├── distance │ ├── score - │ ├── vector │ └── get() ``` @@ -182,10 +181,6 @@ A **SearchResult** object that contains a list of **Hits** objects. An alias to **distance**. - - **vector** (*list[float]*) - - The vector field of a hit entity. - - **get(*field_name: str*)** A function to get the value of the specified field in a hit entity. @@ -268,10 +263,10 @@ for hits in res: # Get distance hit.distance # hit.score - # Get vector + # Get vector in output field by vector field name as attribite hit.vector - # Get output field + # Get vector by name in output field hit.get("vector") ```