Skip to content

Commit

Permalink
GRPC Protocol Update for Inference Parameter Types (#8)
Browse files Browse the repository at this point in the history
update to allow double and uint64 as inference parameter types

Signed-off-by: nnshah1 <[email protected]>
  • Loading branch information
nnshah1 committed Nov 5, 2023
1 parent ff93473 commit eeb043e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions specification/protocol/open_inference_grpc.proto
Original file line number Diff line number Diff line change
Expand Up @@ -277,6 +277,12 @@ message InferParameter

// A string parameter value.
string string_param = 3;

// A double parameter value.
double double_param = 4;

// A uint64 parameter value.
uint64 uint64_param = 5;
}
}

Expand Down

0 comments on commit eeb043e

Please sign in to comment.