truefoundry 0.6.6__py3-none-any.whl → 0.7.0rc3__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.
Potentially problematic release.
This version of truefoundry might be problematic. Click here for more details.
- truefoundry/_client.py +1 -1
- truefoundry/deploy/__init__.py +1 -0
- truefoundry/deploy/_autogen/models.py +48 -16
- truefoundry/deploy/v2/lib/deploy.py +0 -25
- truefoundry/deploy/v2/lib/patched_models.py +5 -88
- {truefoundry-0.6.6.dist-info → truefoundry-0.7.0rc3.dist-info}/METADATA +3 -3
- {truefoundry-0.6.6.dist-info → truefoundry-0.7.0rc3.dist-info}/RECORD +9 -9
- {truefoundry-0.6.6.dist-info → truefoundry-0.7.0rc3.dist-info}/WHEEL +0 -0
- {truefoundry-0.6.6.dist-info → truefoundry-0.7.0rc3.dist-info}/entry_points.txt +0 -0
truefoundry/_client.py
CHANGED
truefoundry/deploy/__init__.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# generated by datamodel-codegen:
|
|
2
2
|
# filename: application.json
|
|
3
|
-
# timestamp: 2025-04-
|
|
3
|
+
# timestamp: 2025-04-21T06:26:10+00:00
|
|
4
4
|
|
|
5
5
|
from __future__ import annotations
|
|
6
6
|
|
|
@@ -360,6 +360,13 @@ class Image(BaseModel):
|
|
|
360
360
|
)
|
|
361
361
|
|
|
362
362
|
|
|
363
|
+
class JobEvent(str, Enum):
|
|
364
|
+
START = "START"
|
|
365
|
+
SUCCEEDED = "SUCCEEDED"
|
|
366
|
+
FAILED = "FAILED"
|
|
367
|
+
TERMINATED = "TERMINATED"
|
|
368
|
+
|
|
369
|
+
|
|
363
370
|
class Claim(BaseModel):
|
|
364
371
|
key: str
|
|
365
372
|
values: List[str]
|
|
@@ -466,10 +473,6 @@ class NodeSelector(BaseModel):
|
|
|
466
473
|
"""
|
|
467
474
|
|
|
468
475
|
type: Literal["node_selector"] = Field(..., description="")
|
|
469
|
-
gpu_type: Optional[str] = Field(
|
|
470
|
-
None,
|
|
471
|
-
description="Name of the Nvidia GPU. One of [P4, P100, V100, T4, A10G, A100_40GB, A100_80GB]\nOne instance of the card contains the following amount of memory -\nP4: 8 GB, P100: 16 GB, V100: 16 GB, T4: 16 GB, A10G: 24 GB, A100_40GB: 40GB, A100_80GB: 80 GB",
|
|
472
|
-
)
|
|
473
476
|
instance_families: Optional[List[str]] = Field(
|
|
474
477
|
None,
|
|
475
478
|
description="Instance family of the underlying machine to use. Multiple instance families can be supplied.\nThe workload is guaranteed to be scheduled on one of them.",
|
|
@@ -699,10 +702,6 @@ class Resources(BaseModel):
|
|
|
699
702
|
2000,
|
|
700
703
|
description="Disk storage limit. The unit of memory is in megabytes(MB). Exceeding this limit will result in eviction.\nIt should be greater than the request. This is ephemeral storage and will be wiped out on pod restarts or eviction",
|
|
701
704
|
)
|
|
702
|
-
gpu_count: Optional[conint(ge=0, le=16)] = Field(
|
|
703
|
-
None,
|
|
704
|
-
description="Count of GPUs to provide to the application\nNote the exact count and max count available for a given GPU type depends on cloud provider and cluster type.",
|
|
705
|
-
)
|
|
706
705
|
shared_memory_size: Optional[conint(ge=64, le=2000000)] = Field(
|
|
707
706
|
None,
|
|
708
707
|
description="Define the shared memory requirements for your workload. Machine learning libraries like Pytorch can use Shared Memory\nfor inter-process communication. If you use this, we will mount a `tmpfs` backed volume at the `/dev/shm` directory.\nAny usage will also count against the workload's memory limit (`resources.memory_limit`) along with your workload's memory usage.\nIf the overall usage goes above `resources.memory_limit` the user process may get killed.\nShared Memory Size cannot be more than the defined Memory Limit for the workload.",
|
|
@@ -829,6 +828,16 @@ class ServiceAutoscaling(BaseAutoscaling):
|
|
|
829
828
|
)
|
|
830
829
|
|
|
831
830
|
|
|
831
|
+
class SlackBot(BaseModel):
|
|
832
|
+
type: Literal["slack-bot"] = Field(..., description="")
|
|
833
|
+
notification_channel: constr(min_length=1) = Field(
|
|
834
|
+
..., description="Specify the notification channel to send alerts to"
|
|
835
|
+
)
|
|
836
|
+
channels: List[constr(regex=r"^#[a-z0-9\-_]{2,80}$")] = Field(
|
|
837
|
+
..., description="List of channels to send messages to."
|
|
838
|
+
)
|
|
839
|
+
|
|
840
|
+
|
|
832
841
|
class SlackWebhook(BaseModel):
|
|
833
842
|
type: Literal["slack-webhook"] = Field(..., description="")
|
|
834
843
|
notification_channel: constr(min_length=1) = Field(
|
|
@@ -856,6 +865,26 @@ class SparkExecutorFixedInstances(BaseModel):
|
|
|
856
865
|
count: conint(ge=0, le=500) = Field(1, description="Number of instances to start")
|
|
857
866
|
|
|
858
867
|
|
|
868
|
+
class SparkImage(BaseModel):
|
|
869
|
+
"""
|
|
870
|
+
Describes that we are using a pre-built image stored in a Docker Image registry
|
|
871
|
+
"""
|
|
872
|
+
|
|
873
|
+
type: Literal["image"] = Field(..., description="")
|
|
874
|
+
spark_version: str = Field(
|
|
875
|
+
"3.5.2",
|
|
876
|
+
description="Spark version should match the spark version installed in the image.",
|
|
877
|
+
)
|
|
878
|
+
image_uri: constr(regex=r"^\S*$") = Field(
|
|
879
|
+
...,
|
|
880
|
+
description="The image URI. Specify the name of the image and the tag.\nIf the image is in Dockerhub, you can skip registry-url (for e.g. `tensorflow/tensorflow`).\nYou can use an image from a private registry using Advanced fields",
|
|
881
|
+
)
|
|
882
|
+
docker_registry: Optional[str] = Field(
|
|
883
|
+
None,
|
|
884
|
+
description="FQN of the container registry. If you can't find your registry here,\nadd it through the [Integrations](/integrations?tab=docker-registry) page",
|
|
885
|
+
)
|
|
886
|
+
|
|
887
|
+
|
|
859
888
|
class SparkJobJavaEntrypoint(BaseModel):
|
|
860
889
|
type: Literal["java"] = Field(..., description="")
|
|
861
890
|
main_application_file: str = Field(
|
|
@@ -1031,6 +1060,13 @@ class WorkbenchImage(BaseModel):
|
|
|
1031
1060
|
)
|
|
1032
1061
|
|
|
1033
1062
|
|
|
1063
|
+
class WorkflowEvent(str, Enum):
|
|
1064
|
+
SUCCEEDED = "SUCCEEDED"
|
|
1065
|
+
FAILED = "FAILED"
|
|
1066
|
+
ABORTED = "ABORTED"
|
|
1067
|
+
TIMED_OUT = "TIMED_OUT"
|
|
1068
|
+
|
|
1069
|
+
|
|
1034
1070
|
class ArtifactsDownload(BaseModel):
|
|
1035
1071
|
"""
|
|
1036
1072
|
Download and cache models in a volume to enhance loading speeds and reduce costs by avoiding repeated downloads. [Docs](https://docs.truefoundry.com/docs/download-and-cache-models)
|
|
@@ -1385,14 +1421,10 @@ class SparkJob(BaseModel):
|
|
|
1385
1421
|
name: constr(regex=r"^[a-z](?:[a-z0-9]|-(?!-)){1,30}[a-z0-9]$") = Field(
|
|
1386
1422
|
..., description="Name of the job"
|
|
1387
1423
|
)
|
|
1424
|
+
image: SparkImage
|
|
1388
1425
|
entrypoint: Union[
|
|
1389
1426
|
SparkJobPythonEntrypoint, SparkJobScalaEntrypoint, SparkJobJavaEntrypoint
|
|
1390
1427
|
] = Field(..., description="")
|
|
1391
|
-
image: Image
|
|
1392
|
-
spark_version: str = Field(
|
|
1393
|
-
"3.5.2",
|
|
1394
|
-
description="Spark version should match the spark version installed in the image.",
|
|
1395
|
-
)
|
|
1396
1428
|
driver_config: SparkDriverConfig
|
|
1397
1429
|
executor_config: SparkExecutorConfig
|
|
1398
1430
|
env: Optional[Dict[str, Any]] = Field(
|
|
@@ -1452,7 +1484,7 @@ class WorkflowAlert(BaseModel):
|
|
|
1452
1484
|
Describes the configuration for the workflow alerts
|
|
1453
1485
|
"""
|
|
1454
1486
|
|
|
1455
|
-
notification_target: Optional[Union[Email, SlackWebhook]] = None
|
|
1487
|
+
notification_target: Optional[Union[Email, SlackWebhook, SlackBot]] = None
|
|
1456
1488
|
on_completion: bool = Field(
|
|
1457
1489
|
False, description="Send an alert when the job completes"
|
|
1458
1490
|
)
|
|
@@ -1519,7 +1551,7 @@ class JobAlert(BaseModel):
|
|
|
1519
1551
|
None,
|
|
1520
1552
|
description="List of recipients' email addresses if the notification channel is Email.",
|
|
1521
1553
|
)
|
|
1522
|
-
notification_target: Optional[Union[Email, SlackWebhook]] = None
|
|
1554
|
+
notification_target: Optional[Union[Email, SlackWebhook, SlackBot]] = None
|
|
1523
1555
|
on_start: bool = Field(False, description="Send an alert when the job starts")
|
|
1524
1556
|
on_completion: bool = Field(
|
|
1525
1557
|
False, description="Send an alert when the job completes"
|
|
@@ -189,30 +189,6 @@ def _deploy_wait_handler( # noqa: C901
|
|
|
189
189
|
return last_status_printed
|
|
190
190
|
|
|
191
191
|
|
|
192
|
-
def _warn_when_gpu_selected_without_cuda(component: Component):
|
|
193
|
-
is_python_build_without_cuda = (
|
|
194
|
-
hasattr(component, "image")
|
|
195
|
-
and isinstance(component.image, autogen_models.Build)
|
|
196
|
-
and isinstance(component.image.build_spec, autogen_models.PythonBuild)
|
|
197
|
-
and not component.image.build_spec.cuda_version
|
|
198
|
-
)
|
|
199
|
-
uses_gpu = (
|
|
200
|
-
hasattr(component, "resources")
|
|
201
|
-
and isinstance(component, autogen_models.Resources)
|
|
202
|
-
and component.resources.gpu_count > 0
|
|
203
|
-
)
|
|
204
|
-
if is_python_build_without_cuda and uses_gpu:
|
|
205
|
-
logger.warning(
|
|
206
|
-
"Warning: `gpu_count` is greater than 0 in `Resources` (i.e. `resources.gpu_count`) "
|
|
207
|
-
"but no `cuda_version` was passed to `PythonBuild` "
|
|
208
|
-
"(i.e. `image.build_spec.cuda_version`). "
|
|
209
|
-
"Your application might optionally need CUDA toolkit installed "
|
|
210
|
-
"to utilize the GPU. You can choose one by passing one of "
|
|
211
|
-
"`truefoundry.deploy.CUDAVersion` in `PythonBuild` instance. "
|
|
212
|
-
"\n\nE.g.\n```\nPythonBuild(..., cuda_version=CUDAVersion.CUDA_11_3_CUDNN8)\n```"
|
|
213
|
-
)
|
|
214
|
-
|
|
215
|
-
|
|
216
192
|
def _resolve_workspace_fqn(
|
|
217
193
|
component: Component, workspace_fqn: Optional[str] = None
|
|
218
194
|
) -> str:
|
|
@@ -266,7 +242,6 @@ def deploy_component(
|
|
|
266
242
|
wait: bool = True,
|
|
267
243
|
force: bool = False,
|
|
268
244
|
) -> Deployment:
|
|
269
|
-
_warn_when_gpu_selected_without_cuda(component=component)
|
|
270
245
|
workspace_fqn = _resolve_workspace_fqn(
|
|
271
246
|
component=component, workspace_fqn=workspace_fqn
|
|
272
247
|
)
|
|
@@ -2,7 +2,6 @@ import enum
|
|
|
2
2
|
import os
|
|
3
3
|
import re
|
|
4
4
|
import warnings
|
|
5
|
-
from collections.abc import Mapping
|
|
6
5
|
from typing import Literal, Optional, Union
|
|
7
6
|
|
|
8
7
|
from truefoundry.common.warnings import TrueFoundryDeprecationWarning
|
|
@@ -15,63 +14,6 @@ from truefoundry.pydantic_v1 import (
|
|
|
15
14
|
validator,
|
|
16
15
|
)
|
|
17
16
|
|
|
18
|
-
LEGACY_GPU_TYPE_COUNT_WARNING_MESSAGE_TEMPLATE = """
|
|
19
|
-
---------
|
|
20
|
-
The `gpu_count` and `gpu_type` fields are deprecated. Please remove these fields
|
|
21
|
-
from your deployment Python script or YAML Spec.
|
|
22
|
-
|
|
23
|
-
If you are using Python SDK, add GPUs in the following way:
|
|
24
|
-
|
|
25
|
-
```
|
|
26
|
-
from truefoundry.deploy import NvidiaGPU, Resources
|
|
27
|
-
...
|
|
28
|
-
|
|
29
|
-
resources=Resources(
|
|
30
|
-
...
|
|
31
|
-
devices=[NvidiaGPU(name="{gpu_type}", count={gpu_count})],
|
|
32
|
-
)
|
|
33
|
-
```
|
|
34
|
-
|
|
35
|
-
If you are using YAML Spec to deploy, add GPUs in the following way:
|
|
36
|
-
|
|
37
|
-
```
|
|
38
|
-
resources:
|
|
39
|
-
devices:
|
|
40
|
-
- type: nvidia_gpu
|
|
41
|
-
name: {gpu_type}
|
|
42
|
-
count: {gpu_count}
|
|
43
|
-
```
|
|
44
|
-
---------
|
|
45
|
-
"""
|
|
46
|
-
|
|
47
|
-
LEGACY_GPU_COUNT_WARNING_MESSAGE_TEMPLATE = """
|
|
48
|
-
---------
|
|
49
|
-
The `gpu_count` field is deprecated. Please remove this field from your
|
|
50
|
-
deployment Python script or YAML Spec.
|
|
51
|
-
|
|
52
|
-
If you are using Python SDK, add GPUs in the following way:
|
|
53
|
-
|
|
54
|
-
```
|
|
55
|
-
from truefoundry.deploy import NvidiaGPU, Resources
|
|
56
|
-
...
|
|
57
|
-
|
|
58
|
-
resources=Resources(
|
|
59
|
-
...
|
|
60
|
-
devices=[NvidiaGPU(count={gpu_count})],
|
|
61
|
-
)
|
|
62
|
-
```
|
|
63
|
-
|
|
64
|
-
If you are using YAML Spec to deploy, add GPUs in the following way:
|
|
65
|
-
|
|
66
|
-
```
|
|
67
|
-
resources:
|
|
68
|
-
devices:
|
|
69
|
-
- type: nvidia_gpu
|
|
70
|
-
count: {gpu_count}
|
|
71
|
-
```
|
|
72
|
-
---------
|
|
73
|
-
"""
|
|
74
|
-
|
|
75
17
|
AUTO_DISCOVERED_REQUIREMENTS_TXT_WARNING_MESSAGE_TEMPLATE = """\
|
|
76
18
|
Using automatically discovered {requirements_txt_path} as the requirements file.
|
|
77
19
|
This auto discovery behavior is deprecated and will be removed in a future release.
|
|
@@ -304,35 +246,7 @@ class Port(models.Port, PatchedModelBase):
|
|
|
304
246
|
|
|
305
247
|
|
|
306
248
|
class Resources(models.Resources, PatchedModelBase):
|
|
307
|
-
|
|
308
|
-
def warn_gpu_count_type_depreciation(cls, values):
|
|
309
|
-
gpu_count = values.get("gpu_count")
|
|
310
|
-
gpu_type = None
|
|
311
|
-
node = values.get("node")
|
|
312
|
-
if node:
|
|
313
|
-
if isinstance(node, NodeSelector):
|
|
314
|
-
gpu_type = node.gpu_type
|
|
315
|
-
elif isinstance(node, Mapping):
|
|
316
|
-
gpu_count = node.get("gpu_type")
|
|
317
|
-
|
|
318
|
-
if gpu_count and gpu_type:
|
|
319
|
-
warnings.warn(
|
|
320
|
-
LEGACY_GPU_TYPE_COUNT_WARNING_MESSAGE_TEMPLATE.format(
|
|
321
|
-
gpu_type=gpu_type,
|
|
322
|
-
gpu_count=gpu_count,
|
|
323
|
-
),
|
|
324
|
-
category=TrueFoundryDeprecationWarning,
|
|
325
|
-
stacklevel=2,
|
|
326
|
-
)
|
|
327
|
-
elif gpu_count:
|
|
328
|
-
warnings.warn(
|
|
329
|
-
LEGACY_GPU_COUNT_WARNING_MESSAGE_TEMPLATE.format(
|
|
330
|
-
gpu_count=gpu_count,
|
|
331
|
-
),
|
|
332
|
-
category=TrueFoundryDeprecationWarning,
|
|
333
|
-
stacklevel=2,
|
|
334
|
-
)
|
|
335
|
-
return values
|
|
249
|
+
pass
|
|
336
250
|
|
|
337
251
|
|
|
338
252
|
class Param(models.Param, PatchedModelBase):
|
|
@@ -397,7 +311,6 @@ class VolumeMount(models.VolumeMount, PatchedModelBase):
|
|
|
397
311
|
|
|
398
312
|
class NodeSelector(models.NodeSelector, PatchedModelBase):
|
|
399
313
|
type: Literal["node_selector"] = "node_selector"
|
|
400
|
-
gpu_type: Optional[Union[GPUType, str]] = None
|
|
401
314
|
|
|
402
315
|
|
|
403
316
|
class NodepoolSelector(models.NodepoolSelector, PatchedModelBase):
|
|
@@ -573,6 +486,10 @@ class SlackWebhook(models.SlackWebhook, PatchedModelBase):
|
|
|
573
486
|
type: Literal["slack-webhook"] = "slack-webhook"
|
|
574
487
|
|
|
575
488
|
|
|
489
|
+
class SlackBot(models.SlackBot, PatchedModelBase):
|
|
490
|
+
type: Literal["slack-bot"] = "slack-bot"
|
|
491
|
+
|
|
492
|
+
|
|
576
493
|
class SparkJobScalaEntrypoint(models.SparkJobScalaEntrypoint, PatchedModelBase):
|
|
577
494
|
type: Literal["scala"] = "scala"
|
|
578
495
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: truefoundry
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.7.0rc3
|
|
4
4
|
Summary: TrueFoundry CLI
|
|
5
5
|
Author-email: TrueFoundry Team <abhishek@truefoundry.com>
|
|
6
6
|
Requires-Python: <3.14,>=3.8.1
|
|
@@ -30,12 +30,12 @@ Requires-Dist: requirements-parser<0.12.0,>=0.11.0
|
|
|
30
30
|
Requires-Dist: rich-click<2.0.0,>=1.2.1
|
|
31
31
|
Requires-Dist: rich<14.0.0,>=13.7.1
|
|
32
32
|
Requires-Dist: tqdm<5.0.0,>=4.0.0
|
|
33
|
-
Requires-Dist: truefoundry-sdk==0.0.
|
|
33
|
+
Requires-Dist: truefoundry-sdk==0.0.14
|
|
34
34
|
Requires-Dist: typing-extensions>=4.0
|
|
35
35
|
Requires-Dist: urllib3<3,>=1.26.18
|
|
36
36
|
Requires-Dist: yq<4.0.0,>=3.1.0
|
|
37
37
|
Provides-Extra: workflow
|
|
38
|
-
Requires-Dist: flytekit==1.
|
|
38
|
+
Requires-Dist: flytekit==1.15.3; (python_version >= '3.9' and python_version < '3.13') and extra == 'workflow'
|
|
39
39
|
Description-Content-Type: text/markdown
|
|
40
40
|
|
|
41
41
|
# TrueFoundry
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
truefoundry/__init__.py,sha256=VVpO-Awh1v93VOURe7hank8QpeSPc0dCykwr14GOFsw,967
|
|
2
|
-
truefoundry/_client.py,sha256=
|
|
2
|
+
truefoundry/_client.py,sha256=VQEfRvPE7nuqq--q28cpmnIYPG3RH52RSifIFOzzvTg,1420
|
|
3
3
|
truefoundry/logger.py,sha256=u-YCNjg5HBwE70uQcpjIG64Ghos-K2ulTWaxC03BSj4,714
|
|
4
4
|
truefoundry/pydantic_v1.py,sha256=jSuhGtz0Mbk1qYu8jJ1AcnIDK4oxUsdhALc4spqstmM,345
|
|
5
5
|
truefoundry/version.py,sha256=bqiT4Q-VWrTC6P4qfK43mez-Ppf-smWfrl6DcwV7mrw,137
|
|
@@ -48,9 +48,9 @@ truefoundry/common/storage_provider_utils.py,sha256=yURhMw8k0FLFvaviRHDiifhvc6Gn
|
|
|
48
48
|
truefoundry/common/types.py,sha256=BMJFCsR1lPJAw66IQBSvLyV4I6o_x5oj78gVsUa9si8,188
|
|
49
49
|
truefoundry/common/utils.py,sha256=yEQtJW2fT9xbNpRhfRoD9hvhGw-FgGS3agh1oZptmjg,6379
|
|
50
50
|
truefoundry/common/warnings.py,sha256=rs6BHwk7imQYedo07iwh3TWEOywAR3Lqhj0AY4khByg,504
|
|
51
|
-
truefoundry/deploy/__init__.py,sha256=
|
|
51
|
+
truefoundry/deploy/__init__.py,sha256=6D22iiCgd5xlzBaG34q9Cx4rGgwf5qIAKQrOCgaCXYY,2746
|
|
52
52
|
truefoundry/deploy/python_deploy_codegen.py,sha256=AainOFR20XvhNeztJkLPWGZ40lAT_nwc-ZmG77Kum4o,6525
|
|
53
|
-
truefoundry/deploy/_autogen/models.py,sha256=
|
|
53
|
+
truefoundry/deploy/_autogen/models.py,sha256=yIGmwEptVUIM1R5DOL8JYp2-8T-YDDumADS4ZAFoEcI,71727
|
|
54
54
|
truefoundry/deploy/builder/__init__.py,sha256=nGQiR3r16iumRy7xbVQ6q-k0EApmijspsfVpXDE-9po,4953
|
|
55
55
|
truefoundry/deploy/builder/constants.py,sha256=amUkHoHvVKzGv0v_knfiioRuKiJM0V0xW0diERgWiI0,508
|
|
56
56
|
truefoundry/deploy/builder/docker_service.py,sha256=sm7GWeIqyrKaZpxskdLejZlsxcZnM3BTDJr6orvPN4E,3948
|
|
@@ -104,11 +104,11 @@ truefoundry/deploy/lib/model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NM
|
|
|
104
104
|
truefoundry/deploy/lib/model/entity.py,sha256=Up-DDOezkwM2tdqibfLdZO6jmT2pVq6SShB5sobBIGI,8531
|
|
105
105
|
truefoundry/deploy/v2/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
106
106
|
truefoundry/deploy/v2/lib/__init__.py,sha256=WEiVMZXOVljzEE3tpGJil14liIn_PCDoACJ6b3tZ6sI,188
|
|
107
|
-
truefoundry/deploy/v2/lib/deploy.py,sha256=
|
|
107
|
+
truefoundry/deploy/v2/lib/deploy.py,sha256=Og7P6S3Gc8pXRudf2luk2IOb_5oMGoz-h0rQcLWaw7M,11708
|
|
108
108
|
truefoundry/deploy/v2/lib/deploy_workflow.py,sha256=G5BzMIbap8pgDX1eY-TITruUxQdkKhYtBmRwLL6lDeY,14342
|
|
109
109
|
truefoundry/deploy/v2/lib/deployable_patched_models.py,sha256=xbHFD3pURflvCm8EODPvjfvRrv67mlSrjPUknY8SMB8,4060
|
|
110
110
|
truefoundry/deploy/v2/lib/models.py,sha256=ogc1UYs1Z2nBdGSKCrde9sk8d0GxFKMkem99uqO5CmM,1148
|
|
111
|
-
truefoundry/deploy/v2/lib/patched_models.py,sha256=
|
|
111
|
+
truefoundry/deploy/v2/lib/patched_models.py,sha256=8ib9Y7b4-DoEml2zCv3V7QIqh4tLJUjzPj1AWomwvag,14775
|
|
112
112
|
truefoundry/deploy/v2/lib/source.py,sha256=d6-8_6Zn5koBglqrBrY6ZLG_7yyPuLdyEmK4iZTw6xY,9405
|
|
113
113
|
truefoundry/ml/__init__.py,sha256=EEEHV7w58Krpo_W9Chd8Y3TdItfFO3LI6j6Izqc4-P8,2219
|
|
114
114
|
truefoundry/ml/constants.py,sha256=vDq72d4C9FSWqr9MMdjgTF4TuyNFApvo_6RVsSeAjB4,2837
|
|
@@ -372,7 +372,7 @@ truefoundry/workflow/remote_filesystem/__init__.py,sha256=LQ95ViEjJ7Ts4JcCGOxMPs
|
|
|
372
372
|
truefoundry/workflow/remote_filesystem/logger.py,sha256=em2l7D6sw7xTLDP0kQSLpgfRRCLpN14Qw85TN7ujQcE,1022
|
|
373
373
|
truefoundry/workflow/remote_filesystem/tfy_signed_url_client.py,sha256=xcT0wQmQlgzcj0nP3tJopyFSVWT1uv3nhiTIuwfXYeg,12342
|
|
374
374
|
truefoundry/workflow/remote_filesystem/tfy_signed_url_fs.py,sha256=nSGPZu0Gyd_jz0KsEE-7w_BmnTD8CVF1S8cUJoxaCbc,13305
|
|
375
|
-
truefoundry-0.
|
|
376
|
-
truefoundry-0.
|
|
377
|
-
truefoundry-0.
|
|
378
|
-
truefoundry-0.
|
|
375
|
+
truefoundry-0.7.0rc3.dist-info/METADATA,sha256=ot8D6YyP50gUne095ElaRe-ZZfKYY74pYJi_pkiRR-4,2410
|
|
376
|
+
truefoundry-0.7.0rc3.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
377
|
+
truefoundry-0.7.0rc3.dist-info/entry_points.txt,sha256=xVjn7RMN-MW2-9f7YU-bBdlZSvvrwzhpX1zmmRmsNPU,98
|
|
378
|
+
truefoundry-0.7.0rc3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|