Skip to content

Commit

Permalink
feat(proto): add serialized_bytes to pb.Part (#3022)
Browse files Browse the repository at this point in the history
  • Loading branch information
aarnphm committed Sep 20, 2022
1 parent a69764e commit 640a6ff
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion bentoml/grpc/v1alpha1/service.proto
Expand Up @@ -121,7 +121,7 @@ message Part {

// Series portrays a series of values. This can be used for
// representing Series types in tabular data.
Series series =5;
Series series = 5;

// File represents for any arbitrary file type. This can be
// plaintext, image, video, audio, etc.
Expand All @@ -133,6 +133,9 @@ message Part {
// JSON is represented by using google.protobuf.Value.
// see https://github.com/protocolbuffers/protobuf/blob/main/src/google/protobuf/struct.proto
google.protobuf.Value json = 8;

// serialized_bytes is for data serialized in BentoML's internal serialization format.
bytes serialized_bytes = 4;
}

// Tensor is similiar to ndarray but with a name
Expand Down

0 comments on commit 640a6ff

Please sign in to comment.