flyte 0.2.0b11__py3-none-any.whl → 0.2.0b12__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 flyte might be problematic. Click here for more details.
- flyte/_bin/runtime.py +11 -2
- flyte/_deploy.py +29 -0
- flyte/_initialize.py +7 -6
- flyte/_protos/common/list_pb2.py +3 -3
- flyte/_protos/common/list_pb2.pyi +2 -0
- flyte/_protos/workflow/environment_pb2.py +29 -0
- flyte/_protos/workflow/environment_pb2.pyi +12 -0
- flyte/_protos/workflow/environment_pb2_grpc.py +4 -0
- flyte/_protos/workflow/run_definition_pb2.py +61 -61
- flyte/_protos/workflow/run_definition_pb2.pyi +4 -2
- flyte/_protos/workflow/run_service_pb2.py +20 -24
- flyte/_protos/workflow/run_service_pb2.pyi +2 -6
- flyte/_protos/workflow/task_definition_pb2.py +28 -22
- flyte/_protos/workflow/task_definition_pb2.pyi +16 -4
- flyte/_protos/workflow/task_service_pb2.py +27 -11
- flyte/_protos/workflow/task_service_pb2.pyi +29 -1
- flyte/_protos/workflow/task_service_pb2_grpc.py +34 -0
- flyte/_trace.py +0 -2
- flyte/_utils/__init__.py +4 -0
- flyte/_utils/org_discovery.py +26 -0
- flyte/_version.py +2 -2
- flyte/cli/_abort.py +4 -2
- flyte/cli/_common.py +8 -2
- flyte/cli/_create.py +4 -3
- flyte/cli/_deploy.py +14 -7
- flyte/cli/_get.py +11 -10
- flyte/remote/__init__.py +2 -1
- flyte/remote/_client/_protocols.py +2 -0
- flyte/remote/_task.py +141 -9
- flyte/syncify/_api.py +0 -1
- {flyte-0.2.0b11.dist-info → flyte-0.2.0b12.dist-info}/METADATA +1 -1
- {flyte-0.2.0b11.dist-info → flyte-0.2.0b12.dist-info}/RECORD +35 -32
- {flyte-0.2.0b11.dist-info → flyte-0.2.0b12.dist-info}/WHEEL +0 -0
- {flyte-0.2.0b11.dist-info → flyte-0.2.0b12.dist-info}/entry_points.txt +0 -0
- {flyte-0.2.0b11.dist-info → flyte-0.2.0b12.dist-info}/top_level.txt +0 -0
flyte/remote/_task.py
CHANGED
|
@@ -3,27 +3,44 @@ from __future__ import annotations
|
|
|
3
3
|
import functools
|
|
4
4
|
from dataclasses import dataclass
|
|
5
5
|
from threading import Lock
|
|
6
|
-
from typing import Any, Callable, Coroutine, Dict, Literal, Optional, Union
|
|
6
|
+
from typing import Any, AsyncIterator, Callable, Coroutine, Dict, Iterator, Literal, Optional, Tuple, Union
|
|
7
7
|
|
|
8
8
|
import rich.repr
|
|
9
|
+
from google.protobuf import timestamp
|
|
9
10
|
|
|
10
11
|
import flyte
|
|
11
12
|
import flyte.errors
|
|
12
13
|
from flyte._context import internal_ctx
|
|
13
|
-
from flyte._initialize import get_client, get_common_config
|
|
14
|
+
from flyte._initialize import ensure_client, get_client, get_common_config
|
|
15
|
+
from flyte._logging import logger
|
|
16
|
+
from flyte._protos.common import list_pb2
|
|
14
17
|
from flyte._protos.workflow import task_definition_pb2, task_service_pb2
|
|
15
18
|
from flyte.models import NativeInterface
|
|
16
19
|
from flyte.syncify import syncify
|
|
17
20
|
|
|
18
21
|
|
|
22
|
+
def _repr_task_metadata(metadata: task_definition_pb2.TaskMetadata) -> rich.repr.Result:
|
|
23
|
+
"""
|
|
24
|
+
Rich representation of the task metadata.
|
|
25
|
+
"""
|
|
26
|
+
if metadata.deployed_by:
|
|
27
|
+
if metadata.deployed_by.user:
|
|
28
|
+
yield "deployed_by", f"User: {metadata.deployed_by.user.spec.email}"
|
|
29
|
+
else:
|
|
30
|
+
yield "deployed_by", f"App: {metadata.deployed_by.application.spec.name}"
|
|
31
|
+
yield "short_name", metadata.short_name
|
|
32
|
+
yield "deployed_at", timestamp.to_datetime(metadata.deployed_at)
|
|
33
|
+
yield "environment_name", metadata.environment_name
|
|
34
|
+
|
|
35
|
+
|
|
19
36
|
class LazyEntity:
|
|
20
37
|
"""
|
|
21
38
|
Fetches the entity when the entity is called or when the entity is retrieved.
|
|
22
39
|
The entity is derived from RemoteEntity so that it behaves exactly like the mimicked entity.
|
|
23
40
|
"""
|
|
24
41
|
|
|
25
|
-
def __init__(self, name: str, getter: Callable[..., Coroutine[Any, Any,
|
|
26
|
-
self._task: Optional[
|
|
42
|
+
def __init__(self, name: str, getter: Callable[..., Coroutine[Any, Any, TaskDetails]], *args, **kwargs):
|
|
43
|
+
self._task: Optional[TaskDetails] = None
|
|
27
44
|
self._getter = getter
|
|
28
45
|
self._name = name
|
|
29
46
|
self._mutex = Lock()
|
|
@@ -33,7 +50,7 @@ class LazyEntity:
|
|
|
33
50
|
return self._name
|
|
34
51
|
|
|
35
52
|
@syncify
|
|
36
|
-
async def fetch(self) ->
|
|
53
|
+
async def fetch(self) -> TaskDetails:
|
|
37
54
|
"""
|
|
38
55
|
Forwards all other attributes to task, causing the task to be fetched!
|
|
39
56
|
"""
|
|
@@ -62,7 +79,7 @@ AutoVersioning = Literal["latest", "current"]
|
|
|
62
79
|
|
|
63
80
|
|
|
64
81
|
@dataclass
|
|
65
|
-
class
|
|
82
|
+
class TaskDetails:
|
|
66
83
|
pb2: task_definition_pb2.TaskDetails
|
|
67
84
|
|
|
68
85
|
@classmethod
|
|
@@ -87,10 +104,19 @@ class Task:
|
|
|
87
104
|
if version is None and auto_version not in ["latest", "current"]:
|
|
88
105
|
raise ValueError("auto_version must be either 'latest' or 'current'.")
|
|
89
106
|
|
|
90
|
-
async def deferred_get(_version: str | None, _auto_version: AutoVersioning | None) ->
|
|
107
|
+
async def deferred_get(_version: str | None, _auto_version: AutoVersioning | None) -> TaskDetails:
|
|
91
108
|
if _version is None:
|
|
92
109
|
if _auto_version == "latest":
|
|
93
|
-
|
|
110
|
+
tasks = []
|
|
111
|
+
async for x in Task.listall.aio(
|
|
112
|
+
by_task_name=name,
|
|
113
|
+
sort_by=("created_at", "desc"),
|
|
114
|
+
limit=1,
|
|
115
|
+
):
|
|
116
|
+
tasks.append(x)
|
|
117
|
+
if not tasks:
|
|
118
|
+
raise flyte.errors.ReferenceTaskError(f"Task {name} not found.")
|
|
119
|
+
_version = tasks[0].version
|
|
94
120
|
elif _auto_version == "current":
|
|
95
121
|
ctx = flyte.ctx()
|
|
96
122
|
if ctx is None:
|
|
@@ -205,7 +231,7 @@ class Task:
|
|
|
205
231
|
env: Optional[Dict[str, str]] = None,
|
|
206
232
|
secrets: Optional[flyte.SecretRequest] = None,
|
|
207
233
|
**kwargs: Any,
|
|
208
|
-
) ->
|
|
234
|
+
) -> TaskDetails:
|
|
209
235
|
raise NotImplementedError
|
|
210
236
|
|
|
211
237
|
def __rich_repr__(self) -> rich.repr.Result:
|
|
@@ -223,5 +249,111 @@ class Task:
|
|
|
223
249
|
yield "resources", self.resources
|
|
224
250
|
|
|
225
251
|
|
|
252
|
+
@dataclass
|
|
253
|
+
class Task:
|
|
254
|
+
pb2: task_definition_pb2.Task
|
|
255
|
+
|
|
256
|
+
def __init__(self, pb2: task_definition_pb2.Task):
|
|
257
|
+
self.pb2 = pb2
|
|
258
|
+
|
|
259
|
+
@property
|
|
260
|
+
def name(self) -> str:
|
|
261
|
+
"""
|
|
262
|
+
The name of the task.
|
|
263
|
+
"""
|
|
264
|
+
return self.pb2.task_id.name
|
|
265
|
+
|
|
266
|
+
@property
|
|
267
|
+
def version(self) -> str:
|
|
268
|
+
"""
|
|
269
|
+
The version of the task.
|
|
270
|
+
"""
|
|
271
|
+
return self.pb2.task_id.version
|
|
272
|
+
|
|
273
|
+
@classmethod
|
|
274
|
+
def get(cls, name: str, version: str | None = None, auto_version: AutoVersioning | None = None) -> LazyEntity:
|
|
275
|
+
"""
|
|
276
|
+
Get a task by its ID or name. If both are provided, the ID will take precedence.
|
|
277
|
+
|
|
278
|
+
Either version or auto_version are required parameters.
|
|
279
|
+
|
|
280
|
+
:param name: The name of the task.
|
|
281
|
+
:param version: The version of the task.
|
|
282
|
+
:param auto_version: If set to "latest", the latest-by-time ordered from now, version of the task will be used.
|
|
283
|
+
If set to "current", the version will be derived from the callee tasks context. This is useful if you are
|
|
284
|
+
deploying all environments with the same version. If auto_version is current, you can only access the task from
|
|
285
|
+
within a task context.
|
|
286
|
+
"""
|
|
287
|
+
return TaskDetails.get(name, version=version, auto_version=auto_version)
|
|
288
|
+
|
|
289
|
+
@syncify
|
|
290
|
+
@classmethod
|
|
291
|
+
async def listall(
|
|
292
|
+
cls,
|
|
293
|
+
by_task_name: str | None = None,
|
|
294
|
+
sort_by: Tuple[str, Literal["asc", "desc"]] | None = None,
|
|
295
|
+
limit: int = 100,
|
|
296
|
+
) -> Union[AsyncIterator[Task], Iterator[Task]]:
|
|
297
|
+
"""
|
|
298
|
+
Get all runs for the current project and domain.
|
|
299
|
+
|
|
300
|
+
:param by_task_name: If provided, only tasks with this name will be returned.
|
|
301
|
+
:param sort_by: The sorting criteria for the project list, in the format (field, order).
|
|
302
|
+
:param limit: The maximum number of tasks to return.
|
|
303
|
+
:return: An iterator of runs.
|
|
304
|
+
"""
|
|
305
|
+
ensure_client()
|
|
306
|
+
token = None
|
|
307
|
+
sort_by = sort_by or ("created_at", "asc")
|
|
308
|
+
sort_pb2 = list_pb2.Sort(
|
|
309
|
+
key=sort_by[0], direction=list_pb2.Sort.ASCENDING if sort_by[1] == "asc" else list_pb2.Sort.DESCENDING
|
|
310
|
+
)
|
|
311
|
+
cfg = get_common_config()
|
|
312
|
+
filters = []
|
|
313
|
+
if by_task_name:
|
|
314
|
+
filters.append(
|
|
315
|
+
list_pb2.Filter(
|
|
316
|
+
function=list_pb2.Filter.Function.EQUAL,
|
|
317
|
+
field="name",
|
|
318
|
+
values=[by_task_name],
|
|
319
|
+
)
|
|
320
|
+
)
|
|
321
|
+
original_limit = limit
|
|
322
|
+
if limit > cfg.batch_size:
|
|
323
|
+
limit = cfg.batch_size
|
|
324
|
+
retrieved = 0
|
|
325
|
+
while True:
|
|
326
|
+
resp = await get_client().task_service.ListTasks(
|
|
327
|
+
task_service_pb2.ListTasksRequest(
|
|
328
|
+
org=cfg.org,
|
|
329
|
+
request=list_pb2.ListRequest(
|
|
330
|
+
sort_by=sort_pb2,
|
|
331
|
+
filters=filters,
|
|
332
|
+
limit=limit,
|
|
333
|
+
token=token,
|
|
334
|
+
),
|
|
335
|
+
)
|
|
336
|
+
)
|
|
337
|
+
token = resp.token
|
|
338
|
+
for t in resp.tasks:
|
|
339
|
+
retrieved += 1
|
|
340
|
+
yield cls(t)
|
|
341
|
+
if not token or retrieved >= original_limit:
|
|
342
|
+
logger.debug(f"Retrieved {retrieved} tasks, stopping iteration.")
|
|
343
|
+
break
|
|
344
|
+
|
|
345
|
+
def __rich_repr__(self) -> rich.repr.Result:
|
|
346
|
+
"""
|
|
347
|
+
Rich representation of the task.
|
|
348
|
+
"""
|
|
349
|
+
yield "project", self.pb2.task_id.project
|
|
350
|
+
yield "domain", self.pb2.task_id.domain
|
|
351
|
+
yield "name", self.pb2.task_id.name
|
|
352
|
+
yield "version", self.pb2.task_id.version
|
|
353
|
+
yield "short_name", self.pb2.metadata.short_name
|
|
354
|
+
for t in _repr_task_metadata(self.pb2.metadata):
|
|
355
|
+
yield t
|
|
356
|
+
|
|
357
|
+
|
|
226
358
|
if __name__ == "__main__":
|
|
227
359
|
tk = Task.get(name="example_task")
|
flyte/syncify/_api.py
CHANGED
|
@@ -141,7 +141,6 @@ class _BackgroundLoop:
|
|
|
141
141
|
aio_future: asyncio.Future[R_co] = asyncio.wrap_future(future)
|
|
142
142
|
# await for the future to complete and yield its result
|
|
143
143
|
v = await aio_future
|
|
144
|
-
print(f"Yielding value: {v}")
|
|
145
144
|
yield v
|
|
146
145
|
except StopAsyncIteration:
|
|
147
146
|
break
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
flyte/__init__.py,sha256=e8-Obt_5OZDdC5Riznft0Y4ctQMYkYYO1UU7Z6EirLA,1464
|
|
2
2
|
flyte/_build.py,sha256=MkgfLAPeL56YeVrGRNZUCZgbwzlEzVP3wLbl5Qru4yk,578
|
|
3
3
|
flyte/_context.py,sha256=K0-TCt-_pHOoE5Xni87_8uIe2vCBOhfNQEtjGT4Hu4k,5239
|
|
4
|
-
flyte/_deploy.py,sha256=
|
|
4
|
+
flyte/_deploy.py,sha256=Nw1E-jU2AxFMbRG_DWfxiKO6InZCr1Ow2azd6PbKe0E,8987
|
|
5
5
|
flyte/_doc.py,sha256=_OPCf3t_git6UT7kSJISFaWO9cfNzJhhoe6JjVdyCJo,706
|
|
6
6
|
flyte/_docstring.py,sha256=SsG0Ab_YMAwy2ABJlEo3eBKlyC3kwPdnDJ1FIms-ZBQ,1127
|
|
7
7
|
flyte/_environment.py,sha256=BkChtdVhWB3SwMSvetDZ-KiNBgRFlAXgq69PHT4zyG0,2942
|
|
8
8
|
flyte/_group.py,sha256=7o1j16sZyUmYB50mOiq1ui4TBAKhRpDqLakV8Ya1kw4,803
|
|
9
9
|
flyte/_hash.py,sha256=Of_Zl_DzzzF2jp4ZsLm-3o-xJFCCJ8_GubmLI1htx78,504
|
|
10
10
|
flyte/_image.py,sha256=NeBvjCdwFAVGd666ufi1q-YOvhwdTEzAeJl5YBfl0bI,29043
|
|
11
|
-
flyte/_initialize.py,sha256=
|
|
11
|
+
flyte/_initialize.py,sha256=zPcygfpUM24vZ8-6BizPTiDYHeEgXSPbqD4QqJ_pA_A,17831
|
|
12
12
|
flyte/_interface.py,sha256=MP5o_qpIwfBNtAc7zo_cLSjMugsPyanuO6EgUSk4fBE,3644
|
|
13
13
|
flyte/_logging.py,sha256=n3pi1cE_oqA03vQHlqSxexXcjRhCsZg1ODvUSoWlwk4,3382
|
|
14
14
|
flyte/_map.py,sha256=efPd8O-JKUg1OY3_MzU3KGbhsGYDVRNBwWr0ceNIXhQ,7444
|
|
@@ -22,13 +22,13 @@ flyte/_task.py,sha256=AHxg4lqHfExdSU6adwPiFzAT2EtrLI8mBdRxTUL1RgA,17902
|
|
|
22
22
|
flyte/_task_environment.py,sha256=J1LFH9Zz1nPhlsrc_rYny1SS3QC1b55X7tRYoTG7Vk4,6815
|
|
23
23
|
flyte/_timeout.py,sha256=zx5sFcbYmjJAJbZWSGzzX-BpC9HC7Jfs35T7vVhKwkk,1571
|
|
24
24
|
flyte/_tools.py,sha256=JewkQZBR_M85tS6QY8e4xXue75jbOE48nID4ZHnc9jY,632
|
|
25
|
-
flyte/_trace.py,sha256=
|
|
26
|
-
flyte/_version.py,sha256=
|
|
25
|
+
flyte/_trace.py,sha256=C788bgoSc3st8kE8Cae2xegnLx2CT6uuRKKfaDrDUys,5122
|
|
26
|
+
flyte/_version.py,sha256=fZarBZQ7Xio1cvBlNhy9XSzDSr6WjWMDLsvFkl7L8Cw,521
|
|
27
27
|
flyte/errors.py,sha256=lJgSiZb2nZnuTZqBEB9rg-bV_GXVAYNjQFRuKWQskyY,4683
|
|
28
28
|
flyte/models.py,sha256=A85HnTLqInJiMmQKhpl2IXb2Uh6_46tdRrwW2TTzD9o,12908
|
|
29
29
|
flyte/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
30
30
|
flyte/_bin/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
31
|
-
flyte/_bin/runtime.py,sha256=
|
|
31
|
+
flyte/_bin/runtime.py,sha256=09OKQeUwyEDkXF2HtzHeYVJsIMkEzLIO2tVCARvPGJE,5783
|
|
32
32
|
flyte/_cache/__init__.py,sha256=zhdO5UuHQRdzn8GHmSN40nrxfAmI4ihDRuHZM11U84Y,305
|
|
33
33
|
flyte/_cache/cache.py,sha256=ErhWzzJdEjTIuEF4f-r6IBgko-3Al9iUs1Eq4O42TUE,5021
|
|
34
34
|
flyte/_cache/defaults.py,sha256=gzJZW0QJPUfd2OPnGpv3tzIfwPtgFjAKoie3NP1P97U,217
|
|
@@ -75,8 +75,8 @@ flyte/_protos/common/identifier_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMh
|
|
|
75
75
|
flyte/_protos/common/identity_pb2.py,sha256=Q3UHzjnYkgHPjBC001DSRSVd5IbiarijpWpUt-GSWAo,4581
|
|
76
76
|
flyte/_protos/common/identity_pb2.pyi,sha256=gjcp8lg-XIBP4ZzFBI8-Uf8DofAkheZlZLG5Cj3m4-g,3720
|
|
77
77
|
flyte/_protos/common/identity_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
78
|
-
flyte/_protos/common/list_pb2.py,sha256=
|
|
79
|
-
flyte/_protos/common/list_pb2.pyi,sha256=
|
|
78
|
+
flyte/_protos/common/list_pb2.py,sha256=T8LVB2Gj8_FLEEfCjDOjBdqfhJ2ve4vizyqbgQ_exxw,3276
|
|
79
|
+
flyte/_protos/common/list_pb2.pyi,sha256=Mz0ZTm3eHTbaK86joit0xl8_jUWpswxDhLZmU3kg8hY,3398
|
|
80
80
|
flyte/_protos/common/list_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
81
81
|
flyte/_protos/common/policy_pb2.py,sha256=NceBASAzGQVU0A-WKSViDndQ_3cEGbDA3vXg8Lf-g0s,2966
|
|
82
82
|
flyte/_protos/common/policy_pb2.pyi,sha256=LCHthmNrqlRI-rrAB7D4gMrH-OnlrCGymquNGN6vO9Q,1535
|
|
@@ -104,47 +104,50 @@ flyte/_protos/validate/validate/validate_pb2.py,sha256=yJOyUdZVPAVOSvo8uNgynvObi
|
|
|
104
104
|
flyte/_protos/workflow/common_pb2.py,sha256=NmukAKm8cxBvxYrZ7VuARExi5M5SB0mcP1AxSkq7n5E,1812
|
|
105
105
|
flyte/_protos/workflow/common_pb2.pyi,sha256=h69_9esVb6NRD5QNC-ahv7IbjxH77UrT9M9wvqbcjSA,652
|
|
106
106
|
flyte/_protos/workflow/common_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
107
|
+
flyte/_protos/workflow/environment_pb2.py,sha256=N3zUd5CdKy6rZmZiAaiQRNmAv-3NOMMTzYRSQc5xIxs,1923
|
|
108
|
+
flyte/_protos/workflow/environment_pb2.pyi,sha256=ly3FuUNeCPo845N307SZ5-W1-DJGqOJK454jpJwoUVk,459
|
|
109
|
+
flyte/_protos/workflow/environment_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
107
110
|
flyte/_protos/workflow/node_execution_service_pb2.py,sha256=IOLg3tNikY7n00kLOVsC69yyXc5Ttnx-_-xUuc0q05Q,1654
|
|
108
111
|
flyte/_protos/workflow/node_execution_service_pb2.pyi,sha256=C7VVuw_bnxp68qemD3SLoGIL-Hmno6qkIoq3l6W2qb8,135
|
|
109
112
|
flyte/_protos/workflow/node_execution_service_pb2_grpc.py,sha256=2JJDS3Aww3FFDW-qYdTaxC75gRpsgnn4an6LPZmF9uA,947
|
|
110
113
|
flyte/_protos/workflow/queue_service_pb2.py,sha256=FuphK-Fy5kCjk9rLmQpD45-P9YS4B4aG8v7DEoF2XtE,11993
|
|
111
114
|
flyte/_protos/workflow/queue_service_pb2.pyi,sha256=qSCS0NyNRfNSjPuAlmVRprD4Be9d9rJNP6Of8lNsKGM,7819
|
|
112
115
|
flyte/_protos/workflow/queue_service_pb2_grpc.py,sha256=6KK87jYXrmK0jacf4AKhHp21QU9JFJPOiEBjbDRkBm0,7839
|
|
113
|
-
flyte/_protos/workflow/run_definition_pb2.py,sha256=
|
|
114
|
-
flyte/_protos/workflow/run_definition_pb2.pyi,sha256=
|
|
116
|
+
flyte/_protos/workflow/run_definition_pb2.py,sha256=9RuY5xbz7Fp8R9fHb3cCqfCvGYT3txLnTnuKUmcCpZA,16156
|
|
117
|
+
flyte/_protos/workflow/run_definition_pb2.pyi,sha256=lUt30Pnbqlg6vUD2pF64BpRjlAAbRUZe0of-vHCOeg8,15371
|
|
115
118
|
flyte/_protos/workflow/run_definition_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
116
119
|
flyte/_protos/workflow/run_logs_service_pb2.py,sha256=MKG9keauunf7EmIrlthQKgXrQAfMjbX9LyeBMlLhK30,3358
|
|
117
120
|
flyte/_protos/workflow/run_logs_service_pb2.pyi,sha256=88_Qp-qQh9PSUUPSsyuawc9gBi9_4OEbnp37cgH1VGE,1534
|
|
118
121
|
flyte/_protos/workflow/run_logs_service_pb2_grpc.py,sha256=xoNyNBaK9dmrjZtiYkZQSQnSLNY7d2CK9pr5BTP7zxQ,2694
|
|
119
|
-
flyte/_protos/workflow/run_service_pb2.py,sha256=
|
|
120
|
-
flyte/_protos/workflow/run_service_pb2.pyi,sha256=
|
|
122
|
+
flyte/_protos/workflow/run_service_pb2.py,sha256=aKeLCUAC_oIHHm4k6Pd7rbbspUwY5Cl3Rp7keasNbVo,14910
|
|
123
|
+
flyte/_protos/workflow/run_service_pb2.pyi,sha256=AZBcXfw6tvlfa3OjQzVt3pSB5xc2DJGyW4aUgF2y_9s,9045
|
|
121
124
|
flyte/_protos/workflow/run_service_pb2_grpc.py,sha256=tO1qnrD5_0KrtToCIcuseVhkQNdNIQ2yfZHCzysV5sY,19657
|
|
122
125
|
flyte/_protos/workflow/state_service_pb2.py,sha256=xDEak38Egukk2yR4kr7Y7y-SsL4Y1rCnPN-FiGmmYsM,5785
|
|
123
126
|
flyte/_protos/workflow/state_service_pb2.pyi,sha256=S3oEFSPHem-t7ySb2UGcWjmf-QK7gFG2rNCWAiIwzGk,3545
|
|
124
127
|
flyte/_protos/workflow/state_service_pb2_grpc.py,sha256=E5yH8ZHNWUBFJkvsvqgX7ZmVU45UmbaHZynHGcQUd70,5801
|
|
125
|
-
flyte/_protos/workflow/task_definition_pb2.py,sha256=
|
|
126
|
-
flyte/_protos/workflow/task_definition_pb2.pyi,sha256=
|
|
128
|
+
flyte/_protos/workflow/task_definition_pb2.py,sha256=fqqvgxX6DykFHwRJFIrmYkBxLx6Qhtq3CuzBViuzvag,7833
|
|
129
|
+
flyte/_protos/workflow/task_definition_pb2.pyi,sha256=WO23j393scV5Q5GFJfWOrydzNLG0indVAT36RxB6tw4,4163
|
|
127
130
|
flyte/_protos/workflow/task_definition_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
128
|
-
flyte/_protos/workflow/task_service_pb2.py,sha256=
|
|
129
|
-
flyte/_protos/workflow/task_service_pb2.pyi,sha256=
|
|
130
|
-
flyte/_protos/workflow/task_service_pb2_grpc.py,sha256=
|
|
131
|
-
flyte/_utils/__init__.py,sha256=
|
|
131
|
+
flyte/_protos/workflow/task_service_pb2.py,sha256=7kCVgR8Is9MzlbdoGd1kVCwz1ot39r2qyY3oZzE_Xuo,5781
|
|
132
|
+
flyte/_protos/workflow/task_service_pb2.pyi,sha256=W0OZWui3TbQANi0GL7lCVmbpJKRwJ0X-8vjXj1qNP5k,3100
|
|
133
|
+
flyte/_protos/workflow/task_service_pb2_grpc.py,sha256=whmfmOTiNhz6_CBsXm8aXUCwtA5bncOikqKYz-bKdok,5992
|
|
134
|
+
flyte/_utils/__init__.py,sha256=RByuYa2hSqsKrpLkFfjKspKxH3K7DzfVzTVnZsxkO0A,757
|
|
132
135
|
flyte/_utils/asyn.py,sha256=KeJKarXNIyD16g6oPM0T9cH7JDmh1KY7JLbwo7i0IlQ,3673
|
|
133
136
|
flyte/_utils/async_cache.py,sha256=JtZJmWO62OowJ0QFNl6wryWqh-kuDi76aAASMie87QY,4596
|
|
134
137
|
flyte/_utils/coro_management.py,sha256=_JTt9x9fOc_1OSe03DSheYoKOvlonBB_4WNCS9XSaoU,698
|
|
135
138
|
flyte/_utils/file_handling.py,sha256=iU4TxW--fCho_Eg5xTMODn96P03SxzF-V-5f-7bZAZY,2233
|
|
136
139
|
flyte/_utils/helpers.py,sha256=45ZC2OSNKS66DkTvif8W8x7MH4KxluvAyn0a92mKRqM,4366
|
|
137
140
|
flyte/_utils/lazy_module.py,sha256=fvXPjvZLzCfcI8Vzs4pKedUDdY0U_RQ1ZVrp9b8qBQY,1994
|
|
138
|
-
flyte/_utils/org_discovery.py,sha256=
|
|
141
|
+
flyte/_utils/org_discovery.py,sha256=C7aJa0LfnWBkDtSU9M7bE60zp27qEhJC58piqOErZ94,2088
|
|
139
142
|
flyte/_utils/uv_script_parser.py,sha256=PxqD8lSMi6xv0uDd1s8LKB2IPZr4ttZJCUweqlyMTKk,1483
|
|
140
143
|
flyte/cli/__init__.py,sha256=M02O-UGqQlA8JJ_jyWRiwQhTNc5CJJ7x9J7fNxTxBT0,52
|
|
141
|
-
flyte/cli/_abort.py,sha256=
|
|
142
|
-
flyte/cli/_common.py,sha256=
|
|
143
|
-
flyte/cli/_create.py,sha256=
|
|
144
|
+
flyte/cli/_abort.py,sha256=Ty-63Gtd2PUn6lCuL5AaasfBoPu7TDSU5EQKVbkF4qw,661
|
|
145
|
+
flyte/cli/_common.py,sha256=aDc1zT16I5htzYwfcztvoh0TxICbQFISlEyCU_8h5Bo,11053
|
|
146
|
+
flyte/cli/_create.py,sha256=a75II-xT71SpdopNY14rPuidO5qL0mH1UAwf205sVzQ,4313
|
|
144
147
|
flyte/cli/_delete.py,sha256=qq5A9d6vXdYvYz-SECXiC6LU5rAzahNTZKiKacOtcZ4,545
|
|
145
|
-
flyte/cli/_deploy.py,sha256=
|
|
148
|
+
flyte/cli/_deploy.py,sha256=mlpOG5P5rVVOZpFYHcxvqWjooJwnw7tmJXV7mbQm_7M,4795
|
|
146
149
|
flyte/cli/_gen.py,sha256=vlE5l8UR1zz4RSdaRyUfYFvGR0TLxGcTYcP4dhA3Pvg,5458
|
|
147
|
-
flyte/cli/_get.py,sha256=
|
|
150
|
+
flyte/cli/_get.py,sha256=U1OmRCqd39lGnkmmZVUJ3O8wyuKG_LEpGJg3UM-tV_Q,9895
|
|
148
151
|
flyte/cli/_params.py,sha256=cDeTvjOQP8EydVJUrncLeAxUaHvGorJyDvMSrAxapmM,19466
|
|
149
152
|
flyte/cli/_run.py,sha256=dkuf6PfmizFU1-RWX_9TsTcGuUNDpjY7f6ok90nZ2iM,7889
|
|
150
153
|
flyte/cli/main.py,sha256=P5a0Q4pKVKnc9QMdbdfp9I5ReGVykVCN-cUy0gURpLI,4287
|
|
@@ -161,16 +164,16 @@ flyte/io/_file.py,sha256=kp5700SKPy5htmMhm4hE2ybb99Ykny1b0Kwm3huCWXs,15572
|
|
|
161
164
|
flyte/io/_structured_dataset/__init__.py,sha256=69ixVV9OEXiLiQ6SV2S8tEC7dVQe7YTt9NV1OotlG64,4524
|
|
162
165
|
flyte/io/_structured_dataset/basic_dfs.py,sha256=77aYFrFigPC7cjM6UjCbU26REtXmwIBBapFN6KGYOO8,8224
|
|
163
166
|
flyte/io/_structured_dataset/structured_dataset.py,sha256=ddRjz36RhNxIy0gakzdLStBzoo4cAOgXbNqiqt5YhMI,52645
|
|
164
|
-
flyte/remote/__init__.py,sha256=
|
|
167
|
+
flyte/remote/__init__.py,sha256=h0J9W1yWbvPq2R9HXa_HezJtxHoWl6d9QKQbuuKDMnU,597
|
|
165
168
|
flyte/remote/_console.py,sha256=avmELJPx8nQMAVPrHlh6jEIRPjrMwFpdZjJsWOOa9rE,660
|
|
166
169
|
flyte/remote/_data.py,sha256=B5nMF_o_ePRuG-V4IrTXctXXYn7uEJqUNs_5unX-2fo,5846
|
|
167
170
|
flyte/remote/_logs.py,sha256=EOXg4OS8yYclsT6NASgOLMo0TA2sZpKb2MWZXpWBPuI,6404
|
|
168
171
|
flyte/remote/_project.py,sha256=dTBYqORDAbLvh9WnPO1Ytuzw2vxNYZwwNsKE2_b0o14,2807
|
|
169
172
|
flyte/remote/_run.py,sha256=9euHjYRX-xyxXuhn0MunYb9dmgl0FMU3a-FZNjJA4F8,31057
|
|
170
173
|
flyte/remote/_secret.py,sha256=l5xeMS83uMcWWeSSTRsSZUNhS0N--1Dze09C-thSOQs,4341
|
|
171
|
-
flyte/remote/_task.py,sha256=
|
|
174
|
+
flyte/remote/_task.py,sha256=7C8iKyeeiCMuePjDIihRhkWOtqRDmRJDq1e5lRK2s6U,12781
|
|
172
175
|
flyte/remote/_client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
173
|
-
flyte/remote/_client/_protocols.py,sha256=
|
|
176
|
+
flyte/remote/_client/_protocols.py,sha256=JyBWHs5WsVOxEDUyG9X7wPLDzzzjkoaNhJlU-X4YlN0,5599
|
|
174
177
|
flyte/remote/_client/controlplane.py,sha256=FsOfj4rO4MIMnYrpAT53F8q588VVf5t4sDuwoPuc840,3102
|
|
175
178
|
flyte/remote/_client/auth/__init__.py,sha256=JQrIlwaqPlPzrxcOREhcfyFsC4LrfqL5TRz6A3JNSEA,413
|
|
176
179
|
flyte/remote/_client/auth/_auth_utils.py,sha256=Is6mr18J8AMQlbtu-Q63aMJgrZ27dXXNSig8KshR1_8,545
|
|
@@ -199,7 +202,7 @@ flyte/storage/_remote_fs.py,sha256=kM_iszbccjVD5VtVdgfkl1FHS8NPnY__JOo_CPQUE4c,1
|
|
|
199
202
|
flyte/storage/_storage.py,sha256=mBy7MKII2M1UTVm_EUUDwVb7uT1_AOPzQr2wCJ-fgW0,9873
|
|
200
203
|
flyte/storage/_utils.py,sha256=8oLCM-7D7JyJhzUi1_Q1NFx8GBUPRfou0T_5tPBmPbE,309
|
|
201
204
|
flyte/syncify/__init__.py,sha256=WgTk-v-SntULnI55CsVy71cxGJ9Q6pxpTrhbPFuouJ0,1974
|
|
202
|
-
flyte/syncify/_api.py,sha256=
|
|
205
|
+
flyte/syncify/_api.py,sha256=udxXjOz1iTtnfmIcTlce8Nate6PqGmHrj-ZLfJRPtWA,10881
|
|
203
206
|
flyte/types/__init__.py,sha256=9310PRtVrwJePwEPeoUO0HPyIkgaja7-Dar_QlE_MUI,1745
|
|
204
207
|
flyte/types/_interface.py,sha256=mY7mb8v2hJPGk7AU99gdOWl4_jArA1VFtjYGlE31SK0,953
|
|
205
208
|
flyte/types/_pickle.py,sha256=PjdR66OTDMZ3OYq6GvM_Ua0cIo5t2XQaIjmpJ9xo4Ys,4050
|
|
@@ -207,8 +210,8 @@ flyte/types/_renderer.py,sha256=ygcCo5l60lHufyQISFddZfWwLlQ8kJAKxUT_XnR_6dY,4818
|
|
|
207
210
|
flyte/types/_string_literals.py,sha256=NlG1xV8RSA-sZ-n-IFQCAsdB6jXJOAKkHWtnopxVVDk,4231
|
|
208
211
|
flyte/types/_type_engine.py,sha256=oX906WSQ-e8E1X1vwdMcqiQi2fUUFY9A4wVZZf2yoaw,93667
|
|
209
212
|
flyte/types/_utils.py,sha256=pbts9E1_2LTdLygAY0UYTLYJ8AsN3BZyviSXvrtcutc,2626
|
|
210
|
-
flyte-0.2.
|
|
211
|
-
flyte-0.2.
|
|
212
|
-
flyte-0.2.
|
|
213
|
-
flyte-0.2.
|
|
214
|
-
flyte-0.2.
|
|
213
|
+
flyte-0.2.0b12.dist-info/METADATA,sha256=DXnACI-eTUCxiefdS6_zu0n5palCJavwo1DTwG1RX9s,4811
|
|
214
|
+
flyte-0.2.0b12.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
215
|
+
flyte-0.2.0b12.dist-info/entry_points.txt,sha256=MIq2z5dBurdCJfpXfMKzgBv7sJOakKRYxr8G0cMiTrg,75
|
|
216
|
+
flyte-0.2.0b12.dist-info/top_level.txt,sha256=7dkyFbikvA12LEZEqawx8oDG1CMod6hTliPj7iWzgYo,6
|
|
217
|
+
flyte-0.2.0b12.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|