Skip to content

Commit

Permalink
GRPC clients version 10.10.2
Browse files Browse the repository at this point in the history
  • Loading branch information
clarifai-prod committed Nov 27, 2024
1 parent 771b33b commit 1db3454
Show file tree
Hide file tree
Showing 6 changed files with 86 additions and 82 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
10.10.1
10.10.2
2 changes: 1 addition & 1 deletion clarifai_grpc/channel/http_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

from clarifai_grpc.channel.errors import ApiError

CLIENT_VERSION = "10.10.1"
CLIENT_VERSION = "10.10.2"
OS_VER = os.sys.platform
PYTHON_VERSION = ".".join(
map(
Expand Down
118 changes: 59 additions & 59 deletions clarifai_grpc/grpc/api/resources_pb2.py

Large diffs are not rendered by default.

6 changes: 5 additions & 1 deletion clarifai_grpc/grpc/api/resources_pb2.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -10117,21 +10117,25 @@ class ProcessingInfo(google.protobuf.message.Message):

RUNNER_METHOD_TYPE_FIELD_NUMBER: builtins.int
STATUS_FIELD_NUMBER: builtins.int
PROCESSING_ID_FIELD_NUMBER: builtins.int
runner_method_type: global___RunnerMethodType.ValueType
"""The type of method witin the runner to call."""
@property
def status(self) -> proto.clarifai.api.status.status_pb2.Status:
"""A status of the processing. We use this for signalling end of a request stream, a runner
item's processing should be cancelled, etc.
"""
processing_id: builtins.str
"""Internal field to track processing. Runners will not have access to this."""
def __init__(
self,
*,
runner_method_type: global___RunnerMethodType.ValueType = ...,
status: proto.clarifai.api.status.status_pb2.Status | None = ...,
processing_id: builtins.str = ...,
) -> None: ...
def HasField(self, field_name: typing_extensions.Literal["status", b"status"]) -> builtins.bool: ...
def ClearField(self, field_name: typing_extensions.Literal["runner_method_type", b"runner_method_type", "status", b"status"]) -> None: ...
def ClearField(self, field_name: typing_extensions.Literal["processing_id", b"processing_id", "runner_method_type", b"runner_method_type", "status", b"status"]) -> None: ...

global___ProcessingInfo = ProcessingInfo

Expand Down
38 changes: 19 additions & 19 deletions clarifai_grpc/grpc/api/service_pb2.py

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setuptools.setup(
name="clarifai-grpc",
version="10.10.1",
version="10.10.2",
author="Clarifai",
author_email="[email protected]",
description="Clarifai gRPC API Client",
Expand Down

0 comments on commit 1db3454

Please sign in to comment.