clarifai 10.10.1__py3-none-any.whl → 10.11.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.
@@ -108,6 +108,7 @@ def main():
108
108
  runner_id="n/a",
109
109
  nodepool_id="n/a",
110
110
  compute_cluster_id="n/a",
111
+ user_id="n/a",
111
112
  health_check_port=None, # not needed when running local server
112
113
  )
113
114
 
@@ -127,6 +128,7 @@ def main():
127
128
  service_pb2_grpc.add_V2Servicer_to_server(servicer, server)
128
129
  server.start()
129
130
  logger.info("Started server on port %s", parsed_args.port)
131
+ logger.info(f"Access the model at http://localhost:{parsed_args.port}")
130
132
  server.wait_for_termination()
131
133
  else: # start the runner with the proper env variables and as a runner protocol.
132
134
 
@@ -0,0 +1,40 @@
1
+ PYTHON_BASE_IMAGE = 'public.ecr.aws/clarifai-models/python-base:{python_version}'
2
+ TORCH_BASE_IMAGE = 'public.ecr.aws/clarifai-models/torch:{torch_version}-py{python_version}-cuda{cuda_version}'
3
+
4
+ # List of available python base images
5
+ AVAILABLE_PYTHON_IMAGES = ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
6
+
7
+ DEFAULT_PYTHON_VERSION = 3.11
8
+
9
+ # List of available torch images
10
+ AVAILABLE_TORCH_IMAGES = [
11
+ '1.13.1-py3.8-cuda117',
12
+ '1.13.1-py3.9-cuda117',
13
+ '1.13.1-py3.10-cuda117',
14
+ '2.1.2-py3.8-cuda121',
15
+ '2.1.2-py3.9-cuda121',
16
+ '2.1.2-py3.10-cuda121',
17
+ '2.1.2-py3.11-cuda121',
18
+ '2.2.2-py3.8-cuda121',
19
+ '2.2.2-py3.9-cuda121',
20
+ '2.2.2-py3.10-cuda121',
21
+ '2.2.2-py3.11-cuda121',
22
+ '2.2.2-py3.12-cuda121',
23
+ '2.3.1-py3.8-cuda121',
24
+ '2.3.1-py3.9-cuda121',
25
+ '2.3.1-py3.10-cuda121',
26
+ '2.3.1-py3.11-cuda121',
27
+ '2.3.1-py3.12-cuda121',
28
+ '2.4.1-py3.8-cuda124',
29
+ '2.4.1-py3.9-cuda124',
30
+ '2.4.1-py3.10-cuda124',
31
+ '2.4.1-py3.11-cuda124',
32
+ '2.4.1-py3.12-cuda124',
33
+ '2.5.1-py3.9-cuda124',
34
+ '2.5.1-py3.10-cuda124',
35
+ '2.5.1-py3.11-cuda124',
36
+ '2.5.1-py3.12-cuda124',
37
+ ]
38
+ CONCEPTS_REQUIRED_MODEL_TYPE = [
39
+ 'visual-classifier', 'visual-detector', 'visual-segmenter', 'text-classifier'
40
+ ]
@@ -6,25 +6,32 @@ from clarifai.utils.logging import logger
6
6
 
7
7
 
8
8
  def download_input(input):
9
+ _download_input_data(input.data)
10
+ if input.data.parts:
11
+ for i in range(len(input.data.parts)):
12
+ _download_input_data(input.data.parts[i].data)
13
+
14
+
15
+ def _download_input_data(input_data):
9
16
  """
10
17
  This function will download any urls that are not already bytes.
11
18
  """
12
- if input.data.image.url and not input.data.image.base64:
19
+ if input_data.image.url and not input_data.image.base64:
13
20
  # Download the image
14
- with fsspec.open(input.data.image.url, 'rb') as f:
15
- input.data.image.base64 = f.read()
16
- if input.data.video.url and not input.data.video.base64:
21
+ with fsspec.open(input_data.image.url, 'rb') as f:
22
+ input_data.image.base64 = f.read()
23
+ if input_data.video.url and not input_data.video.base64:
17
24
  # Download the video
