Skip to content

Commit

Permalink
GRPC clients version 10.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
clarifai-prod committed Apr 22, 2024
1 parent d31f35b commit 587b0d6
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 2 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
10.3.1
10.3.2
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "clarifai-nodejs-grpc",
"version": "10.3.1",
"version": "10.3.2",
"description": "The official Clarifai Node.js gRPC client",
"main": "src/index.js",
"repository": "https://github.com/Clarifai/clarifai-javascript-grpc",
Expand Down
4 changes: 4 additions & 0 deletions proto/clarifai/api/service.proto
Original file line number Diff line number Diff line change
Expand Up @@ -769,6 +769,10 @@ service V2 {

// Stream of requests and stream of responses
rpc StreamModelOutputs (stream PostModelOutputsRequest) returns (stream MultiOutputResponse) {
option (google.api.http) = {
post: "/v2/models/outputs/stream"
body: "*"
};
option (clarifai.auth.util.cl_auth_type) = KeyAuth;
option (clarifai.auth.util.cl_depending_scopes) = Apps_Get;
option (clarifai.auth.util.cl_depending_scopes) = Concepts_Get;
Expand Down
4 changes: 4 additions & 0 deletions proto/clarifai/api/service_processed.proto
Original file line number Diff line number Diff line change
Expand Up @@ -769,6 +769,10 @@ service V2 {

// Stream of requests and stream of responses
rpc StreamModelOutputs (stream PostModelOutputsRequest) returns (stream MultiOutputResponse) {
option (google.api.http) = {
post: "/v2/models/outputs/stream"
body: "*"
};
option (clarifai.auth.util.cl_auth_type) = KeyAuth;
option (clarifai.auth.util.cl_depending_scopes) = Apps_Get;
option (clarifai.auth.util.cl_depending_scopes) = Concepts_Get;
Expand Down

0 comments on commit 587b0d6

Please sign in to comment.