package bentoml.grpc.v1alpha1

Mouse Melon logoGet desktop application:
View/edit binary Protocol Buffers messages

service BentoService

service.proto:18

a gRPC BentoServer.

message DataFrame

service.proto:190

DataFrame represents any tabular data type. We are using DataFrame as a trivial representation for tabular type. This message carries given implementation of tabular data based on given orientation. TODO: support index, records, etc.

Used in: Part, Request, Response

message File

service.proto:155

File represents for any arbitrary file type. This can be plaintext, image, video, audio, etc.

Used in: Part, Request, Response

enum File.FileType

service.proto:159

FileType represents possible file type to be handled by BentoML. Currently, we only support plaintext (Text()), image (Image()), and file (File()). TODO: support audio and video streaming file types.

Used in: File

message Multipart

service.proto:149

Multipart represents a multipart message. It comprises of a mapping from given type name to a subset of aforementioned types.

Used in: Request, Response

message NDArray

service.proto:222

NDArray represents a n-dimensional array of arbitrary type.

Used in: Part, Request, Response

enum NDArray.DType

service.proto:224

Represents data type of a given array.

Used in: NDArray

message Part

service.proto:113

Part represents possible value types for multipart message. These are the same as the types in Request message.

Used in: Multipart

message Series

service.proto:201

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

Used in: DataFrame, Part, Request, Response