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 Data data_list = 1;
- }
-
- message Data {
- string data_file = 1;
- string data_name = 2;
- }
-
- message DataResponse{
- string json_result = 1;
- }
|