18
- with fsspec.open(input.data.video.url, 'rb') as f:
19
- input.data.video.base64 = f.read()
20
- if input.data.audio.url and not input.data.audio.base64:
25
+ with fsspec.open(input_data.video.url, 'rb') as f:
26
+ input_data.video.base64 = f.read()
27
+ if input_data.audio.url and not input_data.audio.base64:
21
28
  # Download the audio
22
- with fsspec.open(input.data.audio.url, 'rb') as f:
23
- input.data.audio.base64 = f.read()
24
- if input.data.text.url and not input.data.text.raw:
29
+ with fsspec.open(input_data.audio.url, 'rb') as f:
30
+ input_data.audio.base64 = f.read()
31
+ if input_data.text.url and not input_data.text.raw:
25
32
  # Download the text
26
- with fsspec.open(input.data.text.url, 'r') as f:
27
- input.data.text.raw = f.read()
33
+ with fsspec.open(input_data.text.url, 'r') as f:
34
+ input_data.text.raw = f.read()
28
35
 
29
36
 
30
37
  def ensure_urls_downloaded(request, max_threads=128):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: clarifai
3
- Version: 10.10.1
3
+ Version: 10.11.1
4
4
  Summary: Clarifai Python SDK
5
5
  Home-page: https://github.com/Clarifai/clarifai-python
6
6
  Author: Clarifai
@@ -20,22 +20,21 @@ Classifier: Operating System :: OS Independent
20
20
  Requires-Python: >=3.8
21
21
  Description-Content-Type: text/markdown
22
22
  License-File: LICENSE
23
- Requires-Dist: clarifai-grpc >=10.9.11
24
- Requires-Dist: clarifai-protocol >=0.0.6
25
- Requires-Dist: numpy >=1.22.0
26
- Requires-Dist: tqdm >=4.65.0
27
- Requires-Dist: tritonclient >=2.34.0
28
- Requires-Dist: rich >=13.4.2
29
- Requires-Dist: PyYAML >=6.0.1
30
- Requires-Dist: schema ==0.7.5
31
- Requires-Dist: Pillow >=9.5.0
32
- Requires-Dist: inquirerpy ==0.3.4
33
- Requires-Dist: tabulate >=0.9.0
34
- Requires-Dist: protobuf ==5.27.3
35
- Requires-Dist: fsspec ==2024.6.1
36
- Requires-Dist: click ==8.1.7
23
+ Requires-Dist: clarifai-grpc>=10.11.2
24
+ Requires-Dist: clarifai-protocol>=0.0.14
25
+ Requires-Dist: numpy>=1.22.0
26
+ Requires-Dist: tqdm>=4.65.0
27
+ Requires-Dist: tritonclient>=2.34.0
28
+ Requires-Dist: rich>=13.4.2
29
+ Requires-Dist: PyYAML>=6.0.1
30
+ Requires-Dist: schema==0.7.5
31
+ Requires-Dist: Pillow>=9.5.0
32
+ Requires-Dist: inquirerpy==0.3.4
33
+ Requires-Dist: tabulate>=0.9.0
34
+ Requires-Dist: fsspec==2024.6.1
35
+ Requires-Dist: click==8.1.7
37
36
  Provides-Extra: all
38
- Requires-Dist: pycocotools ==2.0.6 ; extra == 'all'
37
+ Requires-Dist: pycocotools==2.0.6; extra == "all"
39
38
 
40
39
  <h1 align="center">
41
40
  <a href="https://www.clarifai.com/"><img alt="Clarifai" title="Clarifai" src="https://github.com/user-attachments/assets/623b883b-7fe5-4b95-bbfa-8691f5779af4"></a>
@@ -73,6 +72,10 @@ Give the repo a star ⭐
73
72
 
