clarifai-grpc 12.0.11__py3-none-any.whl → 12.1.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- clarifai_grpc/__init__.py +1 -1
- clarifai_grpc/grpc/api/service_pb2.py +137 -133
- clarifai_grpc/grpc/api/service_pb2.pyi +27 -0
- clarifai_grpc/grpc/api/service_pb2_grpc.py +34 -0
- {clarifai_grpc-12.0.11.dist-info → clarifai_grpc-12.1.0.dist-info}/METADATA +1 -1
- {clarifai_grpc-12.0.11.dist-info → clarifai_grpc-12.1.0.dist-info}/RECORD +9 -9
- {clarifai_grpc-12.0.11.dist-info → clarifai_grpc-12.1.0.dist-info}/WHEEL +0 -0
- {clarifai_grpc-12.0.11.dist-info → clarifai_grpc-12.1.0.dist-info}/licenses/LICENSE +0 -0
- {clarifai_grpc-12.0.11.dist-info → clarifai_grpc-12.1.0.dist-info}/top_level.txt +0 -0
|
@@ -16603,6 +16603,33 @@ class PostModelMigrationRequest(google.protobuf.message.Message):
|
|
|
16603
16603
|
|
|
16604
16604
|
global___PostModelMigrationRequest = PostModelMigrationRequest
|
|
16605
16605
|
|
|
16606
|
+
@typing_extensions.final
|
|
16607
|
+
class DeleteModelMigrationRequest(google.protobuf.message.Message):
|
|
16608
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
16609
|
+
|
|
16610
|
+
USER_APP_ID_FIELD_NUMBER: builtins.int
|
|
16611
|
+
MODEL_ID_FIELD_NUMBER: builtins.int
|
|
16612
|
+
@property
|
|
16613
|
+
def user_app_id(self) -> proto.clarifai.api.resources_pb2.UserAppIDSet: ...
|
|
16614
|
+
model_id: builtins.str
|
|
16615
|
+
def __init__(
|
|
16616
|
+
self,
|
|
16617
|
+
*,
|
|
16618
|
+
user_app_id: proto.clarifai.api.resources_pb2.UserAppIDSet | None = ...,
|
|
16619
|
+
model_id: builtins.str = ...,
|
|
16620
|
+
) -> None: ...
|
|
16621
|
+
def HasField(
|
|
16622
|
+
self, field_name: typing_extensions.Literal["user_app_id", b"user_app_id"]
|
|
16623
|
+
) -> builtins.bool: ...
|
|
16624
|
+
def ClearField(
|
|
16625
|
+
self,
|
|
16626
|
+
field_name: typing_extensions.Literal[
|
|
16627
|
+
"model_id", b"model_id", "user_app_id", b"user_app_id"
|
|
16628
|
+
],
|
|
16629
|
+
) -> None: ...
|
|
16630
|
+
|
|
16631
|
+
global___DeleteModelMigrationRequest = DeleteModelMigrationRequest
|
|
16632
|
+
|
|
16606
16633
|
@typing_extensions.final
|
|
16607
16634
|
class ListWorkflowVersionEvaluationDataRequest(google.protobuf.message.Message):
|
|
16608
16635
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
@@ -499,6 +499,11 @@ class V2Stub(object):
|
|
|
499
499
|
request_serializer=proto_dot_clarifai_dot_api_dot_service__pb2.PostModelMigrationRequest.SerializeToString,
|
|
500
500
|
response_deserializer=wrap_response_deserializer(proto_dot_clarifai_dot_api_dot_service__pb2.SingleModelResponse),
|
|
501
501
|
)
|
|
502
|
+
self.DeleteModelMigration = channel.unary_unary(
|
|
503
|
+
'/clarifai.api.V2/DeleteModelMigration',
|
|
504
|
+
request_serializer=proto_dot_clarifai_dot_api_dot_service__pb2.DeleteModelMigrationRequest.SerializeToString,
|
|
505
|
+
response_deserializer=wrap_response_deserializer(proto_dot_clarifai_dot_api_dot_service__pb2.SingleModelResponse),
|
|
506
|
+
)
|
|
502
507
|
self.PutModelVersionExports = channel.unary_unary(
|
|
503
508
|
'/clarifai.api.V2/PutModelVersionExports',
|
|
504
509
|
request_serializer=proto_dot_clarifai_dot_api_dot_service__pb2.PutModelVersionExportsRequest.SerializeToString,
|
|
@@ -2226,6 +2231,13 @@ class V2Servicer(object):
|
|
|
2226
2231
|
context.set_details('Method not implemented!')
|
|
2227
2232
|
raise NotImplementedError('Method not implemented!')
|
|
2228
2233
|
|
|
2234
|
+
def DeleteModelMigration(self, request, context):
|
|
2235
|
+
"""Reverts a model migration from Docker format back to Triton format.
|
|
2236
|
+
"""
|
|
2237
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
2238
|
+
context.set_details('Method not implemented!')
|
|
2239
|
+
raise NotImplementedError('Method not implemented!')
|
|
2240
|
+
|
|
2229
2241
|
def PutModelVersionExports(self, request, context):
|
|
2230
2242
|
"""Export a model
|
|
2231
2243
|
|
|
@@ -4117,6 +4129,11 @@ def add_V2Servicer_to_server(servicer, server):
|
|
|
4117
4129
|
request_deserializer=proto_dot_clarifai_dot_api_dot_service__pb2.PostModelMigrationRequest.FromString,
|
|
4118
4130
|
response_serializer=proto_dot_clarifai_dot_api_dot_service__pb2.SingleModelResponse.SerializeToString,
|
|
4119
4131
|
),
|
|
4132
|
+
'DeleteModelMigration': grpc.unary_unary_rpc_method_handler(
|
|
4133
|
+
servicer.DeleteModelMigration,
|
|
4134
|
+
request_deserializer=proto_dot_clarifai_dot_api_dot_service__pb2.DeleteModelMigrationRequest.FromString,
|
|
4135
|
+
response_serializer=proto_dot_clarifai_dot_api_dot_service__pb2.SingleModelResponse.SerializeToString,
|
|
4136
|
+
),
|
|
4120
4137
|
'PutModelVersionExports': grpc.unary_unary_rpc_method_handler(
|
|
4121
4138
|
servicer.PutModelVersionExports,
|
|
4122
4139
|
request_deserializer=proto_dot_clarifai_dot_api_dot_service__pb2.PutModelVersionExportsRequest.FromString,
|
|
@@ -6716,6 +6733,23 @@ class V2(object):
|
|
|
6716
6733
|
options, channel_credentials,
|
|
6717
6734
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
|
6718
6735
|
|
|
6736
|
+
@staticmethod
|
|
6737
|
+
def DeleteModelMigration(request,
|
|
6738
|
+
target,
|
|
6739
|
+
options=(),
|
|
6740
|
+
channel_credentials=None,
|
|
6741
|
+
call_credentials=None,
|
|
6742
|
+
insecure=False,
|
|
6743
|
+
compression=None,
|
|
6744
|
+
wait_for_ready=None,
|
|
6745
|
+
timeout=None,
|
|
6746
|
+
metadata=None):
|
|
6747
|
+
return grpc.experimental.unary_unary(request, target, '/clarifai.api.V2/DeleteModelMigration',
|
|
6748
|
+
proto_dot_clarifai_dot_api_dot_service__pb2.DeleteModelMigrationRequest.SerializeToString,
|
|
6749
|
+
proto_dot_clarifai_dot_api_dot_service__pb2.SingleModelResponse.FromString,
|
|
6750
|
+
options, channel_credentials,
|
|
6751
|
+
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
|
6752
|
+
|
|
6719
6753
|
@staticmethod
|
|
6720
6754
|
def PutModelVersionExports(request,
|
|
6721
6755
|
target,
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
clarifai_grpc/__init__.py,sha256=
|
|
1
|
+
clarifai_grpc/__init__.py,sha256=Z9zFxp2hkRSsbKg_rQO8W1dfFDJVsgGg-bYLEKVEpPM,1440
|
|
2
2
|
clarifai_grpc/channel/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
3
|
clarifai_grpc/channel/clarifai_channel.py,sha256=fGqFlagWzKhRny-RAxbKlXT9_k9HohPs9yCKmkkQZ5c,5770
|
|
4
4
|
clarifai_grpc/channel/errors.py,sha256=VUoLZLLcIfI2nOGlz1dzbOKQJhGodOO98pSSjlsRD6s,183
|
|
@@ -13,9 +13,9 @@ clarifai_grpc/grpc/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3
|
|
|
13
13
|
clarifai_grpc/grpc/api/resources_pb2.py,sha256=Wi8CIy9rMkT9mKI4c1RTxscVYm6mWKdMHVHMh739SX0,160276
|
|
14
14
|
clarifai_grpc/grpc/api/resources_pb2.pyi,sha256=sQ5dfud2ebf6JwUAX3OLWez_L3Uv8VXmR3A7GpPOFrU,666124
|
|
15
15
|
clarifai_grpc/grpc/api/resources_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
16
|
-
clarifai_grpc/grpc/api/service_pb2.py,sha256=
|
|
17
|
-
clarifai_grpc/grpc/api/service_pb2.pyi,sha256=
|
|
18
|
-
clarifai_grpc/grpc/api/service_pb2_grpc.py,sha256
|
|
16
|
+
clarifai_grpc/grpc/api/service_pb2.py,sha256=lu7i4C7IDjWM9Z-2MRGq73Kuh1z2CGo6RhRZOSwS4iU,362032
|
|
17
|
+
clarifai_grpc/grpc/api/service_pb2.pyi,sha256=v2CZopxCfweRbEALH8UE-MABPZS0BObPDGeeu5WBjHI,671970
|
|
18
|
+
clarifai_grpc/grpc/api/service_pb2_grpc.py,sha256=eKqCoerIaq7brgdoD8ahiZ3lQp-JqUa8wEbpJ6O6gHA,540437
|
|
19
19
|
clarifai_grpc/grpc/api/status/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
20
20
|
clarifai_grpc/grpc/api/status/status_code_pb2.py,sha256=2bQwv79kcH4K3sd40JjVVMnyyGEnjEj0C6nYgXoNq5Q,26668
|
|
21
21
|
clarifai_grpc/grpc/api/status/status_code_pb2.pyi,sha256=aJDZ9552F2u8Cs2hzNLToaeoU9IzYShLEnnNpmJch6o,67244
|
|
@@ -46,8 +46,8 @@ clarifai_grpc/grpc/auth/util/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NM
|
|
|
46
46
|
clarifai_grpc/grpc/auth/util/extension_pb2.py,sha256=Fnx7qS6aB9HsjxzALVRrGZm_1RAvUnWN-ZG3P6_AurA,2612
|
|
47
47
|
clarifai_grpc/grpc/auth/util/extension_pb2.pyi,sha256=k4sOr3PHePx3u7zP2ZghKMLc_xF2O4E-vKYsQO1ZdSw,3288
|
|
48
48
|
clarifai_grpc/grpc/auth/util/extension_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
49
|
-
clarifai_grpc-12.0.
|
|
50
|
-
clarifai_grpc-12.0.
|
|
51
|
-
clarifai_grpc-12.0.
|
|
52
|
-
clarifai_grpc-12.0.
|
|
53
|
-
clarifai_grpc-12.0.
|
|
49
|
+
clarifai_grpc-12.1.0.dist-info/licenses/LICENSE,sha256=GuQZ4iPZUwh44duTbVr7ZzYp_SaJDLR9MvzU7YqlZXM,555
|
|
50
|
+
clarifai_grpc-12.1.0.dist-info/METADATA,sha256=Qi_L1CiO4IZ849GnYKS9fARglWAfvoxse1Tmq3BBizg,4427
|
|
51
|
+
clarifai_grpc-12.1.0.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
52
|
+
clarifai_grpc-12.1.0.dist-info/top_level.txt,sha256=azOUiixWkDpdb3gn_YNgz8sbAfhNvZuC3_9qI7hNQac,14
|
|
53
|
+
clarifai_grpc-12.1.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|