clarifai-grpc 11.7.9__py3-none-any.whl → 11.8.1__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.
@@ -17959,3 +17959,131 @@ class MultiSecretResponse(google.protobuf.message.Message):
17959
17959
  ) -> None: ...
17960
17960
 
17961
17961
  global___MultiSecretResponse = MultiSecretResponse
17962
+
17963
+ @typing_extensions.final
17964
+ class PostMetricsQueryRequest(google.protobuf.message.Message):
17965
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor
17966
+
17967
+ USER_APP_ID_FIELD_NUMBER: builtins.int
17968
+ QUERY_FIELD_NUMBER: builtins.int
17969
+ @property
17970
+ def user_app_id(self) -> proto.clarifai.api.resources_pb2.UserAppIDSet: ...
17971
+ @property
17972
+ def query(self) -> proto.clarifai.api.resources_pb2.MetricSearchQuery: ...
17973
+ def __init__(
17974
+ self,
17975
+ *,
17976
+ user_app_id: proto.clarifai.api.resources_pb2.UserAppIDSet | None = ...,
17977
+ query: proto.clarifai.api.resources_pb2.MetricSearchQuery | None = ...,
17978
+ ) -> None: ...
17979
+ def HasField(
17980
+ self,
17981
+ field_name: typing_extensions.Literal["query", b"query", "user_app_id", b"user_app_id"],
17982
+ ) -> builtins.bool: ...
17983
+ def ClearField(
17984
+ self,
17985
+ field_name: typing_extensions.Literal["query", b"query", "user_app_id", b"user_app_id"],
17986
+ ) -> None: ...
17987
+
17988
+ global___PostMetricsQueryRequest = PostMetricsQueryRequest
17989
+
17990
+ @typing_extensions.final
17991
+ class MetricsQueryResponse(google.protobuf.message.Message):
17992
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor
17993
+
17994
+ STATUS_FIELD_NUMBER: builtins.int
17995
+ DATA_FIELD_NUMBER: builtins.int
17996
+ RESOLUTION_FIELD_NUMBER: builtins.int
17997
+ @property
17998
+ def status(self) -> proto.clarifai.api.status.status_pb2.Status: ...
17999
+ @property
18000
+ def data(self) -> proto.clarifai.api.resources_pb2.MetricData: ...
18001
+ resolution: builtins.str
18002
+ def __init__(
18003
+ self,
18004
+ *,
18005
+ status: proto.clarifai.api.status.status_pb2.Status | None = ...,
18006
+ data: proto.clarifai.api.resources_pb2.MetricData | None = ...,
18007
+ resolution: builtins.str = ...,
18008
+ ) -> None: ...
18009
+ def HasField(
18010
+ self, field_name: typing_extensions.Literal["data", b"data", "status", b"status"]
18011
+ ) -> builtins.bool: ...
18012
+ def ClearField(
18013
+ self,
18014
+ field_name: typing_extensions.Literal[
18015
+ "data", b"data", "resolution", b"resolution", "status", b"status"
18016
+ ],
18017
+ ) -> None: ...
18018
+
18019
+ global___MetricsQueryResponse = MetricsQueryResponse
18020
+
18021
+ @typing_extensions.final
18022
+ class ListMetricLabelsRequest(google.protobuf.message.Message):
18023
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor
18024
+
18025
+ USER_APP_ID_FIELD_NUMBER: builtins.int
18026
+ METRIC_TYPES_FIELD_NUMBER: builtins.int
18027
+ @property
18028
+ def user_app_id(self) -> proto.clarifai.api.resources_pb2.UserAppIDSet: ...
18029
+ @property
18030
+ def metric_types(
18031
+ self,
18032
+ ) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[
18033
+ proto.clarifai.api.resources_pb2.MetricType.ValueType
18034
+ ]: ...
18035
+ def __init__(
18036
+ self,
18037
+ *,
18038
+ user_app_id: proto.clarifai.api.resources_pb2.UserAppIDSet | None = ...,
18039
+ metric_types: collections.abc.Iterable[
18040
+ proto.clarifai.api.resources_pb2.MetricType.ValueType
18041
+ ]
18042
+ | None = ...,
18043
+ ) -> None: ...
18044
+ def HasField(
18045
+ self, field_name: typing_extensions.Literal["user_app_id", b"user_app_id"]
18046
+ ) -> builtins.bool: ...
18047
+ def ClearField(
18048
+ self,
18049
+ field_name: typing_extensions.Literal[
18050
+ "metric_types", b"metric_types", "user_app_id", b"user_app_id"
18051
+ ],
18052
+ ) -> None: ...
18053
+
18054
+ global___ListMetricLabelsRequest = ListMetricLabelsRequest
18055
+
18056
+ @typing_extensions.final
18057
+ class MultiMetricLabelsResponse(google.protobuf.message.Message):
18058
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor
18059
+
18060
+ STATUS_FIELD_NUMBER: builtins.int
18061
+ METRIC_TYPE_LABELS_FIELD_NUMBER: builtins.int
18062
+ @property
18063
+ def status(self) -> proto.clarifai.api.status.status_pb2.Status: ...
18064
+ @property
18065
+ def metric_type_labels(
18066
+ self,
18067
+ ) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[
18068
+ proto.clarifai.api.resources_pb2.MetricTypeLabels
18069
+ ]: ...
18070
+ def __init__(
18071
+ self,
18072
+ *,
18073
+ status: proto.clarifai.api.status.status_pb2.Status | None = ...,
18074
+ metric_type_labels: collections.abc.Iterable[
18075
+ proto.clarifai.api.resources_pb2.MetricTypeLabels
18076
+ ]
18077
+ | None = ...,
18078
+ ) -> None: ...
18079
+ def HasField(
18080
+ self, field_name: typing_extensions.Literal["status", b"status"]
18081
+ ) -> builtins.bool: ...
18082
+ def ClearField(
18083
+ self,
18084
+ field_name: typing_extensions.Literal[
18085
+ "metric_type_labels", b"metric_type_labels", "status", b"status"
18086
+ ],
18087
+ ) -> None: ...
18088
+
18089
+ global___MultiMetricLabelsResponse = MultiMetricLabelsResponse
@@ -1424,6 +1424,16 @@ class V2Stub(object):
1424
1424
  request_serializer=proto_dot_clarifai_dot_api_dot_service__pb2.DeleteSecretsRequest.SerializeToString,
1425
1425
  response_deserializer=wrap_response_deserializer(proto_dot_clarifai_dot_api_dot_service__pb2.MultiSecretResponse),
1426
1426
  )
