@@ -18,7 +18,7 @@ package inference;
1818// Inference Server GRPC endpoints.
1919service GRPCInferenceService
2020{
21- // The ServerLive API indicates if the inference server is able to receive
21+ // The ServerLive API indicates if the inference server is able to receive
2222 // and respond to metadata and inference requests.
2323 rpc ServerLive (ServerLiveRequest ) returns (ServerLiveResponse ) {}
2424
@@ -28,18 +28,18 @@ service GRPCInferenceService
2828 // The ModelReady API indicates if a specific model is ready for inferencing.
2929 rpc ModelReady (ModelReadyRequest ) returns (ModelReadyResponse ) {}
3030
31- // The ServerMetadata API provides information about the server. Errors are
32- // indicated by the google.rpc.Status returned for the request. The OK code
31+ // The ServerMetadata API provides information about the server. Errors are
32+ // indicated by the google.rpc.Status returned for the request. The OK code
3333 // indicates success and other codes indicate failure.
3434 rpc ServerMetadata (ServerMetadataRequest ) returns (ServerMetadataResponse ) {}
3535
36- // The per-model metadata API provides information about a model. Errors are
37- // indicated by the google.rpc.Status returned for the request. The OK code
36+ // The per-model metadata API provides information about a model. Errors are
37+ // indicated by the google.rpc.Status returned for the request. The OK code
3838 // indicates success and other codes indicate failure.
3939 rpc ModelMetadata (ModelMetadataRequest ) returns (ModelMetadataResponse ) {}
4040
4141 // The ModelInfer API performs inference using the specified model. Errors are
42- // indicated by the google.rpc.Status returned for the request. The OK code
42+ // indicated by the google.rpc.Status returned for the request. The OK code
4343 // indicates success and other codes indicate failure.
4444 rpc ModelInfer (ModelInferRequest ) returns (ModelInferResponse ) {}
4545}
@@ -259,9 +259,9 @@ message ModelInferResponse
259259 repeated bytes raw_output_contents = 6 ;
260260}
261261
262- // An inference parameter value. The Parameters message describes a
262+ // An inference parameter value. The Parameters message describes a
263263// “name”/”value” pair, where the “name” is the name of the parameter
264- // and the “value” is a boolean, integer, or string corresponding to
264+ // and the “value” is a boolean, integer, or string corresponding to
265265// the parameter.
266266message InferParameter
267267{
0 commit comments