truefoundry 0.4.9__py3-none-any.whl → 0.4.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.
Potentially problematic release.
This version of truefoundry might be problematic. Click here for more details.
- truefoundry/deploy/__init__.py +5 -0
- truefoundry/deploy/v2/lib/patched_models.py +8 -0
- {truefoundry-0.4.9.dist-info → truefoundry-0.4.10.dist-info}/METADATA +1 -1
- {truefoundry-0.4.9.dist-info → truefoundry-0.4.10.dist-info}/RECORD +6 -6
- {truefoundry-0.4.9.dist-info → truefoundry-0.4.10.dist-info}/WHEEL +0 -0
- {truefoundry-0.4.9.dist-info → truefoundry-0.4.10.dist-info}/entry_points.txt +0 -0
truefoundry/deploy/__init__.py
CHANGED
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
from truefoundry.deploy.auto_gen.models import (
|
|
2
2
|
AppProtocol,
|
|
3
|
+
Autoshutdown,
|
|
3
4
|
CanaryStep,
|
|
4
5
|
CapacityType,
|
|
6
|
+
Claim,
|
|
5
7
|
ConcurrencyPolicy,
|
|
8
|
+
JobAlert,
|
|
6
9
|
Kustomize,
|
|
7
10
|
ParamType,
|
|
8
11
|
Protocol,
|
|
@@ -66,6 +69,7 @@ from truefoundry.deploy.v2.lib.patched_models import (
|
|
|
66
69
|
DynamicVolumeConfig,
|
|
67
70
|
Endpoint,
|
|
68
71
|
GcpTPU,
|
|
72
|
+
GitHelmRepo,
|
|
69
73
|
GitSource,
|
|
70
74
|
GPUType,
|
|
71
75
|
HealthProbe,
|
|
@@ -73,6 +77,7 @@ from truefoundry.deploy.v2.lib.patched_models import (
|
|
|
73
77
|
HttpProbe,
|
|
74
78
|
HuggingfaceArtifactSource,
|
|
75
79
|
Image,
|
|
80
|
+
JwtAuthCreds,
|
|
76
81
|
KafkaInputConfig,
|
|
77
82
|
KafkaMetricConfig,
|
|
78
83
|
KafkaOutputConfig,
|
|
@@ -186,6 +186,10 @@ class BasicAuthCreds(models.BasicAuthCreds, PatchedModelBase):
|
|
|
186
186
|
type: Literal["basic_auth"] = "basic_auth"
|
|
187
187
|
|
|
188
188
|
|
|
189
|
+
class JwtAuthCreds(models.JwtAuthCreds, PatchedModelBase):
|
|
190
|
+
type: Literal["jwt_auth"] = "jwt_auth"
|
|
191
|
+
|
|
192
|
+
|
|
189
193
|
class HealthProbe(models.HealthProbe, PatchedModelBase):
|
|
190
194
|
pass
|
|
191
195
|
|
|
@@ -338,6 +342,10 @@ class HelmRepo(models.HelmRepo, PatchedModelBase):
|
|
|
338
342
|
type: Literal["helm-repo"] = "helm-repo"
|
|
339
343
|
|
|
340
344
|
|
|
345
|
+
class GitHelmRepo(models.GitHelmRepo, PatchedModelBase):
|
|
346
|
+
type: Literal["git-helm-repo"] = "git-helm-repo"
|
|
347
|
+
|
|
348
|
+
|
|
341
349
|
class OCIRepo(models.OCIRepo, PatchedModelBase):
|
|
342
350
|
type: Literal["oci-repo"] = "oci-repo"
|
|
343
351
|
|
|
@@ -35,7 +35,7 @@ truefoundry/common/exceptions.py,sha256=ePpiQ_zmWe4e94gOgeMiyP_AZnKwjEBfyXsB5ScG
|
|
|
35
35
|
truefoundry/common/request_utils.py,sha256=5xw4YGUcMf71Ncal3OfFCa-PoWDIvG3hYGCDa4Da4OI,2854
|
|
36
36
|
truefoundry/common/servicefoundry_client.py,sha256=2fxmgCM-ckFHpnm6n_mL-5Z8RWN_q-dYVvFC29bkYSg,3120
|
|
37
37
|
truefoundry/common/utils.py,sha256=MYFjNtHGqauqhj9tmbdErCJR49AfXDwg-5kYbBh8HpI,3258
|
|
38
|
-
truefoundry/deploy/__init__.py,sha256=
|
|
38
|
+
truefoundry/deploy/__init__.py,sha256=p14_yIJw2bcaKW3c1DTaoM7UwfHvt2T_MfeFlZIz1g4,2359
|
|
39
39
|
truefoundry/deploy/auto_gen/models.py,sha256=8848BDbq2hO8Y75LsBH3cS0vi8qEOKU5x6oBtVmYorE,82552
|
|
40
40
|
truefoundry/deploy/builder/__init__.py,sha256=1qjHMNBE1poRCZW0WrG46dFM1f1IlivD5352qzsioMU,4953
|
|
41
41
|
truefoundry/deploy/builder/builders/__init__.py,sha256=tlFLXqyDaKLd4iZbo4Hcu_8gOmgtL6drnXpbmQ6x1P8,636
|
|
@@ -114,7 +114,7 @@ truefoundry/deploy/v2/lib/deploy.py,sha256=HIcY3SzQ5lWl7avuuKi3J0Z-PBES6Sf4hgMK-
|
|
|
114
114
|
truefoundry/deploy/v2/lib/deploy_workflow.py,sha256=hgAhd1EGwFLz319Vs-WNXHDJmbKjdgkGPzDnBD1Up1k,12579
|
|
115
115
|
truefoundry/deploy/v2/lib/deployable_patched_models.py,sha256=MROgMxhn9hDEAKwJSWl3iz12tUVvRKzEtqF2QUT6dAk,3343
|
|
116
116
|
truefoundry/deploy/v2/lib/models.py,sha256=pSolLMTArDuYpeNsmeeS5DWliloN_iCDfZSpRllMHUg,1120
|
|
117
|
-
truefoundry/deploy/v2/lib/patched_models.py,sha256=
|
|
117
|
+
truefoundry/deploy/v2/lib/patched_models.py,sha256=NTU8J_CwdvEuF9zNXwFyN3suOp_196Wrm75DDy5qcXE,14184
|
|
118
118
|
truefoundry/deploy/v2/lib/source.py,sha256=VHKuFREiixUP40D3Mrz-TA70spu1M0RbCzl--qwlFaY,9263
|
|
119
119
|
truefoundry/langchain/__init__.py,sha256=zeYKxKrQhfYXQuBec3wvB_ZqKowDUUjLUKUhbiu9ZFs,558
|
|
120
120
|
truefoundry/langchain/deprecated.py,sha256=8tfLHXwcifGl7DYhMNfzc4zRVCVqEgARg5BsbZp11NE,10835
|
|
@@ -355,7 +355,7 @@ truefoundry/workflow/remote_filesystem/tfy_signed_url_client.py,sha256=5mBCIc-ON
|
|
|
355
355
|
truefoundry/workflow/remote_filesystem/tfy_signed_url_fs.py,sha256=Hf6Dk6Fu6P7DqsK5ULgraf9DStjgigf-kjaRAMBW-RU,8680
|
|
356
356
|
truefoundry/workflow/task.py,sha256=ToitYiKcNzFCtOVQwz1W8sRjbR97eVS7vQBdbgUQtKg,1779
|
|
357
357
|
truefoundry/workflow/workflow.py,sha256=WaTqUjhwfAXDWu4E5ehuwAxrCbDJkoAf1oWmR2E9Qy0,4575
|
|
358
|
-
truefoundry-0.4.
|
|
359
|
-
truefoundry-0.4.
|
|
360
|
-
truefoundry-0.4.
|
|
361
|
-
truefoundry-0.4.
|
|
358
|
+
truefoundry-0.4.10.dist-info/METADATA,sha256=kOrAiBzIhlabwGkD93m6d9Wsic16jfyT8QaW3a-Yoko,3100
|
|
359
|
+
truefoundry-0.4.10.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
|
360
|
+
truefoundry-0.4.10.dist-info/entry_points.txt,sha256=TXvUxQkI6zmqJuycPsyxEIMr3oqfDjgrWj0m_9X12x4,95
|
|
361
|
+
truefoundry-0.4.10.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|