clarifai-grpc 11.10.9__py3-none-any.whl → 11.10.10__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.
@@ -6865,18 +6865,22 @@ class BuildInfo(google.protobuf.message.Message):
6865
6865
  DOCKER_IMAGE_NAME_FIELD_NUMBER: builtins.int
6866
6866
  DOCKER_IMAGE_TAG_FIELD_NUMBER: builtins.int
6867
6867
  DOCKER_IMAGE_DIGEST_FIELD_NUMBER: builtins.int
6868
+ PLATFORM_FIELD_NUMBER: builtins.int
6868
6869
  docker_image_name: builtins.str
6869
6870
  """Docker image name"""
6870
6871
  docker_image_tag: builtins.str
6871
6872
  """Docker image tag"""
6872
6873
  docker_image_digest: builtins.str
6873
6874
  """Docker image digest"""
6875
+ platform: builtins.str
6876
+ """Platform(s) the model was built for (e.g., "linux/amd64,linux/arm64")"""
6874
6877
  def __init__(
6875
6878
  self,
6876
6879
  *,
6877
6880
  docker_image_name: builtins.str = ...,
6878
6881
  docker_image_tag: builtins.str = ...,
6879
6882
  docker_image_digest: builtins.str = ...,
6883
+ platform: builtins.str = ...,
6880
6884
  ) -> None: ...
6881
6885
  def ClearField(
6882
6886
  self,
@@ -6887,6 +6891,8 @@ class BuildInfo(google.protobuf.message.Message):
6887
6891
  b"docker_image_name",
6888
6892
  "docker_image_tag",
6889
6893
  b"docker_image_tag",
6894
+ "platform",
6895
+ b"platform",
6890
6896
  ],
6891
6897
  ) -> None: ...
6892
6898
 
@@ -14469,6 +14475,7 @@ class InstanceType(google.protobuf.message.Message):
14469
14475
  ALLOWED_CAPACITY_TYPES_FIELD_NUMBER: builtins.int
14470
14476
  FEATURE_FLAG_GROUP_FIELD_NUMBER: builtins.int
14471
14477
  SPECIAL_HANDLING_FIELD_NUMBER: builtins.int
14478
+ ARCHITECTURE_FIELD_NUMBER: builtins.int
14472
14479
  id: builtins.str
14473
14480
  description: builtins.str
14474
14481
  """Short description of instance type."""
@@ -14492,6 +14499,8 @@ class InstanceType(google.protobuf.message.Message):
14492
14499
  global___SpecialHandling
14493
14500
  ]:
14494
14501
  """List of special handling instructions for this instance type."""
14502
+ architecture: builtins.str
14503
+ """Hardware architecture of the instance type (e.g., "linux/amd64", "linux/arm64")."""
14495
14504
  def __init__(
14496
14505
  self,
14497
14506
  *,
@@ -14504,6 +14513,7 @@ class InstanceType(google.protobuf.message.Message):
14504
14513
  allowed_capacity_types: global___NodeCapacityType | None = ...,
14505
14514
  feature_flag_group: builtins.str = ...,
14506
14515
  special_handling: collections.abc.Iterable[global___SpecialHandling] | None = ...,
14516
+ architecture: builtins.str = ...,
14507
14517
  ) -> None: ...