1427
+ self.PostMetricsQuery = channel.unary_unary(
1428
+ '/clarifai.api.V2/PostMetricsQuery',
1429
+ request_serializer=proto_dot_clarifai_dot_api_dot_service__pb2.PostMetricsQueryRequest.SerializeToString,
1430
+ response_deserializer=wrap_response_deserializer(proto_dot_clarifai_dot_api_dot_service__pb2.MetricsQueryResponse),
1431
+ )
1432
+ self.ListMetricLabels = channel.unary_unary(
1433
+ '/clarifai.api.V2/ListMetricLabels',
1434
+ request_serializer=proto_dot_clarifai_dot_api_dot_service__pb2.ListMetricLabelsRequest.SerializeToString,
1435
+ response_deserializer=wrap_response_deserializer(proto_dot_clarifai_dot_api_dot_service__pb2.MultiMetricLabelsResponse),
1436
+ )
1427
1437
 
1428
1438
 
1429
1439
  class V2Servicer(object):
@@ -3501,6 +3511,18 @@ class V2Servicer(object):
3501
3511
  context.set_details('Method not implemented!')
3502
3512
  raise NotImplementedError('Method not implemented!')
3503
3513
 
3514
+ def PostMetricsQuery(self, request, context):
3515
+ """Missing associated documentation comment in .proto file."""
3516
+ context.set_code(grpc.StatusCode.UNIMPLEMENTED)
3517
+ context.set_details('Method not implemented!')
3518
+ raise NotImplementedError('Method not implemented!')
3519
+
3520
+ def ListMetricLabels(self, request, context):
3521
+ """Missing associated documentation comment in .proto file."""
3522
+ context.set_code(grpc.StatusCode.UNIMPLEMENTED)
3523
+ context.set_details('Method not implemented!')
3524
+ raise NotImplementedError('Method not implemented!')
3525
+
3504
3526
 
3505
3527
  def add_V2Servicer_to_server(servicer, server):
3506
3528
  rpc_method_handlers = {
@@ -4894,6 +4916,16 @@ def add_V2Servicer_to_server(servicer, server):
4894
4916
  request_deserializer=proto_dot_clarifai_dot_api_dot_service__pb2.DeleteSecretsRequest.FromString,
4895
4917
  response_serializer=proto_dot_clarifai_dot_api_dot_service__pb2.MultiSecretResponse.SerializeToString,
4896
4918
  ),
4919
+ 'PostMetricsQuery': grpc.unary_unary_rpc_method_handler(
4920
+ servicer.PostMetricsQuery,
4921
+ request_deserializer=proto_dot_clarifai_dot_api_dot_service__pb2.PostMetricsQueryRequest.FromString,
4922
+ response_serializer=proto_dot_clarifai_dot_api_dot_service__pb2.MetricsQueryResponse.SerializeToString,
4923
+ ),
4924
+ 'ListMetricLabels': grpc.unary_unary_rpc_method_handler(
4925
+ servicer.ListMetricLabels,
4926
+ request_deserializer=proto_dot_clarifai_dot_api_dot_service__pb2.ListMetricLabelsRequest.FromString,
4927
+ response_serializer=proto_dot_clarifai_dot_api_dot_service__pb2.MultiMetricLabelsResponse.SerializeToString,
4928
+ ),
4897
4929
  }
4898
4930
  generic_handler = grpc.method_handlers_generic_handler(
4899
4931
  'clarifai.api.V2', rpc_method_handlers)
@@ -9647,3 +9679,37 @@ class V2(object):
9647
9679
  proto_dot_clarifai_dot_api_dot_service__pb2.MultiSecretResponse.FromString,
9648
9680
  options, channel_credentials,
9649
9681
  insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
