Skip to content

Commit

Permalink
fix COO naming
Browse files Browse the repository at this point in the history
  • Loading branch information
agourlay committed Sep 4, 2024
1 parent 9b8778a commit f9b6874
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/grpc/docs.md
Original file line number Diff line number Diff line change
Expand Up @@ -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) |

Check failure on line 3824 in docs/grpc/docs.md

View workflow job for this annotation

GitHub Actions / Check for spelling errors

COO ==> COUP
| 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 |
Expand Down
2 changes: 1 addition & 1 deletion docs/redoc/master/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion lib/api/src/grpc/proto/points.proto
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Check failure on line 637 in lib/api/src/grpc/proto/points.proto

View workflow job for this annotation

GitHub Actions / Check for spelling errors

COO ==> COUP
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
Expand Down
2 changes: 1 addition & 1 deletion lib/api/src/grpc/qdrant.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Check failure on line 5188 in lib/api/src/grpc/qdrant.rs

View workflow job for this annotation

GitHub Actions / Check for spelling errors

COO ==> COUP
#[prost(uint64, repeated, tag = "1")]
pub offsets_row: ::prost::alloc::vec::Vec<u64>,
/// Column coordinates ids of the matrix
Expand Down
2 changes: 1 addition & 1 deletion lib/api/src/rest/schema.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Check failure on line 706 in lib/api/src/rest/schema.rs

View workflow job for this annotation

GitHub Actions / Check for spelling errors

COO ==> COUP
pub offsets_row: Vec<u64>,
/// Column coordinates ids of the matrix
pub offsets_col: Vec<u64>,
Expand Down

0 comments on commit f9b6874

Please sign in to comment.