Skip to content

Commit

Permalink
Comments were added to the proto file.
Browse files Browse the repository at this point in the history
  • Loading branch information
andrii0lomakin committed Dec 6, 2023
1 parent 8b56467 commit 3ae9eb1
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions vectoriadb-interface/src/main/proto/IndexManager.proto
Original file line number Diff line number Diff line change
Expand Up @@ -98,13 +98,20 @@ message FindNearestNeighboursResponse {
repeated VectorId ids = 1;
}

/*
* Id if the vector. Length of contained byte string should be exactly 16 bytes.
*/
message VectorId {
bytes id = 1;
}

message UploadVectorsRequest {
string index_name = 1;
repeated float vector_components = 2;

/*
* Each vector has to have length of 16 bytes
*/
VectorId id = 3;
}

Expand Down

0 comments on commit 3ae9eb1

Please sign in to comment.