9682
+
9683
+ @staticmethod
9684
+ def PostMetricsQuery(request,
9685
+ target,
9686
+ options=(),
9687
+ channel_credentials=None,
9688
+ call_credentials=None,
9689
+ insecure=False,
9690
+ compression=None,
9691
+ wait_for_ready=None,
9692
+ timeout=None,
9693
+ metadata=None):
9694
+ return grpc.experimental.unary_unary(request, target, '/clarifai.api.V2/PostMetricsQuery',
9695
+ proto_dot_clarifai_dot_api_dot_service__pb2.PostMetricsQueryRequest.SerializeToString,
9696
+ proto_dot_clarifai_dot_api_dot_service__pb2.MetricsQueryResponse.FromString,
9697
+ options, channel_credentials,
9698
+ insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
9699
+
9700
+ @staticmethod
9701
+ def ListMetricLabels(request,
9702
+ target,
9703
+ options=(),
9704
+ channel_credentials=None,
9705
+ call_credentials=None,
9706
+ insecure=False,
9707
+ compression=None,
9708
+ wait_for_ready=None,
9709
+ timeout=None,
9710
+ metadata=None):
9711
+ return grpc.experimental.unary_unary(request, target, '/clarifai.api.V2/ListMetricLabels',
9712
+ proto_dot_clarifai_dot_api_dot_service__pb2.ListMetricLabelsRequest.SerializeToString,
9713
+ proto_dot_clarifai_dot_api_dot_service__pb2.MultiMetricLabelsResponse.FromString,
9714
+ options, channel_credentials,
9715
+ insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
@@ -14,7 +14,7 @@ _sym_db = _symbol_database.Default()
14
14
  from google.protobuf import descriptor_pb2 as google_dot_protobuf_dot_descriptor__pb2
15
15
 
16
16
 
17
- DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n%proto/clarifai/auth/scope/scope.proto\x12\x13\x63larifai.auth.scope\x1a google/protobuf/descriptor.proto\"F\n\tScopeList\x12&\n\x06scopes\x18\x01 \x03(\x0e\x32\x16.clarifai.auth.scope.S\x12\x11\n\tendpoints\x18\x02 \x03(\t*\xbb\x1c\n\x01S\x12\t\n\x05undef\x10\x00\x12\r\n\x03\x41ll\x10\x01\x1a\x04\xf0\x9b\'\x01\x12\x11\n\x07Predict\x10\x02\x1a\x04\xf0\x9b\'\x01\x12\x18\n\nInputs_Add\x10\x04\x1a\x08\xf0\x9b\'\x01\xf8\x9b\'\x05\x12\x14\n\nInputs_Get\x10\x05\x1a\x04\xf0\x9b\'\x01\x12 \n\x0cInputs_Patch\x10\x07\x1a\x0e\x08\x01\xf0\x9b\'\x01\xf8\x9b\'\x04\xf8\x9b\'\x05\x12\x1f\n\rInputs_Delete\x10\x08\x1a\x0c\xf0\x9b\'\x01\xf8\x9b\'\x04\xf8\x9b\'\x05\x12\x1d\n\rOutputs_Patch\x10\t\x1a\n\x08\x01\xf8\x9b\'\x05\xf8\x9b\'\x02\x12\x1a\n\x0c\x43oncepts_Add\x10\n\x1a\x08\xf0\x9b\'\x01\xf8\x9b\'\x0b\x12\x16\n\x0c\x43oncepts_Get\x10\x0b\x1a\x04\xf0\x9b\'\x01\x12\"\n\x0e\x43oncepts_Patch\x10\x0c\x1a\x0e\x08\x01\xf0\x9b\'\x01\xf8\x9b\'\n\xf8\x9b\'\x0b\x12\x1d\n\x0f\x43oncepts_Delete\x10\r\x1a\x08\xf8\x9b\'\n\xf8\x9b\'\x0b\x12\x18\n\nModels_Add\x10\x0e\x1a\x08\xf0\x9b\'\x01\xf8\x9b\'\x0f\x12\x14\n\nModels_Get\x10\x0f\x1a\x04\xf0\x9b\'\x01\x12$\n\x0cModels_Patch\x10\x10\x1a\x12\x08\x01\xf0\x9b\'\x01\xf8\x9b\'\x0e\xf8\x9b\'\x0f\xf8\x9b\'\x1a\x12\x1f\n\rModels_Delete\x10\x11\x1a\x0c\xf0\x9b\'\x01\xf8\x9b\'\x0e\xf8\x9b\'\x0f\x12\x1a\n\x0cModels_Train\x10\x1a\x1a\x08\xf0\x9b\'\x01\xf8\x9b\'\x0f\x12\x15\n\x0bModels_Sync\x10\x1b\x1a\x04\xf8\x9b\'\x0f\x12\x1b\n\x10ModelExports_Get\x10\x8e\x01\x1a\x04\xf0\x9b\'\x01\x12 \n\x10ModelExports_Add\x10\x8f\x01\x1a\t\xf0\x9b\'\x01\xf8\x9b\'\x8e\x01\x12\x1a\n\x0bModels_Pull\x10\x96\x01\x1a\x08\xf0\x9b\'\x01\xf8\x9b\'\x0f\x12\x1b\n\rWorkflows_Add\x10\x12\x1a\x08\xf0\x9b\'\x01\xf8\x9b\'\x13\x12\x17\n\rWorkflows_Get\x10\x13\x1a\x04\xf0\x9b\'\x01\x12#\n\x0fWorkflows_Patch\x10\x14\x1a\x0e\x08\x01\xf0\x9b\'\x01\xf8\x9b\'\x12\xf8\x9b\'\x13\x12\"\n\x10Workflows_Delete\x10\x15\x1a\x0c\xf0\x9b\'\x01\xf8\x9b\'\x12\xf8\x9b\'\x13\x12\x1d\n\x13WorkflowMetrics_Get\x10`\x1a\x04\xf0\x9b\'\x01\x12!\n\x13WorkflowMetrics_Add\x10\x61\x1a\x08\xf0\x9b\'\x01\xf8\x9b\'`\x12(\n\x16WorkflowMetrics_Delete\x10\x62\x1a\x0c\xf0\x9b\'\x01\xf8\x9b\'a\xf8\x9b\'`\x12\"\n\x16TSNEVisualizations_Add\x10\x18\x1a\x06\x08\x01\xf8\x9b\'\x19\x12\x1e\n\x16TSNEVisualizations_Get\x10\x19\x1a\x02\x08\x01\x12\x1d\n\x0f\x41nnotations_Add\x10%\x1a\x08\xf0\x9b\'\x01\xf8\x9b\'&\x12\x19\n\x0f\x41nnotations_Get\x10&\x1a\x04\xf0\x9b\'\x01\x12%\n\x11\x41nnotations_Patch\x10\'\x1a\x0e\x08\x01\xf0\x9b\'\x01\xf8\x9b\'%\xf8\x9b\'&\x12$\n\x12\x41nnotations_Delete\x10(\x1a\x0c\xf0\x9b\'\x01\xf8\x9b\'%\xf8\x9b\'&\x12\x1c\n\x0e\x43ollectors_Add\x10)\x1a\x08\xf0\x9b\'\x01\xf8\x9b\'*\x12\x18\n\x0e\x43ollectors_Get\x10*\x1a\x04\xf0\x9b\'\x01\x12#\n\x11\x43ollectors_Delete\x10+\x1a\x0c\xf0\x9b\'\x01\xf8\x9b\')\xf8\x9b\'*\x12\x16\n\x08\x41pps_Add\x10,\x1a\x08\xf0\x9b\'\x01\xf8\x9b\'-\x12\x12\n\x08\x41pps_Get\x10-\x1a\x04\xf0\x9b\'\x01\x12\x1d\n\x0b\x41pps_Delete\x10.\x1a\x0c\xf0\x9b\'\x01\xf8\x9b\',\xf8\x9b\'-\x12\x16\n\x08Keys_Add\x10/\x1a\x08\xf0\x9b\'\x01\xf8\x9b\'0\x12\x12\n\x08Keys_Get\x10\x30\x1a\x04\xf0\x9b\'\x01\x12\x1d\n\x0bKeys_Delete\x10\x31\x1a\x0c\xf0\x9b\'\x01\xf8\x9b\'/\xf8\x9b\'0\x12\x1f\n\x11\x43ollaborators_Add\x10\x33\x1a\x08\xf0\x9b\'\x01\xf8\x9b\'2\x12\x1b\n\x11\x43ollaborators_Get\x10\x32\x1a\x04\xf0\x9b\'\x01\x12&\n\x14\x43ollaborators_Delete\x10\x34\x1a\x0c\xf0\x9b\'\x01\xf8\x9b\'3\xf8\x9b\'2\x12\x19\n\x0bMetrics_Add\x10\x36\x1a\x08\xf0\x9b\'\x01\xf8\x9b\'5\x12\x15\n\x0bMetrics_Get\x10\x35\x1a\x04\xf0\x9b\'\x01\x12 \n\x0eMetrics_Delete\x10?\x1a\x0c\xf0\x9b\'\x01\xf8\x9b\'6\xf8\x9b\'5\x12\x17\n\tTasks_Add\x10\x37\x1a\x08\xf0\x9b\'\x01\xf8\x9b\'8\x12\x13\n\tTasks_Get\x10\x38\x1a\x04\xf0\x9b\'\x01\x12\x1e\n\x0cTasks_Delete\x10\x46\x1a\x0c\xf0\x9b\'\x01\xf8\x9b\'7\xf8\x9b\'8\x12\"\n\x14PasswordPolicies_Add\x10\x39\x1a\x08\xf0\x9b\'\x01\xf8\x9b\':\x12\x1e\n\x14PasswordPolicies_Get\x10:\x1a\x04\xf0\x9b\'\x01\x12)\n\x17PasswordPolicies_Delete\x10;\x1a\x0c\xf0\x9b\'\x01\xf8\x9b\'9\xf8\x9b\':\x12\x19\n\x0fLabelOrders_Get\x10\x43\x1a\x04\xf0\x9b\'\x01\x12\x1d\n\x0fLabelOrders_Add\x10\x44\x1a\x08\xf0\x9b\'\x01\xf8\x9b\'C\x12$\n\x12LabelOrders_Delete\x10\x45\x1a\x0c\xf0\x9b\'\x01\xf8\x9b\'D\xf8\x9b\'C\x12.\n FindDuplicateAnnotationsJobs_Add\x10\x66\x1a\x08\xf0\x9b\'\x01\xf8\x9b\'g\x12*\n FindDuplicateAnnotationsJobs_Get\x10g\x1a\x04\xf0\x9b\'\x01\x12\x35\n#FindDuplicateAnnotationsJobs_Delete\x10h\x1a\x0c\xf0\x9b\'\x01\xf8\x9b\'f\xf8\x9b\'g\x12\x16\n\x0c\x44\x61tasets_Get\x10i\x1a\x04\xf0\x9b\'\x01\x12\x1a\n\x0c\x44\x61tasets_Add\x10j\x1a\x08\xf0\x9b\'\x01\xf8\x9b\'i\x12!\n\x0f\x44\x61tasets_Delete\x10k\x1a\x0c\xf0\x9b\'\x01\xf8\x9b\'i\xf8\x9b\'j\x12\x19\n\x0bModules_Add\x10l\x1a\x08\xf0\x9b\'\x01\xf8\x9b\'m\x12\x15\n\x0bModules_Get\x10m\x1a\x04\xf0\x9b\'\x01\x12 \n\x0eModules_Delete\x10n\x1a\x0c\xf0\x9b\'\x01\xf8\x9b\'l\xf8\x9b\'m\x12-\n\x1bInstalledModuleVersions_Add\x10o\x1a\x0c\xf0\x9b\'\x01\xf8\x9b\'p\xf8\x9b\'m\x12)\n\x1bInstalledModuleVersions_Get\x10p\x1a\x08\xf0\x9b\'\x01\xf8\x9b\'m\x12\x34\n\x1eInstalledModuleVersions_Delete\x10q\x1a\x10\xf0\x9b\'\x01\xf8\x9b\'o\xf8\x9b\'p\xf8\x9b\'m\x12\x10\n\x06Search\x10\x03\x1a\x04\xf0\x9b\'\x01\x12\x19\n\x0fSavedSearch_Get\x10r\x1a\x04\xf0\x9b\'\x01\x12\x1d\n\x0fSavedSearch_Add\x10s\x1a\x08\xf0\x9b\'\x01\xf8\x9b\'r\x12$\n\x12SavedSearch_Delete\x10t\x1a\x0c\xf0\x9b\'\x01\xf8\x9b\'r\xf8\x9b\'s\x12&\n\x1cModelVersionPublications_Add\x10u\x1a\x04\xf0\x9b\'\x01\x12)\n\x1fModelVersionPublications_Delete\x10v\x1a\x04\xf0\x9b\'\x01\x12\"\n\x18WorkflowPublications_Add\x10w\x1a\x04\xf0\x9b\'\x01\x12%\n\x1bWorkflowPublications_Delete\x10x\x1a\x04\xf0\x9b\'\x01\x12\x1f\n\x11\x42ulkOperation_Add\x10y\x1a\x08\xf0\x9b\'\x01\xf8\x9b\'z\x12\x1b\n\x11\x42ulkOperation_Get\x10z\x1a\x04\xf0\x9b\'\x01\x12&\n\x14\x42ulkOperation_Delete\x10{\x1a\x0c\xf0\x9b\'\x01\xf8\x9b\'y\xf8\x9b\'z\x12\x17\n\x13HistoricalUsage_Get\x10|\x12\x16\n\x0bUploads_Get\x10\x80\x01\x1a\x04\xf0\x9b\'\x01\x12\x1b\n\x0bUploads_Add\x10\x81\x01\x1a\t\xf0\x9b\'\x01\xf8\x9b\'\x80\x01\x12#\n\x0eUploads_Delete\x10\x82\x01\x1a\x0e\xf0\x9b\'\x01\xf8\x9b\'\x80\x01\xf8\x9b\'\x81\x01\x12\x16\n\x0bRunners_Get\x10\x83\x01\x1a\x04\xf0\x9b\'\x01\x12\x1b\n\x0bRunners_Add\x10\x84\x01\x1a\t\xf0\x9b\'\x01\xf8\x9b\'\x83\x01\x12#\n\x0eRunners_Delete\x10\x85\x01\x1a\x0e\xf0\x9b\'\x01\xf8\x9b\'\x83\x01\xf8\x9b\'\x84\x01\x12\x1a\n\x0fRunnerItems_Get\x10\x86\x01\x1a\x04\xf0\x9b\'\x01\x12\x1f\n\x0fRunnerItems_Add\x10\x87\x01\x1a\t\xf0\x9b\'\x01\xf8\x9b\'\x86\x01\x12\x18\n\rNodepools_Get\x10\x88\x01\x1a\x04\xf0\x9b\'\x01\x12\x1d\n\rNodepools_Add\x10\x89\x01\x1a\t\xf0\x9b\'\x01\xf8\x9b\'\x88\x01\x12%\n\x10Nodepools_Delete\x10\x8a\x01\x1a\x0e\xf0\x9b\'\x01\xf8\x9b\'\x88\x01\xf8\x9b\'\x89\x01\x12\x1e\n\x13\x43omputeClusters_Get\x10\x8b\x01\x1a\x04\xf0\x9b\'\x01\x12#\n\x13\x43omputeClusters_Add\x10\x8c\x01\x1a\t\xf0\x9b\'\x01\xf8\x9b\'\x8b\x01\x12+\n\x16\x43omputeClusters_Delete\x10\x8d\x01\x1a\x0e\xf0\x9b\'\x01\xf8\x9b\'\x8b\x01\xf8\x9b\'\x8c\x01\x12\x1a\n\x0f\x44\x65ployments_Get\x10\x90\x01\x1a\x04\xf0\x9b\'\x01\x12\x1f\n\x0f\x44\x65ployments_Add\x10\x91\x01\x1a\t\xf0\x9b\'\x01\xf8\x9b\'\x90\x01\x12\'\n\x12\x44\x65ployments_Delete\x10\x92\x01\x1a\x0e\xf0\x9b\'\x01\xf8\x9b\'\x90\x01\xf8\x9b\'\x91\x01\x12\x1c\n\x11InstanceTypes_Get\x10\x94\x01\x1a\x04\xf0\x9b\'\x01\x12\x18\n\rAuditLogs_Get\x10\x95\x01\x1a\x04\xf0\x9b\'\x01\x12\x19\n\x0eLogEntries_Get\x10\x97\x01\x1a\x04\xf0\x9b\'\x01\x12)\n\x1eWorkflowVersionEvaluations_Get\x10\x98\x01\x1a\x04\xf0\x9b\'\x01\x12.\n\x1eWorkflowVersionEvaluations_Add\x10\x99\x01\x1a\t\xf0\x9b\'\x01\xf8\x9b\'\x98\x01\x12\x18\n\rPipelines_Get\x10\x9a\x01\x1a\x04\xf0\x9b\'\x01\x12\x1d\n\rPipelines_Add\x10\x9b\x01\x1a\t\xf0\x9b\'\x01\xf8\x9b\'\x9a\x01\x12%\n\x10Pipelines_Delete\x10\x9c\x01\x1a\x0e\xf0\x9b\'\x01\xf8\x9b\'\x9a\x01\xf8\x9b\'\x9b\x01\x12\x1c\n\x11PipelineSteps_Get\x10\x9d\x01\x1a\x04\xf0\x9b\'\x01\x12!\n\x11PipelineSteps_Add\x10\x9e\x01\x1a\t\xf0\x9b\'\x01\xf8\x9b\'\x9d\x01\x12\"\n\x12PipelineSteps_Pull\x10\x9f\x01\x1a\t\xf0\x9b\'\x01\xf8\x9b\'\x9d\x01\x12\x16\n\x0bSecrets_Get\x10\xa0\x01\x1a\x04\xf0\x9b\'\x01\x12\x1b\n\x0bSecrets_Add\x10\xa1\x01\x1a\t\xf0\x9b\'\x01\xf8\x9b\'\xa0\x01\x12#\n\x0eSecrets_Delete\x10\xa2\x01\x1a\x0e\xf0\x9b\'\x01\xf8\x9b\'\xa0\x01\xf8\x9b\'\xa1\x01\"\x04\x08\x1e\x10\x1e\"\x04\x08\x1f\x10\x1f\"\x04\x08 \x10 \"\x04\x08!\x10!\"\x04\x08\"\x10\"\"\x04\x08}\x10}\"\x04\x08~\x10~:<\n\x0f\x63larfai_exposed\x12!.google.protobuf.EnumValueOptions\x18\xbe\xf3\x04 \x01(\x08:^\n\x19\x63larifai_depending_scopes\x12!.google.protobuf.EnumValueOptions\x18\xbf\xf3\x04 \x03(\x0e\x32\x16.clarifai.auth.scope.SBg\n\x1c\x63om.clarifai.grpc.auth.scopeP\x01Z>github.com/Clarifai/clarifai-go-grpc/proto/clarifai/auth/scope\xa2\x02\x04\x43\x41IPb\x06proto3')
17
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n%proto/clarifai/auth/scope/scope.proto\x12\x13\x63larifai.auth.scope\x1a google/protobuf/descriptor.proto\"F\n\tScopeList\x12&\n\x06scopes\x18\x01 \x03(\x0e\x32\x16.clarifai.auth.scope.S\x12\x11\n\tendpoints\x18\x02 \x03(\t*\xd7\x1c\n\x01S\x12\t\n\x05undef\x10\x00\x12\r\n\x03\x41ll\x10\x01\x1a\x04\xf0\x9b\'\x01\x12\x11\n\x07Predict\x10\x02\x1a\x04\xf0\x9b\'\x01\x12\x18\n\nInputs_Add\x10\x04\x1a\x08\xf0\x9b\'\x01\xf8\x9b\'\x05\x12\x14\n\nInputs_Get\x10\x05\x1a\x04\xf0\x9b\'\x01\x12 \n\x0cInputs_Patch\x10\x07\x1a\x0e\x08\x01\xf0\x9b\'\x01\xf8\x9b\'\x04\xf8\x9b\'\x05\x12\x1f\n\rInputs_Delete\x10\x08\x1a\x0c\xf0\x9b\'\x01\xf8\x9b\'\x04\xf8\x9b\'\x05\x12\x1d\n\rOutputs_Patch\x10\t\x1a\n\x08\x01\xf8\x9b\'\x05\xf8\x9b\'\x02\x12\x1a\n\x0c\x43oncepts_Add\x10\n\x1a\x08\xf0\x9b\'\x01\xf8\x9b\'\x0b\x12\x16\n\x0c\x43oncepts_Get\x10\x0b\x1a\x04\xf0\x9b\'\x01\x12\"\n\x0e\x43oncepts_Patch\x10\x0c\x1a\x0e\x08\x01\xf0\x9b\'\x01\xf8\x9b\'\n\xf8\x9b\'\x0b\x12\x1d\n\x0f\x43oncepts_Delete\x10\r\x1a\x08\xf8\x9b\'\n\xf8\x9b\'\x0b\x12\x18\n\nModels_Add\x10\x0e\x1a\x08\xf0\x9b\'\x01\xf8\x9b\'\x0f\x12\x14\n\nModels_Get\x10\x0f\x1a\x04\xf0\x9b\'\x01\x12$\n\x0cModels_Patch\x10\x10\x1a\x12\x08\x01\xf0\x9b\'\x01\xf8\x9b\'\x0e\xf8\x9b\'\x0f\xf8\x9b\'\x1a\x12\x1f\n\rModels_Delete\x10\x11\x1a\x0c\xf0\x9b\'\x01\xf8\x9b\'\x0e\xf8\x9b\'\x0f\x12\x1a\n\x0cModels_Train\x10\x1a\x1a\x08\xf0\x9b\'\x01\xf8\x9b\'\x0f\x12\x15\n\x0bModels_Sync\x10\x1b\x1a\x04\xf8\x9b\'\x0f\x12\x1b\n\x10ModelExports_Get\x10\x8e\x01\x1a\x04\xf0\x9b\'\x01\x12 \n\x10ModelExports_Add\x10\x8f\x01\x1a\t\xf0\x9b\'\x01\xf8\x9b\'\x8e\x01\x12\x1a\n\x0bModels_Pull\x10\x96\x01\x1a\x08\xf0\x9b\'\x01\xf8\x9b\'\x0f\x12\x1b\n\rWorkflows_Add\x10\x12\x1a\x08\xf0\x9b\'\x01\xf8\x9b\'\x13\x12\x17\n\rWorkflows_Get\x10\x13\x1a\x04\xf0\x9b\'\x01\x12#\n\x0fWorkflows_Patch\x10\x14\x1a\x0e\x08\x01\xf0\x9b\'\x01\xf8\x9b\'\x12\xf8\x9b\'\x13\x12\"\n\x10Workflows_Delete\x10\x15\x1a\x0c\xf0\x9b\'\x01\xf8\x9b\'\x12\xf8\x9b\'\x13\x12\x1d\n\x13WorkflowMetrics_Get\x10`\x1a\x04\xf0\x9b\'\x01\x12!\n\x13WorkflowMetrics_Add\x10\x61\x1a\x08\xf0\x9b\'\x01\xf8\x9b\'`\x12(\n\x16WorkflowMetrics_Delete\x10\x62\x1a\x0c\xf0\x9b\'\x01\xf8\x9b\'a\xf8\x9b\'`\x12\"\n\x16TSNEVisualizations_Add\x10\x18\x1a\x06\x08\x01\xf8\x9b\'\x19\x12\x1e\n\x16TSNEVisualizations_Get\x10\x19\x1a\x02\x08\x01\x12\x1d\n\x0f\x41nnotations_Add\x10%\x1a\x08\xf0\x9b\'\x01\xf8\x9b\'&\x12\x19\n\x0f\x41nnotations_Get\x10&\x1a\x04\xf0\x9b\'\x01\x12%\n\x11\x41nnotations_Patch\x10\'\x1a\x0e\x08\x01\xf0\x9b\'\x01\xf8\x9b\'%\xf8\x9b\'&\x12$\n\x12\x41nnotations_Delete\x10(\x1a\x0c\xf0\x9b\'\x01\xf8\x9b\'%\xf8\x9b\'&\x12\x1c\n\x0e\x43ollectors_Add\x10)\x1a\x08\xf0\x9b\'\x01\xf8\x9b\'*\x12\x18\n\x0e\x43ollectors_Get\x10*\x1a\x04\xf0\x9b\'\x01\x12#\n\x11\x43ollectors_Delete\x10+\x1a\x0c\xf0\x9b\'\x01\xf8\x9b\')\xf8\x9b\'*\x12\x16\n\x08\x41pps_Add\x10,\x1a\x08\xf0\x9b\'\x01\xf8\x9b\'-\x12\x12\n\x08\x41pps_Get\x10-\x1a\x04\xf0\x9b\'\x01\x12\x1d\n\x0b\x41pps_Delete\x10.\x1a\x0c\xf0\x9b\'\x01\xf8\x9b\',\xf8\x9b\'-\x12\x16\n\x08Keys_Add\x10/\x1a\x08\xf0\x9b\'\x01\xf8\x9b\'0\x12\x12\n\x08Keys_Get\x10\x30\x1a\x04\xf0\x9b\'\x01\x12\x1d\n\x0bKeys_Delete\x10\x31\x1a\x0c\xf0\x9b\'\x01\xf8\x9b\'/\xf8\x9b\'0\x12\x1f\n\x11\x43ollaborators_Add\x10\x33\x1a\x08\xf0\x9b\'\x01\xf8\x9b\'2\x12\x1b\n\x11\x43ollaborators_Get\x10\x32\x1a\x04\xf0\x9b\'\x01\x12&\n\x14\x43ollaborators_Delete\x10\x34\x1a\x0c\xf0\x9b\'\x01\xf8\x9b\'3\xf8\x9b\'2\x12\x19\n\x0bMetrics_Add\x10\x36\x1a\x08\xf0\x9b\'\x01\xf8\x9b\'5\x12\x15\n\x0bMetrics_Get\x10\x35\x1a\x04\xf0\x9b\'\x01\x12 \n\x0eMetrics_Delete\x10?\x1a\x0c\xf0\x9b\'\x01\xf8\x9b\'6\xf8\x9b\'5\x12\x17\n\tTasks_Add\x10\x37\x1a\x08\xf0\x9b\'\x01\xf8\x9b\'8\x12\x13\n\tTasks_Get\x10\x38\x1a\x04\xf0\x9b\'\x01\x12\x1e\n\x0cTasks_Delete\x10\x46\x1a\x0c\xf0\x9b\'\x01\xf8\x9b\'7\xf8\x9b\'8\x12\"\n\x14PasswordPolicies_Add\x10\x39\x1a\x08\xf0\x9b\'\x01\xf8\x9b\':\x12\x1e\n\x14PasswordPolicies_Get\x10:\x1a\x04\xf0\x9b\'\x01\x12)\n\x17PasswordPolicies_Delete\x10;\x1a\x0c\xf0\x9b\'\x01\xf8\x9b\'9\xf8\x9b\':\x12\x19\n\x0fLabelOrders_Get\x10\x43\x1a\x04\xf0\x9b\'\x01\x12\x1d\n\x0fLabelOrders_Add\x10\x44\x1a\x08\xf0\x9b\'\x01\xf8\x9b\'C\x12$\n\x12LabelOrders_Delete\x10\x45\x1a\x0c\xf0\x9b\'\x01\xf8\x9b\'D\xf8\x9b\'C\x12.\n FindDuplicateAnnotationsJobs_Add\x10\x66\x1a\x08\xf0\x9b\'\x01\xf8\x9b\'g\x12*\n FindDuplicateAnnotationsJobs_Get\x10g\x1a\x04\xf0\x9b\'\x01\x12\x35\n#FindDuplicateAnnotationsJobs_Delete\x10h\x1a\x0c\xf0\x9b\'\x01\xf8\x9b\'f\xf8\x9b\'g\x12\x16\n\x0c\x44\x61tasets_Get\x10i\x1a\x04\xf0\x9b\'\x01\x12\x1a\n\x0c\x44\x61tasets_Add\x10j\x1a\x08\xf0\x9b\'\x01\xf8\x9b\'i\x12!\n\x0f\x44\x61tasets_Delete\x10k\x1a\x0c\xf0\x9b\'\x01\xf8\x9b\'i\xf8\x9b\'j\x12\x19\n\x0bModules_Add\x10l\x1a\x08\xf0\x9b\'\x01\xf8\x9b\'m\x12\x15\n\x0bModules_Get\x10m\x1a\x04\xf0\x9b\'\x01\x12 \n\x0eModules_Delete\x10n\x1a\x0c\xf0\x9b\'\x01\xf8\x9b\'l\xf8\x9b\'m\x12-\n\x1bInstalledModuleVersions_Add\x10o\x1a\x0c\xf0\x9b\'\x01\xf8\x9b\'p\xf8\x9b\'m\x12)\n\x1bInstalledModuleVersions_Get\x10p\x1a\x08\xf0\x9b\'\x01\xf8\x9b\'m\x12\x34\n\x1eInstalledModuleVersions_Delete\x10q\x1a\x10\xf0\x9b\'\x01\xf8\x9b\'o\xf8\x9b\'p\xf8\x9b\'m\x12\x10\n\x06Search\x10\x03\x1a\x04\xf0\x9b\'\x01\x12\x19\n\x0fSavedSearch_Get\x10r\x1a\x04\xf0\x9b\'\x01\x12\x1d\n\x0fSavedSearch_Add\x10s\x1a\x08\xf0\x9b\'\x01\xf8\x9b\'r\x12$\n\x12SavedSearch_Delete\x10t\x1a\x0c\xf0\x9b\'\x01\xf8\x9b\'r\xf8\x9b\'s\x12&\n\x1cModelVersionPublications_Add\x10u\x1a\x04\xf0\x9b\'\x01\x12)\n\x1fModelVersionPublications_Delete\x10v\x1a\x04\xf0\x9b\'\x01\x12\"\n\x18WorkflowPublications_Add\x10w\x1a\x04\xf0\x9b\'\x01\x12%\n\x1bWorkflowPublications_Delete\x10x\x1a\x04\xf0\x9b\'\x01\x12\x1f\n\x11\x42ulkOperation_Add\x10y\x1a\x08\xf0\x9b\'\x01\xf8\x9b\'z\x12\x1b\n\x11\x42ulkOperation_Get\x10z\x1a\x04\xf0\x9b\'\x01\x12&\n\x14\x42ulkOperation_Delete\x10{\x1a\x0c\xf0\x9b\'\x01\xf8\x9b\'y\xf8\x9b\'z\x12\x17\n\x13HistoricalUsage_Get\x10|\x12\x16\n\x0bUploads_Get\x10\x80\x01\x1a\x04\xf0\x9b\'\x01\x12\x1b\n\x0bUploads_Add\x10\x81\x01\x1a\t\xf0\x9b\'\x01\xf8\x9b\'\x80\x01\x12#\n\x0eUploads_Delete\x10\x82\x01\x1a\x0e\xf0\x9b\'\x01\xf8\x9b\'\x80\x01\xf8\x9b\'\x81\x01\x12\x16\n\x0bRunners_Get\x10\x83\x01\x1a\x04\xf0\x9b\'\x01\x12\x1b\n\x0bRunners_Add\x10\x84\x01\x1a\t\xf0\x9b\'\x01\xf8\x9b\'\x83\x01\x12#\n\x0eRunners_Delete\x10\x85\x01\x1a\x0e\xf0\x9b\'\x01\xf8\x9b\'\x83\x01\xf8\x9b\'\x84\x01\x12\x1a\n\x0fRunnerItems_Get\x10\x86\x01\x1a\x04\xf0\x9b\'\x01\x12\x1f\n\x0fRunnerItems_Add\x10\x87\x01\x1a\t\xf0\x9b\'\x01\xf8\x9b\'\x86\x01\x12\x18\n\rNodepools_Get\x10\x88\x01\x1a\x04\xf0\x9b\'\x01\x12\x1d\n\rNodepools_Add\x10\x89\x01\x1a\t\xf0\x9b\'\x01\xf8\x9b\'\x88\x01\x12%\n\x10Nodepools_Delete\x10\x8a\x01\x1a\x0e\xf0\x9b\'\x01\xf8\x9b\'\x88\x01\xf8\x9b\'\x89\x01\x12\x1e\n\x13\x43omputeClusters_Get\x10\x8b\x01\x1a\x04\xf0\x9b\'\x01\x12#\n\x13\x43omputeClusters_Add\x10\x8c\x01\x1a\t\xf0\x9b\'\x01\xf8\x9b\'\x8b\x01\x12+\n\x16\x43omputeClusters_Delete\x10\x8d\x01\x1a\x0e\xf0\x9b\'\x01\xf8\x9b\'\x8b\x01\xf8\x9b\'\x8c\x01\x12\x1a\n\x0f\x44\x65ployments_Get\x10\x90\x01\x1a\x04\xf0\x9b\'\x01\x12\x1f\n\x0f\x44\x65ployments_Add\x10\x91\x01\x1a\t\xf0\x9b\'\x01\xf8\x9b\'\x90\x01\x12\'\n\x12\x44\x65ployments_Delete\x10\x92\x01\x1a\x0e\xf0\x9b\'\x01\xf8\x9b\'\x90\x01\xf8\x9b\'\x91\x01\x12\x1c\n\x11InstanceTypes_Get\x10\x94\x01\x1a\x04\xf0\x9b\'\x01\x12\x18\n\rAuditLogs_Get\x10\x95\x01\x1a\x04\xf0\x9b\'\x01\x12\x19\n\x0eLogEntries_Get\x10\x97\x01\x1a\x04\xf0\x9b\'\x01\x12)\n\x1eWorkflowVersionEvaluations_Get\x10\x98\x01\x1a\x04\xf0\x9b\'\x01\x12.\n\x1eWorkflowVersionEvaluations_Add\x10\x99\x01\x1a\t\xf0\x9b\'\x01\xf8\x9b\'\x98\x01\x12\x18\n\rPipelines_Get\x10\x9a\x01\x1a\x04\xf0\x9b\'\x01\x12\x1d\n\rPipelines_Add\x10\x9b\x01\x1a\t\xf0\x9b\'\x01\xf8\x9b\'\x9a\x01\x12%\n\x10Pipelines_Delete\x10\x9c\x01\x1a\x0e\xf0\x9b\'\x01\xf8\x9b\'\x9a\x01\xf8\x9b\'\x9b\x01\x12\x1c\n\x11PipelineSteps_Get\x10\x9d\x01\x1a\x04\xf0\x9b\'\x01\x12!\n\x11PipelineSteps_Add\x10\x9e\x01\x1a\t\xf0\x9b\'\x01\xf8\x9b\'\x9d\x01\x12\"\n\x12PipelineSteps_Pull\x10\x9f\x01\x1a\t\xf0\x9b\'\x01\xf8\x9b\'\x9d\x01\x12\x16\n\x0bSecrets_Get\x10\xa0\x01\x1a\x04\xf0\x9b\'\x01\x12\x1b\n\x0bSecrets_Add\x10\xa1\x01\x1a\t\xf0\x9b\'\x01\xf8\x9b\'\xa0\x01\x12#\n\x0eSecrets_Delete\x10\xa2\x01\x1a\x0e\xf0\x9b\'\x01\xf8\x9b\'\xa0\x01\xf8\x9b\'\xa1\x01\x12\x1a\n\x0fUserMetrics_Get\x10\xa3\x01\x1a\x04\xf0\x9b\'\x01\"\x04\x08\x1e\x10\x1e\"\x04\x08\x1f\x10\x1f\"\x04\x08 \x10 \"\x04\x08!\x10!\"\x04\x08\"\x10\"\"\x04\x08}\x10}\"\x04\x08~\x10~:<\n\x0f\x63larfai_exposed\x12!.google.protobuf.EnumValueOptions\x18\xbe\xf3\x04 \x01(\x08:^\n\x19\x63larifai_depending_scopes\x12!.google.protobuf.EnumValueOptions\x18\xbf\xf3\x04 \x03(\x0e\x32\x16.clarifai.auth.scope.SBg\n\x1c\x63om.clarifai.grpc.auth.scopeP\x01Z>github.com/Clarifai/clarifai-go-grpc/proto/clarifai/auth/scope\xa2\x02\x04\x43\x41IPb\x06proto3')
18
18
 
19
19
  _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, globals())
20
20
  _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'proto.clarifai.auth.scope.scope_pb2', globals())
