clarifai-grpc 11.10.3__py3-none-any.whl → 11.10.5__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.
@@ -238,52 +238,6 @@ See https://cocodataset.org/#format-data.
238
238
  """
239
239
  global___DatasetVersionExportFormat = DatasetVersionExportFormat
240
240
 
241
- class _ExpirationAction:
242
- ValueType = typing.NewType("ValueType", builtins.int)
243
- V: typing_extensions.TypeAlias = ValueType
244
-
245
- class _ExpirationActionEnumTypeWrapper(
246
- google.protobuf.internal.enum_type_wrapper._EnumTypeWrapper[_ExpirationAction.ValueType],
247
- builtins.type,
248
- ):
249
- DESCRIPTOR: google.protobuf.descriptor.EnumDescriptor
250
- EXPIRATION_ACTION_NOT_SET: _ExpirationAction.ValueType # 0
251
- DELAY: _ExpirationAction.ValueType # 1
252
- """Progressively delay the execution of operations"""
253
- EXPIRY: _ExpirationAction.ValueType # 2
254
- """Cease functioning"""
255
-
256
- class ExpirationAction(_ExpirationAction, metaclass=_ExpirationActionEnumTypeWrapper): ...
257
-
258
- EXPIRATION_ACTION_NOT_SET: ExpirationAction.ValueType # 0
259
- DELAY: ExpirationAction.ValueType # 1
260
- """Progressively delay the execution of operations"""
261
- EXPIRY: ExpirationAction.ValueType # 2
262
- """Cease functioning"""
263
- global___ExpirationAction = ExpirationAction
264
-
265
- class _LicenseScope:
266
- ValueType = typing.NewType("ValueType", builtins.int)
267
- V: typing_extensions.TypeAlias = ValueType
268
-
269
- class _LicenseScopeEnumTypeWrapper(
270
- google.protobuf.internal.enum_type_wrapper._EnumTypeWrapper[_LicenseScope.ValueType],
271
- builtins.type,
272
- ):
273
- DESCRIPTOR: google.protobuf.descriptor.EnumDescriptor
274
- LICENSE_SCOPE_NOT_SET: _LicenseScope.ValueType # 0
275
- PREDICT: _LicenseScope.ValueType # 1
276
- TRAIN: _LicenseScope.ValueType # 2
277
- SEARCH: _LicenseScope.ValueType # 3
278
-
279
- class LicenseScope(_LicenseScope, metaclass=_LicenseScopeEnumTypeWrapper): ...
280
-
281
- LICENSE_SCOPE_NOT_SET: LicenseScope.ValueType # 0
282
- PREDICT: LicenseScope.ValueType # 1
283
- TRAIN: LicenseScope.ValueType # 2
284
- SEARCH: LicenseScope.ValueType # 3
285
- global___LicenseScope = LicenseScope
286
-
287
241
  class _LicenseType:
288
242
  ValueType = typing.NewType("ValueType", builtins.int)
289
243
  V: typing_extensions.TypeAlias = ValueType
@@ -2636,6 +2590,7 @@ class Data(google.protobuf.message.Message):
2636
2590
  BYTES_VALUE_FIELD_NUMBER: builtins.int
2637
2591
  BOOL_VALUE_FIELD_NUMBER: builtins.int
2638
2592
  STRING_VALUE_FIELD_NUMBER: builtins.int
2593
+ STRUCT_VALUE_FIELD_NUMBER: builtins.int
2639
2594
  @property
2640
2595
  def image(self) -> global___Image:
2641
2596
  """Input and output images."""
@@ -2728,6 +2683,9 @@ class Data(google.protobuf.message.Message):
2728
2683
  """Input and output bool data"""
2729
2684
  string_value: builtins.str
2730
2685
  """Input and output string data"""
2686
+ @property
2687
+ def struct_value(self) -> google.protobuf.struct_pb2.Struct:
2688
+ """To handle Input and output json"""
2731
2689
  def __init__(
2732
2690
  self,
2733
2691
  *,
@@ -2754,6 +2712,7 @@ class Data(google.protobuf.message.Message):
2754
2712
  bytes_value: builtins.bytes = ...,
2755
2713
  bool_value: builtins.bool = ...,
2756
2714
  string_value: builtins.str = ...,
2715
+ struct_value: google.protobuf.struct_pb2.Struct | None = ...,
2757
2716
  ) -> None: ...
2758
2717
  def HasField(
2759
2718
  self,
@@ -2768,6 +2727,8 @@ class Data(google.protobuf.message.Message):
2768
2727
  b"metadata",
2769
2728
  "ndarray",
2770
2729
  b"ndarray",
2730
+ "struct_value",
2731
+ b"struct_value",
2771
2732
  "text",
2772
2733
  b"text",
2773
2734
  "video",
@@ -2815,6 +2776,8 @@ class Data(google.protobuf.message.Message):
2815
2776
  b"regions",
2816
2777
  "string_value",
2817
2778
  b"string_value",
2779
+ "struct_value",
2780
+ b"struct_value",
2818
2781
  "text",
2819
2782
  b"text",
2820
2783
  "time_segments",