74
73
  * **[Installation](#rocket-installation)**
75
74
  * **[Getting Started](#memo-getting-started)**
75
+ * **[Compute Orchestration](#rocket-compute-orchestration)**
76
+ * [Cluster Operations](#cluster-operations)
77
+ * [Nodepool Operations](#nodepool-operations)
78
+ * [Depolyment Operations](#deployment-operations)
76
79
  * **[Interacting with Datasets](#floppy_disk-interacting-with-datasets)**
77
80
  * **[Interacting with Inputs](#floppy_disk-interacting-with-inputs)**
78
81
  * [Input Upload](#input-upload)
@@ -157,6 +160,73 @@ client = User(user_id="user_id", pat="your personal access token")
157
160
  ```
158
161
 
159
162
 
163
+ ## :rocket: Compute Orchestration
164
+
165
+ Clarifai’s Compute Orchestration offers a streamlined solution for managing the infrastructure required for training, deploying, and scaling machine learning models and workflows.
166
+
167
+ This flexible system supports any compute instance — across various hardware providers and deployment methods — and provides automatic scaling to match workload demands. [More Details](https://www.clarifai.com/products/compute-orchestration)
168
+
169
+ #### Cluster Operations
170
+ ```python
171
+ from clarifai.client.user import User
172
+ client = User(user_id="user_id",base_url="https://api.clarifai.com")
173
+
174
+ # Create a new compute cluster
175
+ compute_cluster = client.create_compute_cluster(compute_cluster_id="demo-id",config_filepath="computer_cluster_config.yaml")
176
+
177
+ # List Clusters
178
+ all_compute_clusters = list(client.list_compute_clusters())
179
+ print(all_compute_clusters)
180
+ ```
181
+ ##### [Example Cluster Config](https://github.com/Clarifai/examples/blob/main/ComputeOrchestration/configs/compute_cluster_config.yaml)
182
+
183
+
184
+
185
+ #### Nodepool Operations
186
+ ```python
187
+ from clarifai.client.compute_cluster import ComputeCluster
188
+
189
+ # Initialize the ComputeCluster instance
190
+ compute_cluster = ComputeCluster(user_id="user_id",compute_cluster_id="demo-id")
191
+
192
+ # Create a new nodepool
193
+ nodepool = compute_cluster.create_nodepool(nodepool_id="demo-nodepool-id",config_filepath="nodepool_config.yaml")
194
+
195
+ #Get a nodepool
196
+ nodepool = compute_cluster.nodepool(nodepool_id="demo-nodepool-id")
197
+ print(nodepool)
198
+
199
+ # List nodepools
200
+ all_nodepools = list(compute_cluster.list_nodepools())
201
+ print(all_nodepools)
202
+ ```
203
+ ##### [Example Nodepool config](https://github.com/Clarifai/examples/blob/main/ComputeOrchestration/configs/nodepool_config.yaml)
204
+
205
+ #### Deployment Operations
206
+ ```python
207
+ from clarifai.client.nodepool import Nodepool
208
+
209
+ # Initialize the Nodepool instance
210
+ nodepool = Nodepool(user_id="user_id",nodepool_id="demo-nodepool-id")
211
+
212
+ # Create a new deployment
213
+ deployment = nodepool.create_deployment(deployment_id="demo-deployment-id",config_filepath="deployment_config.yaml")
214
+
215
+ #Get a deployment
216
+ deployment = nodepool.deployment(nodepool_id="demo-deployment-id")
217
+ print(deployment)
218
+
219
+ # List deployments
220
+ all_deployments = list(nodepool.list_deployments())
221
+ print(all_deployments)
222
+
223
+ ```
224
+ ##### [Example Deployment config](https://github.com/Clarifai/examples/blob/main/ComputeOrchestration/configs/deployment_config.yaml)
225
+
226
+ #### Compute Orchestration CLI Operations
227
+ Refer Here: https://github.com/Clarifai/clarifai-python/tree/master/clarifai/cli
228
+
229
+
160
230
  ## :floppy_disk: Interacting with Datasets
161
231
 
162
232
  Clarifai datasets help in managing datasets used for model training and evaluation. It provides functionalities like creating datasets,uploading datasets, retrying failed uploads from logs and exporting datasets as .zip files.
@@ -1,4 +1,4 @@
1
- clarifai/__init__.py,sha256=9zsqePD7LCjMaH7l_9eXWc_FNCxosvR1TP75yQryev4,24
1
+ clarifai/__init__.py,sha256=FW_6Eb2k6BFCnOXd3YfZT6V1LNiTbns6HVOCriUm7sE,24
2
2
  clarifai/cli.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
3
  clarifai/errors.py,sha256=RwzTajwds51wLD0MVlMC5kcpBnzRpreDLlazPSBZxrg,2605
4
4
  clarifai/versions.py,sha256=jctnczzfGk_S3EnVqb2FjRKfSREkNmvNEwAAa_VoKiQ,222
@@ -7,7 +7,7 @@ clarifai/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
7
  clarifai/cli/base.py,sha256=okuBNlMmLEQw9-0f4yzemCtneNNRTVXUugCwD58-ZtQ,3417
8
8
  clarifai/cli/compute_cluster.py,sha256=N2dNQNJEPg9nxsb8x2igEzYuGRzjn7l4kNttjFIxmhI,1827
9
9
  clarifai/cli/deployment.py,sha256=sUEuz5-rtozMx8deVcJXLi6lHsP2jc8x3y2MpUAVfqY,2506
10
- clarifai/cli/model.py,sha256=lp_5FGO-lWb07c7nNHEsJ6NA0mxVyvL3wqU5N-_sbEU,1934
10
+ clarifai/cli/model.py,sha256=_l-vIqQpVF54SyWadHz-_6-6tS8SYmdDJmpUhKGv9AM,10475
11
11
  clarifai/cli/nodepool.py,sha256=yihxS_rIFoBBKzRlqBX8Ab42iPpBMJrJFsk8saph6ms,3049
12
12
  clarifai/client/__init__.py,sha256=xI1U0l5AZdRThvQAXCLsd9axxyFzXXJ22m8LHqVjQRU,662
13
13
  clarifai/client/app.py,sha256=6pckYme1urV2YJjLIYfeZ-vH0Z5YSQa51jzIMcEfwug,38342
@@ -17,7 +17,7 @@ clarifai/client/dataset.py,sha256=AIzwbYs-ExkmUqW9nuEJgpW8-D7rjA1PtopU5Iu6YZE,32
17
17
  clarifai/client/deployment.py,sha256=w7Y6pA1rYG4KRK1SwusRZc2sQRXlG8wezuVdzSWpCo0,2586
18
18
  clarifai/client/input.py,sha256=GvrPV2chThNjimekBIleuIr6AD10_wrfc-1Hm5C4NQ8,45648
19
19
  clarifai/client/lister.py,sha256=03KGMvs5RVyYqxLsSrWhNc34I8kiF1Ph0NeyEwu7nMU,2082
20
- clarifai/client/model.py,sha256=WmLBPm_rDzbPR_Cxo8gnntBnPiWFt3gYKiiKuJ9lH04,84652
20
+ clarifai/client/model.py,sha256=8koRWV_-cLLtZYFHQzNxMFw2X1VXAZ6aJI-1cOp6r4U,84655
21
21
  clarifai/client/module.py,sha256=FTkm8s9m-EaTKN7g9MnLhGJ9eETUfKG7aWZ3o1RshYs,4204
22
22
  clarifai/client/nodepool.py,sha256=la3vTFrO4LX8zm2eQ5jqf2L0-kQ63Dano8FibadoZbk,10152
23
23
  clarifai/client/search.py,sha256=GaPWN6JmTQGZaCHr6U1yv0zqR6wKFl7i9IVLg2ul1CI,14254
@@ -36,7 +36,7 @@ clarifai/constants/search.py,sha256=yYEqTaFg-KdnpJE_Ytp-EPVHIIC395iNtZrpVlLIf4o,
36
36
  clarifai/constants/workflow.py,sha256=cECq1xdvf44MCdtK2AbkiuuwhyL-6OWZdQfYbsLKy_o,33
37
37
  clarifai/datasets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
38
38
  clarifai/datasets/export/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
39
- clarifai/datasets/export/inputs_annotations.py,sha256=vqe3CBlWTgeBnIoRnjwIRnOj5QmH1480efSk8tv2mCg,9796
39
+ clarifai/datasets/export/inputs_annotations.py,sha256=3AtUBrMIjw8H3ehDsJFYcBFoAZ1QKQo1hXTMsHh8f20,10159
40
40
  clarifai/datasets/upload/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
41
41
  clarifai/datasets/upload/base.py,sha256=UIc0ufyIBCrb83_sFpv21L8FshsX4nwsLYQkdlJfzD4,2357
42
42
  clarifai/datasets/upload/features.py,sha256=jv2x7jGZKS-LMt87sEZNBwwOskHbP26XTMjoiaSA5pg,2024
@@ -58,23 +58,24 @@ clarifai/modules/css.py,sha256=kadCEunmyh5h2yf0-4aysE3ZcZ6qaQcxuAgDXS96yF8,2020
58
58
  clarifai/modules/pages.py,sha256=iOoM3RNRMgXlV0qBqcdQofxoXo2RuRQh0h9c9BIS0-I,1383
59
59
  clarifai/modules/style.css,sha256=j7FNPZVhLPj35vvBksAJ90RuX5sLuqzDR5iM2WIEhiA,6073
60
60
  clarifai/rag/__init__.py,sha256=wu3PzAzo7uqgrEzuaC9lY_3gj1HFiR3GU3elZIKTT5g,40
61
- clarifai/rag/rag.py,sha256=L10TcV9E0PF1aJ2Nn1z1x6WVoUoGxbKt20lQXg8ksqo,12594
61
+ clarifai/rag/rag.py,sha256=bqUWnfdf91OYMucEK0_rJXDwg0oKjz5c7eda-9CPXu8,12680
62
62
  clarifai/rag/utils.py,sha256=yr1jAcbpws4vFGBqlAwPPE7v1DRba48g8gixLFw8OhQ,4070
63
63
  clarifai/runners/__init__.py,sha256=3vr4RVvN1IRy2SxJpyycAAvrUBbH-mXR7pqUmu4w36A,412
64
- clarifai/runners/server.py,sha256=CVLrv2DjzCvKVXcJ4SWvcFWUZq0bdlBmyEpfVlfgT2A,4902
65
- clarifai/runners/dockerfile_template/Dockerfile.template,sha256=-T38Rscpjot8WVuUTUq1_N0xz_gg653FOHV4XQYGG-U,1453
64
+ clarifai/runners/server.py,sha256=Z46BCUqpb3GpcD59qJKb7rL5dpl6vzMYNG3o0MGzox8,5001
65
+ clarifai/runners/dockerfile_template/Dockerfile.template,sha256=mW3Bdu9elMpI75UbBD0JX8rS085FXEPUPDVXkHibxiE,1548
66
66
  clarifai/runners/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
67
- clarifai/runners/models/base_typed_model.py,sha256=OnAk08Lo2Y1fGiBc6JJ6UvJ8P435cTsikTNYDkStDpI,7790
67
+ clarifai/runners/models/base_typed_model.py,sha256=DWEUK5ge9NVZE6LkT3BNTFYjYMPHz-nDgPA48Y0DGXU,7859
68
68
  clarifai/runners/models/model_class.py,sha256=9JSPAr4U4K7xI0kSl-q0mHB06zknm2OR-8XIgBCto94,1611
69
- clarifai/runners/models/model_run_locally.py,sha256=xbNcD0TMRlk52cUjJH-qenlkeiwS4YcOeb8eYy7KAEI,6583
69
+ clarifai/runners/models/model_run_locally.py,sha256=OhzQbmaV8Wwgs2H0KhdDF6Z7bYSaIh4RRA0QwSiv5vY,20644
70
70
  clarifai/runners/models/model_runner.py,sha256=3vzoastQxkGRDK8T9aojDsLNBb9A3IiKm6YmbFrE9S0,6241
71
71
  clarifai/runners/models/model_servicer.py,sha256=X4715PVA5PBurRTYcwSEudg8fShGV6InAF4mmRlRcHg,2826
72
- clarifai/runners/models/model_upload.py,sha256=ocd6vnm9Pms9AMwi7j5yTjIHQY6LS9yopTTX6uocJvE,20434
72
+ clarifai/runners/models/model_upload.py,sha256=xQ0AqeBVePPwmMVM5uOiXRTRV09U-du2FduKv7Qgl-A,20087
73
73
  clarifai/runners/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
74
+ clarifai/runners/utils/const.py,sha256=zINrIjDESUykq6xMLKNghwJ6N8qxDAtAJ6-1bH8VdOw,1238
74
75
  clarifai/runners/utils/data_handler.py,sha256=sxy9zlAgI6ETuxCQhUgEXAn2GCsaW1GxpK6GTaMne0g,6966
75
76
  clarifai/runners/utils/data_utils.py,sha256=R1iQ82TuQ9JwxCJk8yEB1Lyb0BYVhVbWJI9YDi1zGOs,318
76
77
  clarifai/runners/utils/loader.py,sha256=1oktDUQA1Lpv0NiCXFwoxpp0jqqbvB7sWvpymwyWY2E,4243
77
- clarifai/runners/utils/url_fetcher.py,sha256=-Hwjb1SURszn7zUVwi4Of0-nrksfZy-uqT4SvPGCgSU,1446
78
+ clarifai/runners/utils/url_fetcher.py,sha256=v_8JOWmkyFAzsBulsieKX7Nfjy1Yg7wGSZeqfEvw2cg,1640
78
79
  clarifai/schema/search.py,sha256=JjTi8ammJgZZ2OGl4K6tIA4zEJ1Fr2ASZARXavI1j5c,2448
79
80
  clarifai/urls/helper.py,sha256=tjoMGGHuWX68DUB0pk4MEjrmFsClUAQj2jmVEM_Sy78,4751
80
81
  clarifai/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -91,9 +92,9 @@ clarifai/workflows/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuF
91
92
  clarifai/workflows/export.py,sha256=vICRhIreqDSShxLKjHNM2JwzKsf1B4fdXB0ciMcA70k,1945
92
93
  clarifai/workflows/utils.py,sha256=nGeB_yjVgUO9kOeKTg4OBBaBz-AwXI3m-huSVj-9W18,1924
93
94
  clarifai/workflows/validate.py,sha256=yJq03MaJqi5AK3alKGJJBR89xmmjAQ31sVufJUiOqY8,2556
94
- clarifai-10.10.1.dist-info/LICENSE,sha256=mUqF_d12-qE2n41g7C5_sq-BMLOcj6CNN-jevr15YHU,555
95
- clarifai-10.10.1.dist-info/METADATA,sha256=01eG2EIX_sgN8tgNkHnAD782mje2gLrspqrAFUEmSic,19566
96
- clarifai-10.10.1.dist-info/WHEEL,sha256=R06PA3UVYHThwHvxuRWMqaGcr-PuniXahwjmQRFMEkY,91
97
- clarifai-10.10.1.dist-info/entry_points.txt,sha256=X9FZ4Z-i_r2Ud1RpZ9sNIFYuu_-9fogzCMCRUD9hyX0,51
98
- clarifai-10.10.1.dist-info/top_level.txt,sha256=wUMdCQGjkxaynZ6nZ9FAnvBUCgp5RJUVFSy2j-KYo0s,9
99
- clarifai-10.10.1.dist-info/RECORD,,
95
+ clarifai-10.11.1.dist-info/LICENSE,sha256=mUqF_d12-qE2n41g7C5_sq-BMLOcj6CNN-jevr15YHU,555
96
+ clarifai-10.11.1.dist-info/METADATA,sha256=w46FTa1y_xtH2ZXLrCYI9dC0o-Uh48q7gqC_kXYZ50A,22220
97
+ clarifai-10.11.1.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
98
+ clarifai-10.11.1.dist-info/entry_points.txt,sha256=X9FZ4Z-i_r2Ud1RpZ9sNIFYuu_-9fogzCMCRUD9hyX0,51
99
+ clarifai-10.11.1.dist-info/top_level.txt,sha256=wUMdCQGjkxaynZ6nZ9FAnvBUCgp5RJUVFSy2j-KYo0s,9
100
+ clarifai-10.11.1.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.5.0)
2
+ Generator: setuptools (75.6.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5