@@ -246,8 +246,10 @@ if _descriptor._USE_C_DESCRIPTORS == False:
246
246
  _S.values_by_name["Secrets_Add"]._serialized_options = b'\360\233\'\001\370\233\'\240\001'
247
247
  _S.values_by_name["Secrets_Delete"]._options = None
248
248
  _S.values_by_name["Secrets_Delete"]._serialized_options = b'\360\233\'\001\370\233\'\240\001\370\233\'\241\001'
249
+ _S.values_by_name["UserMetrics_Get"]._options = None
250
+ _S.values_by_name["UserMetrics_Get"]._serialized_options = b'\360\233\'\001'
249
251
  _S._serialized_start=169
250
- _S._serialized_end=3812
252
+ _S._serialized_end=3840
251
253
  _SCOPELIST._serialized_start=96
252
254
  _SCOPELIST._serialized_end=166
253
255
  # @@protoc_insertion_point(module_scope)
@@ -247,6 +247,7 @@ class _SEnumTypeWrapper(
247
247
  Secrets_Get: _S.ValueType # 160
248
248
  Secrets_Add: _S.ValueType # 161
249
249
  Secrets_Delete: _S.ValueType # 162
250
+ UserMetrics_Get: _S.ValueType # 163
250
251
 
251
252
  class S(_S, metaclass=_SEnumTypeWrapper):
252
253
  """Next index: 41
@@ -495,6 +496,7 @@ PipelineSteps_Pull: S.ValueType # 159
495
496
  Secrets_Get: S.ValueType # 160
496
497
  Secrets_Add: S.ValueType # 161
497
498
  Secrets_Delete: S.ValueType # 162
499
+ UserMetrics_Get: S.ValueType # 163
498
500
  global___S = S
499
501
 
500
502
  @typing_extensions.final
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: clarifai-grpc
3
- Version: 11.7.9
3
+ Version: 11.8.1
4
4
  Summary: Clarifai gRPC API Client
5
5
  Home-page: https://github.com/Clarifai/clarifai-python-grpc
6
6
  Author: Clarifai
@@ -1,4 +1,4 @@
1
- clarifai_grpc/__init__.py,sha256=ilJ4u1f_7jZztJkzLMlZ7OT8vhpUwXze-s9ccXAcEXs,1440
1
+ clarifai_grpc/__init__.py,sha256=qTCDasnhP7vVLOx_Cv4VBLTFg1ga2LxCbLhCGWpdUug,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
@@ -10,12 +10,12 @@ clarifai_grpc/channel/custom_converters/custom_dict_to_message.py,sha256=aAOjcIG
10
10
  clarifai_grpc/channel/custom_converters/custom_message_to_dict.py,sha256=w-GeM4wYO5WcmjDjykw2wbXVpfy-A0_mkO9-3bPW4FE,3699
11
11
  clarifai_grpc/grpc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
12
12
  clarifai_grpc/grpc/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
13
- clarifai_grpc/grpc/api/resources_pb2.py,sha256=09sCfOHRUxeyqjPiTzB6YpsWbyE-QLlCf-5qnStB37E,155602
14
- clarifai_grpc/grpc/api/resources_pb2.pyi,sha256=UAnuh9jA-Z77TwfxBzTCaVt04LW0Hi7jfvzxxI7BRMs,641288
13
+ clarifai_grpc/grpc/api/resources_pb2.py,sha256=syUNGxVI3yvUqGqSwYAyRdvfZKjMQcObjk7dT8Djvdo,156443
14
+ clarifai_grpc/grpc/api/resources_pb2.pyi,sha256=1wfc_zvjP1pcRyUIwk6RSrw9770YCNhstwcR0MGw1Kk,644099
15
15
  clarifai_grpc/grpc/api/resources_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
16
- clarifai_grpc/grpc/api/service_pb2.py,sha256=fM8brsxzm_idedgjaBfvLl4ABwEOQh9WKLG9J0viTyQ,342892
17
- clarifai_grpc/grpc/api/service_pb2.pyi,sha256=3CybQlxIrwv0EG5W4OvrBK95PfvbIymulqSxhsXSRqo,632532
18
- clarifai_grpc/grpc/api/service_pb2_grpc.py,sha256=1IGu1JSrWTSIAzvyI0gWJnmGzch7-ap7P4Y5Lb-hTUI,514320
16
+ clarifai_grpc/grpc/api/service_pb2.py,sha256=BUUvICUdLvz8IE-u1h0ufcBi-sW2gtTi-lk2oHnVrQY,344965
17
+ clarifai_grpc/grpc/api/service_pb2.pyi,sha256=BFq9s9BBP8AwC8VfEug5QY5lYNMAFYd2UEumK6E0bPQ,636988
18
+ clarifai_grpc/grpc/api/service_pb2_grpc.py,sha256=Gr5UvIhxQzej4fk_6rulV0Z_bus6fAx96zzyadmsv5I,517895
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=gXoPXJ3Bz_E63SfVJC_5iz5ymsEXqWKHa-AhvM0aFC8,26014
21
21
  clarifai_grpc/grpc/api/status/status_code_pb2.pyi,sha256=sH8b8HMeFFZCr-Tr83z4k0dMhpcOwJxhPMXVh0yqZdg,65180
@@ -35,8 +35,8 @@ clarifai_grpc/grpc/api/utils/test_proto_pb2.pyi,sha256=AJAufd_C14CjPTF9ANkLR44vf
35
35
  clarifai_grpc/grpc/api/utils/test_proto_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
36
36
  clarifai_grpc/grpc/auth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
37
37
  clarifai_grpc/grpc/auth/scope/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
38
- clarifai_grpc/grpc/auth/scope/scope_pb2.py,sha256=AFZmMvZW6xck7i8HK-kJpYVdpm_zn-s0nQkjmOOP0nk,26645
39
- clarifai_grpc/grpc/auth/scope/scope_pb2.pyi,sha256=VO4D6rRsD3ZdHCvupw4S2Yn6zjXzn8gcpHjfm0hgl0M,20738
38
+ clarifai_grpc/grpc/auth/scope/scope_pb2.py,sha256=1JbfD0Ld8F90z9ru0R8b-XyAzTHvTOuFKf5W3TP8WaY,26842
39
+ clarifai_grpc/grpc/auth/scope/scope_pb2.pyi,sha256=C9zOW6VlCXAF7ufsmn5OoBhfWfdhW-V5W_d3HKuAGUQ,20815
40
40
  clarifai_grpc/grpc/auth/scope/scope_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
41
41
  clarifai_grpc/grpc/auth/types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
42
42
  clarifai_grpc/grpc/auth/types/types_pb2.py,sha256=009fUNv2HGn-RikE5Bljy7N6RC_Y28vAypyRE2D08zg,1460
@@ -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-11.7.9.dist-info/licenses/LICENSE,sha256=GuQZ4iPZUwh44duTbVr7ZzYp_SaJDLR9MvzU7YqlZXM,555
50
- clarifai_grpc-11.7.9.dist-info/METADATA,sha256=vv6_6bzVUhdi7HDpGcIens69q2SlcA8bUDJ9YxCkQoo,4427
51
- clarifai_grpc-11.7.9.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
52
- clarifai_grpc-11.7.9.dist-info/top_level.txt,sha256=azOUiixWkDpdb3gn_YNgz8sbAfhNvZuC3_9qI7hNQac,14
53
- clarifai_grpc-11.7.9.dist-info/RECORD,,
49
+ clarifai_grpc-11.8.1.dist-info/licenses/LICENSE,sha256=GuQZ4iPZUwh44duTbVr7ZzYp_SaJDLR9MvzU7YqlZXM,555
50
+ clarifai_grpc-11.8.1.dist-info/METADATA,sha256=3Yjaz6F4lSuejgH0dYSrP54bEOgb7mPNvYEKTfafTFM,4427
51
+ clarifai_grpc-11.8.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
52
+ clarifai_grpc-11.8.1.dist-info/top_level.txt,sha256=azOUiixWkDpdb3gn_YNgz8sbAfhNvZuC3_9qI7hNQac,14
53
+ clarifai_grpc-11.8.1.dist-info/RECORD,,