diff --git a/docs/grpc/docs.md b/docs/grpc/docs.md index 3b13abbaca0..c47c6dec807 100644 --- a/docs/grpc/docs.md +++ b/docs/grpc/docs.md @@ -3821,7 +3821,7 @@ For example, if `oversampling` is 2.4 and `limit` is 100, then 240 vectors will | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| offsets_row | [uint64](#uint64) | repeated | Row coordinates of the CRS matrix | +| offsets_row | [uint64](#uint64) | repeated | Row coordinates of the matrix (COO) | | offsets_col | [uint64](#uint64) | repeated | Column coordinates ids of the matrix | | scores | [float](#float) | repeated | Scores associate with coordinates | | ids | [PointId](#qdrant-PointId) | repeated | Ids of the points in order | diff --git a/docs/redoc/master/openapi.json b/docs/redoc/master/openapi.json index 041f10f05aa..4768f76c849 100644 --- a/docs/redoc/master/openapi.json +++ b/docs/redoc/master/openapi.json @@ -13037,7 +13037,7 @@ ], "properties": { "offsets_row": { - "description": "Row coordinates of the CRS matrix", + "description": "Row coordinates of the matrix (COO)", "type": "array", "items": { "type": "integer", diff --git a/lib/api/src/grpc/proto/points.proto b/lib/api/src/grpc/proto/points.proto index c1eccaa2146..c4a69e39d61 100644 --- a/lib/api/src/grpc/proto/points.proto +++ b/lib/api/src/grpc/proto/points.proto @@ -634,7 +634,7 @@ message SearchMatrixPair { } message SearchMatrixOffsets { - repeated uint64 offsets_row = 1; // Row coordinates of the CRS matrix + repeated uint64 offsets_row = 1; // Row coordinates of the matrix (COO) repeated uint64 offsets_col = 2; // Column coordinates ids of the matrix repeated float scores = 3; // Scores associate with coordinates repeated PointId ids = 4; // Ids of the points in order diff --git a/lib/api/src/grpc/qdrant.rs b/lib/api/src/grpc/qdrant.rs index bb8abc2cc49..2376ac5d21e 100644 --- a/lib/api/src/grpc/qdrant.rs +++ b/lib/api/src/grpc/qdrant.rs @@ -5185,7 +5185,7 @@ pub struct SearchMatrixPair { #[allow(clippy::derive_partial_eq_without_eq)] #[derive(Clone, PartialEq, ::prost::Message)] pub struct SearchMatrixOffsets { - /// Row coordinates of the CRS matrix + /// Row coordinates of the matrix (COO) #[prost(uint64, repeated, tag = "1")] pub offsets_row: ::prost::alloc::vec::Vec, /// Column coordinates ids of the matrix diff --git a/lib/api/src/rest/schema.rs b/lib/api/src/rest/schema.rs index 0d42b87333e..c6c9c785285 100644 --- a/lib/api/src/rest/schema.rs +++ b/lib/api/src/rest/schema.rs @@ -703,7 +703,7 @@ pub struct SearchMatrixRequest { #[derive(Debug, Serialize, JsonSchema, PartialEq)] #[serde(rename_all = "snake_case")] pub struct SearchMatrixOffsetsResponse { - /// Row coordinates of the CRS matrix + /// Row coordinates of the matrix (COO) pub offsets_row: Vec, /// Column coordinates ids of the matrix pub offsets_col: Vec,