14508
14518
  def HasField(
14509
14519
  self,
@@ -14521,6 +14531,8 @@ class InstanceType(google.protobuf.message.Message):
14521
14531
  field_name: typing_extensions.Literal[
14522
14532
  "allowed_capacity_types",
14523
14533
  b"allowed_capacity_types",
14534
+ "architecture",
14535
+ b"architecture",
14524
14536
  "cloud_provider",
14525
14537
  b"cloud_provider",
14526
14538
  "compute_info",
@@ -17724,3 +17736,188 @@ class MetricTypeLabels(google.protobuf.message.Message):
17724
17736
  ) -> None: ...
17725
17737
 
17726
17738
  global___MetricTypeLabels = MetricTypeLabels
17739
+
17740
+ @typing_extensions.final
17741
+ class Artifact(google.protobuf.message.Message):
17742
+ """Artifact is a resource that represents a file stored in Clarifai's storage system.
17743
+ It should have a reference to upload resource which contains the actual file location and metadata.
17744
+ """
17745
+
17746
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor
17747
+
17748
+ ID_FIELD_NUMBER: builtins.int
17749
+ USER_ID_FIELD_NUMBER: builtins.int
17750
+ APP_ID_FIELD_NUMBER: builtins.int
17751
+ ARTIFACT_VERSION_FIELD_NUMBER: builtins.int
17752
+ CREATED_AT_FIELD_NUMBER: builtins.int
17753
+ MODIFIED_AT_FIELD_NUMBER: builtins.int
17754
+ DELETED_AT_FIELD_NUMBER: builtins.int
17755
+ id: builtins.str
17756
+ """ID of artifact"""
17757
+ user_id: builtins.str
17758
+ """User ID that this Artifact belongs to"""
17759
+ app_id: builtins.str
17760
+ """Application ID that this Artifact belongs to"""
17761
+ @property
17762
+ def artifact_version(self) -> global___ArtifactVersion:
17763
+ """Reference to the artifact version resource that represents a specific version of the artifact"""
17764
+ @property
17765
+ def created_at(self) -> google.protobuf.timestamp_pb2.Timestamp:
17766
+ """When the artifact was created."""
17767
+ @property
17768
+ def modified_at(self) -> google.protobuf.timestamp_pb2.Timestamp:
17769
+ """Most recent time when the artifact was updated."""
17770
+ @property
17771
+ def deleted_at(self) -> google.protobuf.timestamp_pb2.Timestamp:
17772
+ """When the artifact was deleted."""
17773
+ def __init__(
17774
+ self,
17775
+ *,
17776
+ id: builtins.str = ...,
17777
+ user_id: builtins.str = ...,
17778
+ app_id: builtins.str = ...,
17779
+ artifact_version: global___ArtifactVersion | None = ...,
17780
+ created_at: google.protobuf.timestamp_pb2.Timestamp | None = ...,
17781
+ modified_at: google.protobuf.timestamp_pb2.Timestamp | None = ...,
17782
+ deleted_at: google.protobuf.timestamp_pb2.Timestamp | None = ...,
17783
+ ) -> None: ...
17784
+ def HasField(
17785
+ self,
17786
+ field_name: typing_extensions.Literal[
17787
+ "artifact_version",
17788
+ b"artifact_version",
17789
+ "created_at",
17790
+ b"created_at",
17791
+ "deleted_at",
17792
+ b"deleted_at",
17793
+ "modified_at",
17794
+ b"modified_at",
17795
+ ],
17796
+ ) -> builtins.bool: ...
17797
+ def ClearField(
17798
+ self,
17799
+ field_name: typing_extensions.Literal[
17800
+ "app_id",
17801
+ b"app_id",
17802
+ "artifact_version",
17803
+ b"artifact_version",
17804
+ "created_at",
17805
+ b"created_at",
17806
+ "deleted_at",
17807
+ b"deleted_at",
17808
+ "id",
17809
+ b"id",
17810
+ "modified_at",
17811
+ b"modified_at",
17812
+ "user_id",
17813
+ b"user_id",
17814
+ ],
17815
+ ) -> None: ...
17816
+
17817
+ global___Artifact = Artifact
17818
+
17819
+ @typing_extensions.final
17820
+ class ArtifactVersion(google.protobuf.message.Message):
17821
+ """ArtifactVersion represents a specific version of the artifact."""
17822
+
17823
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor
17824
+
17825
+ ID_FIELD_NUMBER: builtins.int
17826
+ DESCRIPTION_FIELD_NUMBER: builtins.int
17827
+ ARTIFACT_FIELD_NUMBER: builtins.int
17828
+ UPLOAD_FIELD_NUMBER: builtins.int
17829
+ VISIBILITY_FIELD_NUMBER: builtins.int
17830
+ EXPIRES_AT_FIELD_NUMBER: builtins.int
17831
+ CREATED_AT_FIELD_NUMBER: builtins.int
17832
+ MODIFIED_AT_FIELD_NUMBER: builtins.int
17833
+ DELETED_AT_FIELD_NUMBER: builtins.int
17834
+ id: builtins.str
17835
+ """ID of artifact version"""
17836
+ description: builtins.str
17837
+ """Description of the artifact version"""
17838
+ @property
17839
+ def artifact(self) -> global___Artifact:
17840
+ """Reference to the artifact resource"""
17841
+ @property
17842
+ def upload(self) -> global___Upload:
17843
+ """Reference to the upload resource which contains the actual file location and metadata"""
17844
+ @property
17845
+ def visibility(self) -> global___Visibility:
17846
+ """The visibility field represents whether this is privately/publicly visible.
17847
+ To be visible to the public the App that contains it AND the User that contains the App must
17848
+ also be publicly visible.
17849
+ """
17850
+ @property
17851
+ def expires_at(self) -> google.protobuf.timestamp_pb2.Timestamp:
17852
+ """When the artifact version will expire and be deleted.
17853
+ The format is https://www.ietf.org/rfc/rfc3339.txt.
17854
+ Example: "2006-01-02T15:04:05.999999Z".
17855
+ If not set, the artifact version will be retained indefinitely
17856
+ and will not be automatically deleted by lifecycle policies.
17857
+ """
17858
+ @property
17859
+ def created_at(self) -> google.protobuf.timestamp_pb2.Timestamp:
17860
+ """When the artifact version was created."""
17861
+ @property
17862
+ def modified_at(self) -> google.protobuf.timestamp_pb2.Timestamp:
17863
+ """Most recent time when the artifact version was updated."""
17864
+ @property
17865
+ def deleted_at(self) -> google.protobuf.timestamp_pb2.Timestamp:
17866
+ """When the artifact version was deleted."""
17867
+ def __init__(
17868
+ self,
17869
+ *,
17870
+ id: builtins.str = ...,
17871
+ description: builtins.str = ...,
17872
+ artifact: global___Artifact | None = ...,
17873
+ upload: global___Upload | None = ...,
17874
+ visibility: global___Visibility | None = ...,
17875
+ expires_at: google.protobuf.timestamp_pb2.Timestamp | None = ...,
17876
+ created_at: google.protobuf.timestamp_pb2.Timestamp | None = ...,
17877
+ modified_at: google.protobuf.timestamp_pb2.Timestamp | None = ...,
17878
+ deleted_at: google.protobuf.timestamp_pb2.Timestamp | None = ...,
17879
+ ) -> None: ...
17880
+ def HasField(
17881
+ self,
17882
+ field_name: typing_extensions.Literal[
17883
+ "artifact",
17884
+ b"artifact",
17885
+ "created_at",
17886
+ b"created_at",
17887
+ "deleted_at",
17888
+ b"deleted_at",
17889
+ "expires_at",
17890
+ b"expires_at",
17891
+ "modified_at",
17892
+ b"modified_at",
17893
+ "upload",
17894
+ b"upload",
17895
+ "visibility",
17896
+ b"visibility",
17897
+ ],
17898
+ ) -> builtins.bool: ...
17899
+ def ClearField(
17900
+ self,
17901
+ field_name: typing_extensions.Literal[
17902
+ "artifact",
17903
+ b"artifact",
17904
+ "created_at",
17905
+ b"created_at",
17906
+ "deleted_at",
17907
+ b"deleted_at",
17908
+ "description",
17909
+ b"description",
17910
+ "expires_at",
17911
+ b"expires_at",
17912
+ "id",
17913
+ b"id",
17914
+ "modified_at",
17915
+ b"modified_at",
17916
+ "upload",
17917
+ b"upload",
17918
+ "visibility",
17919
+ b"visibility",
17920
+ ],
17921
+ ) -> None: ...
17922
+
17923
+ global___ArtifactVersion = ArtifactVersion