Skip to content

Commit eeb043e

Browse files
authored
GRPC Protocol Update for Inference Parameter Types (kserve#8)
update to allow double and uint64 as inference parameter types Signed-off-by: nnshah1 <[email protected]>
1 parent ff93473 commit eeb043e

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

specification/protocol/open_inference_grpc.proto

+6
Original file line numberDiff line numberDiff line change
@@ -277,6 +277,12 @@ message InferParameter
277277

278278
// A string parameter value.
279279
string string_param = 3;
280+
281+
// A double parameter value.
282+
double double_param = 4;
283+
284+
// A uint64 parameter value.
285+
uint64 uint64_param = 5;
280286
}
281287
}
282288

0 commit comments

Comments
 (0)