You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- syntax = 'proto3';
-
- service InferenceService {
- rpc inference(DataRequest) returns (DataResponse) {}
- }
-
- message DataRequest{
- repeated Image images = 1;
- }
-
- message Image {
- string image_file = 1;
- string image_name = 2;
- }
-
- message DataResponse{
- string json_result = 1;
- }
|