flyte 0.0.1b0__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/__init__.py +62 -0
- flyte/_api_commons.py +3 -0
- flyte/_bin/__init__.py +0 -0
- flyte/_bin/runtime.py +126 -0
- flyte/_build.py +25 -0
- flyte/_cache/__init__.py +12 -0
- flyte/_cache/cache.py +146 -0
- flyte/_cache/defaults.py +9 -0
- flyte/_cache/policy_function_body.py +42 -0
- flyte/_cli/__init__.py +0 -0
- flyte/_cli/_common.py +287 -0
- flyte/_cli/_create.py +42 -0
- flyte/_cli/_delete.py +23 -0
- flyte/_cli/_deploy.py +140 -0
- flyte/_cli/_get.py +235 -0
- flyte/_cli/_run.py +152 -0
- flyte/_cli/main.py +72 -0
- flyte/_code_bundle/__init__.py +8 -0
- flyte/_code_bundle/_ignore.py +113 -0
- flyte/_code_bundle/_packaging.py +187 -0
- flyte/_code_bundle/_utils.py +339 -0
- flyte/_code_bundle/bundle.py +178 -0
- flyte/_context.py +146 -0
- flyte/_datastructures.py +342 -0
- flyte/_deploy.py +202 -0
- flyte/_doc.py +29 -0
- flyte/_docstring.py +32 -0
- flyte/_environment.py +43 -0
- flyte/_group.py +31 -0
- flyte/_hash.py +23 -0
- flyte/_image.py +760 -0
- flyte/_initialize.py +634 -0
- flyte/_interface.py +84 -0
- flyte/_internal/__init__.py +3 -0
- flyte/_internal/controllers/__init__.py +115 -0
- flyte/_internal/controllers/_local_controller.py +118 -0
- flyte/_internal/controllers/_trace.py +40 -0
- flyte/_internal/controllers/pbhash.py +39 -0
- flyte/_internal/controllers/remote/__init__.py +40 -0
- flyte/_internal/controllers/remote/_action.py +141 -0
- flyte/_internal/controllers/remote/_client.py +43 -0
- flyte/_internal/controllers/remote/_controller.py +361 -0
- flyte/_internal/controllers/remote/_core.py +402 -0
- flyte/_internal/controllers/remote/_informer.py +361 -0
- flyte/_internal/controllers/remote/_service_protocol.py +50 -0
- flyte/_internal/imagebuild/__init__.py +11 -0
- flyte/_internal/imagebuild/docker_builder.py +416 -0
- flyte/_internal/imagebuild/image_builder.py +241 -0
- flyte/_internal/imagebuild/remote_builder.py +0 -0
- flyte/_internal/resolvers/__init__.py +0 -0
- flyte/_internal/resolvers/_task_module.py +54 -0
- flyte/_internal/resolvers/common.py +31 -0
- flyte/_internal/resolvers/default.py +28 -0
- flyte/_internal/runtime/__init__.py +0 -0
- flyte/_internal/runtime/convert.py +199 -0
- flyte/_internal/runtime/entrypoints.py +135 -0
- flyte/_internal/runtime/io.py +136 -0
- flyte/_internal/runtime/resources_serde.py +138 -0
- flyte/_internal/runtime/task_serde.py +210 -0
- flyte/_internal/runtime/taskrunner.py +190 -0
- flyte/_internal/runtime/types_serde.py +54 -0
- flyte/_logging.py +124 -0
- flyte/_protos/__init__.py +0 -0
- flyte/_protos/common/authorization_pb2.py +66 -0
- flyte/_protos/common/authorization_pb2.pyi +108 -0
- flyte/_protos/common/authorization_pb2_grpc.py +4 -0
- flyte/_protos/common/identifier_pb2.py +71 -0
- flyte/_protos/common/identifier_pb2.pyi +82 -0
- flyte/_protos/common/identifier_pb2_grpc.py +4 -0
- flyte/_protos/common/identity_pb2.py +48 -0
- flyte/_protos/common/identity_pb2.pyi +72 -0
- flyte/_protos/common/identity_pb2_grpc.py +4 -0
- flyte/_protos/common/list_pb2.py +36 -0
- flyte/_protos/common/list_pb2.pyi +69 -0
- flyte/_protos/common/list_pb2_grpc.py +4 -0
- flyte/_protos/common/policy_pb2.py +37 -0
- flyte/_protos/common/policy_pb2.pyi +27 -0
- flyte/_protos/common/policy_pb2_grpc.py +4 -0
- flyte/_protos/common/role_pb2.py +37 -0
- flyte/_protos/common/role_pb2.pyi +53 -0
- flyte/_protos/common/role_pb2_grpc.py +4 -0
- flyte/_protos/common/runtime_version_pb2.py +28 -0
- flyte/_protos/common/runtime_version_pb2.pyi +24 -0
- flyte/_protos/common/runtime_version_pb2_grpc.py +4 -0
- flyte/_protos/logs/dataplane/payload_pb2.py +96 -0
- flyte/_protos/logs/dataplane/payload_pb2.pyi +168 -0
- flyte/_protos/logs/dataplane/payload_pb2_grpc.py +4 -0
- flyte/_protos/secret/definition_pb2.py +49 -0
- flyte/_protos/secret/definition_pb2.pyi +93 -0
- flyte/_protos/secret/definition_pb2_grpc.py +4 -0
- flyte/_protos/secret/payload_pb2.py +62 -0
- flyte/_protos/secret/payload_pb2.pyi +94 -0
- flyte/_protos/secret/payload_pb2_grpc.py +4 -0
- flyte/_protos/secret/secret_pb2.py +38 -0
- flyte/_protos/secret/secret_pb2.pyi +6 -0
- flyte/_protos/secret/secret_pb2_grpc.py +198 -0
- flyte/_protos/secret/secret_pb2_grpc_grpc.py +198 -0
- flyte/_protos/validate/validate/validate_pb2.py +76 -0
- flyte/_protos/workflow/node_execution_service_pb2.py +26 -0
- flyte/_protos/workflow/node_execution_service_pb2.pyi +4 -0
- flyte/_protos/workflow/node_execution_service_pb2_grpc.py +32 -0
- flyte/_protos/workflow/queue_service_pb2.py +106 -0
- flyte/_protos/workflow/queue_service_pb2.pyi +141 -0
- flyte/_protos/workflow/queue_service_pb2_grpc.py +172 -0
- flyte/_protos/workflow/run_definition_pb2.py +128 -0
- flyte/_protos/workflow/run_definition_pb2.pyi +310 -0
- flyte/_protos/workflow/run_definition_pb2_grpc.py +4 -0
- flyte/_protos/workflow/run_logs_service_pb2.py +41 -0
- flyte/_protos/workflow/run_logs_service_pb2.pyi +28 -0
- flyte/_protos/workflow/run_logs_service_pb2_grpc.py +69 -0
- flyte/_protos/workflow/run_service_pb2.py +133 -0
- flyte/_protos/workflow/run_service_pb2.pyi +175 -0
- flyte/_protos/workflow/run_service_pb2_grpc.py +412 -0
- flyte/_protos/workflow/state_service_pb2.py +58 -0
- flyte/_protos/workflow/state_service_pb2.pyi +71 -0
- flyte/_protos/workflow/state_service_pb2_grpc.py +138 -0
- flyte/_protos/workflow/task_definition_pb2.py +72 -0
- flyte/_protos/workflow/task_definition_pb2.pyi +65 -0
- flyte/_protos/workflow/task_definition_pb2_grpc.py +4 -0
- flyte/_protos/workflow/task_service_pb2.py +44 -0
- flyte/_protos/workflow/task_service_pb2.pyi +31 -0
- flyte/_protos/workflow/task_service_pb2_grpc.py +104 -0
- flyte/_resources.py +226 -0
- flyte/_retry.py +32 -0
- flyte/_reusable_environment.py +25 -0
- flyte/_run.py +411 -0
- flyte/_secret.py +61 -0
- flyte/_task.py +367 -0
- flyte/_task_environment.py +200 -0
- flyte/_timeout.py +47 -0
- flyte/_tools.py +27 -0
- flyte/_trace.py +128 -0
- flyte/_utils/__init__.py +20 -0
- flyte/_utils/asyn.py +119 -0
- flyte/_utils/coro_management.py +25 -0
- flyte/_utils/file_handling.py +72 -0
- flyte/_utils/helpers.py +108 -0
- flyte/_utils/lazy_module.py +54 -0
- flyte/_utils/uv_script_parser.py +49 -0
- flyte/_version.py +21 -0
- flyte/connectors/__init__.py +0 -0
- flyte/errors.py +143 -0
- flyte/extras/__init__.py +5 -0
- flyte/extras/_container.py +273 -0
- flyte/io/__init__.py +11 -0
- flyte/io/_dataframe.py +0 -0
- flyte/io/_dir.py +448 -0
- flyte/io/_file.py +468 -0
- flyte/io/pickle/__init__.py +0 -0
- flyte/io/pickle/transformer.py +117 -0
- flyte/io/structured_dataset/__init__.py +129 -0
- flyte/io/structured_dataset/basic_dfs.py +219 -0
- flyte/io/structured_dataset/structured_dataset.py +1061 -0
- flyte/py.typed +0 -0
- flyte/remote/__init__.py +25 -0
- flyte/remote/_client/__init__.py +0 -0
- flyte/remote/_client/_protocols.py +131 -0
- flyte/remote/_client/auth/__init__.py +12 -0
- flyte/remote/_client/auth/_authenticators/__init__.py +0 -0
- flyte/remote/_client/auth/_authenticators/base.py +397 -0
- flyte/remote/_client/auth/_authenticators/client_credentials.py +73 -0
- flyte/remote/_client/auth/_authenticators/device_code.py +118 -0
- flyte/remote/_client/auth/_authenticators/external_command.py +79 -0
- flyte/remote/_client/auth/_authenticators/factory.py +200 -0
- flyte/remote/_client/auth/_authenticators/pkce.py +516 -0
- flyte/remote/_client/auth/_channel.py +184 -0
- flyte/remote/_client/auth/_client_config.py +83 -0
- flyte/remote/_client/auth/_default_html.py +32 -0
- flyte/remote/_client/auth/_grpc_utils/__init__.py +0 -0
- flyte/remote/_client/auth/_grpc_utils/auth_interceptor.py +288 -0
- flyte/remote/_client/auth/_grpc_utils/default_metadata_interceptor.py +151 -0
- flyte/remote/_client/auth/_keyring.py +143 -0
- flyte/remote/_client/auth/_token_client.py +260 -0
- flyte/remote/_client/auth/errors.py +16 -0
- flyte/remote/_client/controlplane.py +95 -0
- flyte/remote/_console.py +18 -0
- flyte/remote/_data.py +155 -0
- flyte/remote/_logs.py +116 -0
- flyte/remote/_project.py +86 -0
- flyte/remote/_run.py +873 -0
- flyte/remote/_secret.py +132 -0
- flyte/remote/_task.py +227 -0
- flyte/report/__init__.py +3 -0
- flyte/report/_report.py +178 -0
- flyte/report/_template.html +124 -0
- flyte/storage/__init__.py +24 -0
- flyte/storage/_remote_fs.py +34 -0
- flyte/storage/_storage.py +251 -0
- flyte/storage/_utils.py +5 -0
- flyte/types/__init__.py +13 -0
- flyte/types/_interface.py +25 -0
- flyte/types/_renderer.py +162 -0
- flyte/types/_string_literals.py +120 -0
- flyte/types/_type_engine.py +2210 -0
- flyte/types/_utils.py +80 -0
- flyte-0.0.1b0.dist-info/METADATA +179 -0
- flyte-0.0.1b0.dist-info/RECORD +390 -0
- flyte-0.0.1b0.dist-info/WHEEL +5 -0
- flyte-0.0.1b0.dist-info/entry_points.txt +3 -0
- flyte-0.0.1b0.dist-info/top_level.txt +1 -0
- union/__init__.py +54 -0
- union/_api_commons.py +3 -0
- union/_bin/__init__.py +0 -0
- union/_bin/runtime.py +113 -0
- union/_build.py +25 -0
- union/_cache/__init__.py +12 -0
- union/_cache/cache.py +141 -0
- union/_cache/defaults.py +9 -0
- union/_cache/policy_function_body.py +42 -0
- union/_cli/__init__.py +0 -0
- union/_cli/_common.py +263 -0
- union/_cli/_create.py +40 -0
- union/_cli/_delete.py +23 -0
- union/_cli/_deploy.py +120 -0
- union/_cli/_get.py +162 -0
- union/_cli/_params.py +579 -0
- union/_cli/_run.py +150 -0
- union/_cli/main.py +72 -0
- union/_code_bundle/__init__.py +8 -0
- union/_code_bundle/_ignore.py +113 -0
- union/_code_bundle/_packaging.py +187 -0
- union/_code_bundle/_utils.py +342 -0
- union/_code_bundle/bundle.py +176 -0
- union/_context.py +146 -0
- union/_datastructures.py +295 -0
- union/_deploy.py +185 -0
- union/_doc.py +29 -0
- union/_docstring.py +26 -0
- union/_environment.py +43 -0
- union/_group.py +31 -0
- union/_hash.py +23 -0
- union/_image.py +760 -0
- union/_initialize.py +585 -0
- union/_interface.py +84 -0
- union/_internal/__init__.py +3 -0
- union/_internal/controllers/__init__.py +77 -0
- union/_internal/controllers/_local_controller.py +77 -0
- union/_internal/controllers/pbhash.py +39 -0
- union/_internal/controllers/remote/__init__.py +40 -0
- union/_internal/controllers/remote/_action.py +131 -0
- union/_internal/controllers/remote/_client.py +43 -0
- union/_internal/controllers/remote/_controller.py +169 -0
- union/_internal/controllers/remote/_core.py +341 -0
- union/_internal/controllers/remote/_informer.py +260 -0
- union/_internal/controllers/remote/_service_protocol.py +44 -0
- union/_internal/imagebuild/__init__.py +11 -0
- union/_internal/imagebuild/docker_builder.py +416 -0
- union/_internal/imagebuild/image_builder.py +243 -0
- union/_internal/imagebuild/remote_builder.py +0 -0
- union/_internal/resolvers/__init__.py +0 -0
- union/_internal/resolvers/_task_module.py +31 -0
- union/_internal/resolvers/common.py +24 -0
- union/_internal/resolvers/default.py +27 -0
- union/_internal/runtime/__init__.py +0 -0
- union/_internal/runtime/convert.py +163 -0
- union/_internal/runtime/entrypoints.py +121 -0
- union/_internal/runtime/io.py +136 -0
- union/_internal/runtime/resources_serde.py +134 -0
- union/_internal/runtime/task_serde.py +202 -0
- union/_internal/runtime/taskrunner.py +179 -0
- union/_internal/runtime/types_serde.py +53 -0
- union/_logging.py +124 -0
- union/_protos/__init__.py +0 -0
- union/_protos/common/authorization_pb2.py +66 -0
- union/_protos/common/authorization_pb2.pyi +106 -0
- union/_protos/common/authorization_pb2_grpc.py +4 -0
- union/_protos/common/identifier_pb2.py +71 -0
- union/_protos/common/identifier_pb2.pyi +82 -0
- union/_protos/common/identifier_pb2_grpc.py +4 -0
- union/_protos/common/identity_pb2.py +48 -0
- union/_protos/common/identity_pb2.pyi +72 -0
- union/_protos/common/identity_pb2_grpc.py +4 -0
- union/_protos/common/list_pb2.py +36 -0
- union/_protos/common/list_pb2.pyi +69 -0
- union/_protos/common/list_pb2_grpc.py +4 -0
- union/_protos/common/policy_pb2.py +37 -0
- union/_protos/common/policy_pb2.pyi +27 -0
- union/_protos/common/policy_pb2_grpc.py +4 -0
- union/_protos/common/role_pb2.py +37 -0
- union/_protos/common/role_pb2.pyi +51 -0
- union/_protos/common/role_pb2_grpc.py +4 -0
- union/_protos/common/runtime_version_pb2.py +28 -0
- union/_protos/common/runtime_version_pb2.pyi +24 -0
- union/_protos/common/runtime_version_pb2_grpc.py +4 -0
- union/_protos/logs/dataplane/payload_pb2.py +96 -0
- union/_protos/logs/dataplane/payload_pb2.pyi +168 -0
- union/_protos/logs/dataplane/payload_pb2_grpc.py +4 -0
- union/_protos/secret/definition_pb2.py +49 -0
- union/_protos/secret/definition_pb2.pyi +93 -0
- union/_protos/secret/definition_pb2_grpc.py +4 -0
- union/_protos/secret/payload_pb2.py +62 -0
- union/_protos/secret/payload_pb2.pyi +94 -0
- union/_protos/secret/payload_pb2_grpc.py +4 -0
- union/_protos/secret/secret_pb2.py +38 -0
- union/_protos/secret/secret_pb2.pyi +6 -0
- union/_protos/secret/secret_pb2_grpc.py +198 -0
- union/_protos/validate/validate/validate_pb2.py +76 -0
- union/_protos/workflow/node_execution_service_pb2.py +26 -0
- union/_protos/workflow/node_execution_service_pb2.pyi +4 -0
- union/_protos/workflow/node_execution_service_pb2_grpc.py +32 -0
- union/_protos/workflow/queue_service_pb2.py +75 -0
- union/_protos/workflow/queue_service_pb2.pyi +103 -0
- union/_protos/workflow/queue_service_pb2_grpc.py +172 -0
- union/_protos/workflow/run_definition_pb2.py +100 -0
- union/_protos/workflow/run_definition_pb2.pyi +256 -0
- union/_protos/workflow/run_definition_pb2_grpc.py +4 -0
- union/_protos/workflow/run_logs_service_pb2.py +41 -0
- union/_protos/workflow/run_logs_service_pb2.pyi +28 -0
- union/_protos/workflow/run_logs_service_pb2_grpc.py +69 -0
- union/_protos/workflow/run_service_pb2.py +133 -0
- union/_protos/workflow/run_service_pb2.pyi +173 -0
- union/_protos/workflow/run_service_pb2_grpc.py +412 -0
- union/_protos/workflow/state_service_pb2.py +58 -0
- union/_protos/workflow/state_service_pb2.pyi +69 -0
- union/_protos/workflow/state_service_pb2_grpc.py +138 -0
- union/_protos/workflow/task_definition_pb2.py +72 -0
- union/_protos/workflow/task_definition_pb2.pyi +65 -0
- union/_protos/workflow/task_definition_pb2_grpc.py +4 -0
- union/_protos/workflow/task_service_pb2.py +44 -0
- union/_protos/workflow/task_service_pb2.pyi +31 -0
- union/_protos/workflow/task_service_pb2_grpc.py +104 -0
- union/_resources.py +226 -0
- union/_retry.py +32 -0
- union/_reusable_environment.py +25 -0
- union/_run.py +374 -0
- union/_secret.py +61 -0
- union/_task.py +354 -0
- union/_task_environment.py +186 -0
- union/_timeout.py +47 -0
- union/_tools.py +27 -0
- union/_utils/__init__.py +11 -0
- union/_utils/asyn.py +119 -0
- union/_utils/file_handling.py +71 -0
- union/_utils/helpers.py +46 -0
- union/_utils/lazy_module.py +54 -0
- union/_utils/uv_script_parser.py +49 -0
- union/_version.py +21 -0
- union/connectors/__init__.py +0 -0
- union/errors.py +128 -0
- union/extras/__init__.py +5 -0
- union/extras/_container.py +263 -0
- union/io/__init__.py +11 -0
- union/io/_dataframe.py +0 -0
- union/io/_dir.py +425 -0
- union/io/_file.py +418 -0
- union/io/pickle/__init__.py +0 -0
- union/io/pickle/transformer.py +117 -0
- union/io/structured_dataset/__init__.py +122 -0
- union/io/structured_dataset/basic_dfs.py +219 -0
- union/io/structured_dataset/structured_dataset.py +1057 -0
- union/py.typed +0 -0
- union/remote/__init__.py +23 -0
- union/remote/_client/__init__.py +0 -0
- union/remote/_client/_protocols.py +129 -0
- union/remote/_client/auth/__init__.py +12 -0
- union/remote/_client/auth/_authenticators/__init__.py +0 -0
- union/remote/_client/auth/_authenticators/base.py +391 -0
- union/remote/_client/auth/_authenticators/client_credentials.py +73 -0
- union/remote/_client/auth/_authenticators/device_code.py +120 -0
- union/remote/_client/auth/_authenticators/external_command.py +77 -0
- union/remote/_client/auth/_authenticators/factory.py +200 -0
- union/remote/_client/auth/_authenticators/pkce.py +515 -0
- union/remote/_client/auth/_channel.py +184 -0
- union/remote/_client/auth/_client_config.py +83 -0
- union/remote/_client/auth/_default_html.py +32 -0
- union/remote/_client/auth/_grpc_utils/__init__.py +0 -0
- union/remote/_client/auth/_grpc_utils/auth_interceptor.py +204 -0
- union/remote/_client/auth/_grpc_utils/default_metadata_interceptor.py +144 -0
- union/remote/_client/auth/_keyring.py +154 -0
- union/remote/_client/auth/_token_client.py +258 -0
- union/remote/_client/auth/errors.py +16 -0
- union/remote/_client/controlplane.py +86 -0
- union/remote/_data.py +149 -0
- union/remote/_logs.py +74 -0
- union/remote/_project.py +86 -0
- union/remote/_run.py +820 -0
- union/remote/_secret.py +132 -0
- union/remote/_task.py +193 -0
- union/report/__init__.py +3 -0
- union/report/_report.py +178 -0
- union/report/_template.html +124 -0
- union/storage/__init__.py +24 -0
- union/storage/_remote_fs.py +34 -0
- union/storage/_storage.py +247 -0
- union/storage/_utils.py +5 -0
- union/types/__init__.py +11 -0
- union/types/_renderer.py +162 -0
- union/types/_string_literals.py +120 -0
- union/types/_type_engine.py +2131 -0
- union/types/_utils.py +80 -0
|
@@ -0,0 +1,390 @@
|
|
|
1
|
+
flyte/__init__.py,sha256=klTe7_6xJK-7Aaozj2gmCulji6vCY1fET5h6pdn0chA,1331
|
|
2
|
+
flyte/_api_commons.py,sha256=9drgP2Qgr8rdDmZlI31TEpa056zCBiI1tAMO001SQ8o,64
|
|
3
|
+
flyte/_build.py,sha256=MVBM-i2rCxHhIFQCR-Tc0JMA2XuJ5r4UZBW4M7HRvSw,580
|
|
4
|
+
flyte/_context.py,sha256=OSMuyrAahRYPXci5Bgi5plhnhd2nPTcNJqlHtwkJOAE,5004
|
|
5
|
+
flyte/_datastructures.py,sha256=YQWNJpXrRhZSiYA4x5tRcOl4SGBynD6J6QUV7fj4L_o,12554
|
|
6
|
+
flyte/_deploy.py,sha256=hSk9kDfIyM0fDxh145RD1wMP6RskHikx3AzDFKBz3c4,7663
|
|
7
|
+
flyte/_doc.py,sha256=_OPCf3t_git6UT7kSJISFaWO9cfNzJhhoe6JjVdyCJo,706
|
|
8
|
+
flyte/_docstring.py,sha256=SsG0Ab_YMAwy2ABJlEo3eBKlyC3kwPdnDJ1FIms-ZBQ,1127
|
|
9
|
+
flyte/_environment.py,sha256=ft0EsyFg6OnoIFPFbwkABLcq676veIH3TTR4SNilrj8,1499
|
|
10
|
+
flyte/_group.py,sha256=YmkTWJlO39wrrcOeNV3QUQUriNRwtdMFE_r8sXLLpSI,752
|
|
11
|
+
flyte/_hash.py,sha256=Of_Zl_DzzzF2jp4ZsLm-3o-xJFCCJ8_GubmLI1htx78,504
|
|
12
|
+
flyte/_image.py,sha256=fiOib4dPYi5WQXGXJ2t--EGNupF9QlZxb6VDZWzItRE,29193
|
|
13
|
+
flyte/_initialize.py,sha256=Bli8Kg-RnEgYfCnjjOx6c9TNc2uhR_RsCc7AWmPfq1k,22595
|
|
14
|
+
flyte/_interface.py,sha256=MP5o_qpIwfBNtAc7zo_cLSjMugsPyanuO6EgUSk4fBE,3644
|
|
15
|
+
flyte/_logging.py,sha256=FQvF3W1kkFypbARcOQ7WZVXO0XJasXp8EhozF6E6-aQ,3379
|
|
16
|
+
flyte/_resources.py,sha256=UOLyEVhdxolvrHhddiBbYdJuE1RkM_l7xeS9G1abe6M,7583
|
|
17
|
+
flyte/_retry.py,sha256=rfLv0MvWxzPByKESTglEmjPsytEAKiIvvmzlJxXwsfE,941
|
|
18
|
+
flyte/_reusable_environment.py,sha256=P4FBATVKAYcIKpdFN98sI8acPyKy8eIGx6V0kUb9YdM,1289
|
|
19
|
+
flyte/_run.py,sha256=WkNHbEkLuOSbxLuklT7oImJfwXLCcQXGmON_0AIYNTg,16826
|
|
20
|
+
flyte/_secret.py,sha256=SqIHs6mi8hEkIIBZe3bI9jJsPt65Mt6dV5uh9_op1ME,2392
|
|
21
|
+
flyte/_task.py,sha256=jGlnLmbHu7JXZlXvqQ-Sn9pw5ypBsm0Qcd9o7xvcPxk,14637
|
|
22
|
+
flyte/_task_environment.py,sha256=1JSHkCvS-Ereh389mu1Z2eNIqsTXQGV-ZLiiqW09RnY,8412
|
|
23
|
+
flyte/_timeout.py,sha256=zx5sFcbYmjJAJbZWSGzzX-BpC9HC7Jfs35T7vVhKwkk,1571
|
|
24
|
+
flyte/_tools.py,sha256=JewkQZBR_M85tS6QY8e4xXue75jbOE48nID4ZHnc9jY,632
|
|
25
|
+
flyte/_trace.py,sha256=jWJqmIntfubetcS4S705tIyoGR4jnXaPgS3JuK4gkuo,5502
|
|
26
|
+
flyte/_version.py,sha256=r2ohyOLVZBZTuwQr4jbH-dtebjgnKkEbRiB3h5hRT54,519
|
|
27
|
+
flyte/errors.py,sha256=ulVzQ3TncddYOqQ3gvauDJAHTShWTpY0XZpqNqBZyOY,4036
|
|
28
|
+
flyte/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
29
|
+
flyte/_bin/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
30
|
+
flyte/_bin/runtime.py,sha256=1-69O3yI4LEWsRn_JCy8vlCmpZ7kMvcNIbkEFgUca8g,4327
|
|
31
|
+
flyte/_cache/__init__.py,sha256=zhdO5UuHQRdzn8GHmSN40nrxfAmI4ihDRuHZM11U84Y,305
|
|
32
|
+
flyte/_cache/cache.py,sha256=3DL8E_WnLCzavE7DSIqc49nOJyKCVQr-LWZQmz6MwlY,5031
|
|
33
|
+
flyte/_cache/defaults.py,sha256=gzJZW0QJPUfd2OPnGpv3tzIfwPtgFjAKoie3NP1P97U,217
|
|
34
|
+
flyte/_cache/policy_function_body.py,sha256=_AcyN6XKRXq16yV5lWuRJYCIVUlmyPvvWuYRxfU-Ldo,1507
|
|
35
|
+
flyte/_cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
36
|
+
flyte/_cli/_common.py,sha256=nNILPMmLkAiy0CepiLdqkEM9Zjg4eH0gWTwHdK6NL9Y,8467
|
|
37
|
+
flyte/_cli/_create.py,sha256=2fFUvujm_GXPup3-CNHvHwxXySnAk4DPlAJiS8eyqw4,1116
|
|
38
|
+
flyte/_cli/_delete.py,sha256=MVxMKIgQC3R-EKDEYSySCqHTLHhQrhjwo4sdv5TynEA,498
|
|
39
|
+
flyte/_cli/_deploy.py,sha256=QZmvYKWYHv7AZn4wmhSKf2oA2ss5b4K11AbM3Edhl28,4319
|
|
40
|
+
flyte/_cli/_get.py,sha256=XhBeNqwb2g0EFKfN_b-XecYMojIVNNCaBZ0J_jL6jFQ,6772
|
|
41
|
+
flyte/_cli/_run.py,sha256=SE7c4YlCQxEuM2w2cPh-zLonwFC2lvc9MUaEl_RXxLI,4801
|
|
42
|
+
flyte/_cli/main.py,sha256=plHK94u2LIZDx6lm67cp2bvhhXM9H-6S4j4NNNSKuUo,1700
|
|
43
|
+
flyte/_code_bundle/__init__.py,sha256=G7DJTQ0UN_ETvdh55pYcWsTrZJKXEcyQl9iQQNQOBXQ,328
|
|
44
|
+
flyte/_code_bundle/_ignore.py,sha256=Tfaoa62CQVTH17kBHD6Xv6xEh1FhcAyvXivl9m-MEE0,3853
|
|
45
|
+
flyte/_code_bundle/_packaging.py,sha256=_wEozcQTYgqvAAaKQYna9ptvShIMlXk3vEdccwAOYn8,6873
|
|
46
|
+
flyte/_code_bundle/_utils.py,sha256=jdGsKLN12gdjqWq8ZGXeLPGQ6InhrK4iY9UB-IGDTo0,12583
|
|
47
|
+
flyte/_code_bundle/bundle.py,sha256=2JGVTio1M_t-quugVN-R8VHSqOPnYuxHYpEpQlGy6e0,7670
|
|
48
|
+
flyte/_internal/__init__.py,sha256=vjXgGzAAjy609YFkAy9_RVPuUlslsHSJBXCLNTVnqOY,136
|
|
49
|
+
flyte/_internal/controllers/__init__.py,sha256=MshnWe5I28u6EF6TJ8Ij0NTvzuQBcOZW8Gp9bF-dMyo,3767
|
|
50
|
+
flyte/_internal/controllers/_local_controller.py,sha256=8oAVeFTFdEUX7yFTkNELT0LhpMZp-j8NGSq7gTn6W30,4442
|
|
51
|
+
flyte/_internal/controllers/_trace.py,sha256=-ajP0FnotKCqjP0QQVrDu81boWNsnu3ZHNLhBKLssGg,1135
|
|
52
|
+
flyte/_internal/controllers/pbhash.py,sha256=gGDJWxSaXqOv3U3zdBv7Lx6Euudo2I2baamiItuoqrM,1372
|
|
53
|
+
flyte/_internal/controllers/remote/__init__.py,sha256=op1CMiqVWef6KyUj61bnNr4rV_2RPmKJbvDw-UYgFtQ,1176
|
|
54
|
+
flyte/_internal/controllers/remote/_action.py,sha256=FZL7itHqlAjbASE0aevuL-fWMj38K7RHeuNMK2ZgvOc,4914
|
|
55
|
+
flyte/_internal/controllers/remote/_client.py,sha256=vfv-RaIEFuu6emU_ORjtClCF3JfMIbCtrZAFkQdv6J4,1212
|
|
56
|
+
flyte/_internal/controllers/remote/_controller.py,sha256=Hmy6hFsTRDoZEx3GaRpEZt8dEnpG3owZ9bSwZgxsB08,15344
|
|
57
|
+
flyte/_internal/controllers/remote/_core.py,sha256=NRPfL7PO8UKywr4lyBqSeplqWJpXHVTeKVeWFrdBTVw,18000
|
|
58
|
+
flyte/_internal/controllers/remote/_informer.py,sha256=6WPaT1EmDcIwQ3VlujGWICzHy-kaGhMut_zBh2ShZnE,14186
|
|
59
|
+
flyte/_internal/controllers/remote/_service_protocol.py,sha256=-p5FXdo5pp5xmr9fJ0sGB9aE7mimeC6x13bqwyIR77k,1345
|
|
60
|
+
flyte/_internal/imagebuild/__init__.py,sha256=cLXVxkAyFpbdC1y-k3Rb6FRW9f_xpoRQWVn__G9IqKs,354
|
|
61
|
+
flyte/_internal/imagebuild/docker_builder.py,sha256=xkfs22WGskEAzxmyEc-ZJ4m5ogLGBCSJoxdWXoHC2tU,13948
|
|
62
|
+
flyte/_internal/imagebuild/image_builder.py,sha256=q-TRcF_t2nS8FqBOtIIdnSo1Jrq378jqzceYDPzne8Q,9902
|
|
63
|
+
flyte/_internal/imagebuild/remote_builder.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
64
|
+
flyte/_internal/resolvers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
65
|
+
flyte/_internal/resolvers/_task_module.py,sha256=jwy1QYygUK7xmpCZLt1SPTfJCkfox3Ck3mTlTsm66UI,1973
|
|
66
|
+
flyte/_internal/resolvers/common.py,sha256=ADQLRoyGsJ4vuUkitffMGrMKKjy0vpk6X53g4FuKDLc,993
|
|
67
|
+
flyte/_internal/resolvers/default.py,sha256=nX4DHUYod1nRvEsl_vSgutQVEdExu2xL8pRkyi4VWbY,981
|
|
68
|
+
flyte/_internal/runtime/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
69
|
+
flyte/_internal/runtime/convert.py,sha256=4PCXaQHLKcTYT2jfj25nxp23-i5OkDw3S7SCTJM_ELU,7759
|
|
70
|
+
flyte/_internal/runtime/entrypoints.py,sha256=l_VtUsPd0YqQoN2_POFyOw7c9YJFQnUWIOPSWaLWZZ0,5136
|
|
71
|
+
flyte/_internal/runtime/io.py,sha256=b9loNxDkohLorSaoiSnp2z7jDpt8Ivn05po-rP7Xnio,4241
|
|
72
|
+
flyte/_internal/runtime/resources_serde.py,sha256=tvMMv3l6cZEt_cfs7zVE_Kqs5qh-_r7fsEPxb6xMxMk,4812
|
|
73
|
+
flyte/_internal/runtime/task_serde.py,sha256=NKuVoKAFu94wDKat1kByHC8-ISAUCxE1U92cXkKvTxE,8358
|
|
74
|
+
flyte/_internal/runtime/taskrunner.py,sha256=zcSQjpDQ7v4pt4uMCMnjf75Gu_krQKsQkP4gBVWcBsw,7252
|
|
75
|
+
flyte/_internal/runtime/types_serde.py,sha256=dOeuSZ1xcYRHg-fyIkPvjFyCtKWisg7guHU-DoKztU8,1822
|
|
76
|
+
flyte/_protos/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
77
|
+
flyte/_protos/common/authorization_pb2.py,sha256=6G7CAfq_Vq1qrm8JFkAnMAj0AaEipiX7MkjA7nk91-M,6707
|
|
78
|
+
flyte/_protos/common/authorization_pb2.pyi,sha256=tdqc3wZo3Yc6lKfjVgJlUFUFzGv4GAaCknIv43RGd-8,4759
|
|
79
|
+
flyte/_protos/common/authorization_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
80
|
+
flyte/_protos/common/identifier_pb2.py,sha256=Stfe32AVvRe9G5fazu63_qQlbVPOiQQ5Prn138EqCvE,6379
|
|
81
|
+
flyte/_protos/common/identifier_pb2.pyi,sha256=liHxsjjUE1QxXvOPr1s27S0agU8ohT1tHSJ5c1KmJYA,3132
|
|
82
|
+
flyte/_protos/common/identifier_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
83
|
+
flyte/_protos/common/identity_pb2.py,sha256=Q3UHzjnYkgHPjBC001DSRSVd5IbiarijpWpUt-GSWAo,4581
|
|
84
|
+
flyte/_protos/common/identity_pb2.pyi,sha256=gjcp8lg-XIBP4ZzFBI8-Uf8DofAkheZlZLG5Cj3m4-g,3720
|
|
85
|
+
flyte/_protos/common/identity_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
86
|
+
flyte/_protos/common/list_pb2.py,sha256=OOhJJ4cKHuhpBsbUkCrAOc6ZJjJabAcTNkgoYcuFRx4,3223
|
|
87
|
+
flyte/_protos/common/list_pb2.pyi,sha256=s7j9QPVHN5sMhAqGzsWCI1Q7Gyo9HxsFmzo38KiwPPU,3289
|
|
88
|
+
flyte/_protos/common/list_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
89
|
+
flyte/_protos/common/policy_pb2.py,sha256=NceBASAzGQVU0A-WKSViDndQ_3cEGbDA3vXg8Lf-g0s,2966
|
|
90
|
+
flyte/_protos/common/policy_pb2.pyi,sha256=LCHthmNrqlRI-rrAB7D4gMrH-OnlrCGymquNGN6vO9Q,1535
|
|
91
|
+
flyte/_protos/common/policy_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
92
|
+
flyte/_protos/common/role_pb2.py,sha256=_Ve6LHrjS617n4Wa36LYVo_vvxlL_fbqbi891XQ44FA,3301
|
|
93
|
+
flyte/_protos/common/role_pb2.pyi,sha256=wVl1Q4x5hhdJ3s12hxqnA6J6tLbg6VXBWKLz8CZOjZY,2661
|
|
94
|
+
flyte/_protos/common/role_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
95
|
+
flyte/_protos/common/runtime_version_pb2.py,sha256=djTmB3fRv2V0IV6Jzz4mtmHvEuEK4KPCkJWdRcW3DUQ,2012
|
|
96
|
+
flyte/_protos/common/runtime_version_pb2.pyi,sha256=pPQ9qVtfvE1sGhdZo47aThk2quLtXOOywRhYXFp-Kzg,1132
|
|
97
|
+
flyte/_protos/common/runtime_version_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
98
|
+
flyte/_protos/logs/dataplane/payload_pb2.py,sha256=ni5wgcOTYaqCPz4BgYzruJ6eOC_h0xYJ_m4MXspEmyQ,11549
|
|
99
|
+
flyte/_protos/logs/dataplane/payload_pb2.pyi,sha256=AVk0TgCJ0hRHjGuwdgAWMyj7125ch353jg2GcNCNzfY,9208
|
|
100
|
+
flyte/_protos/logs/dataplane/payload_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
101
|
+
flyte/_protos/secret/definition_pb2.py,sha256=OCV8zbPz9nxKJM215_3J4sbT0YVx5z_p6vCoYNHFZo4,4904
|
|
102
|
+
flyte/_protos/secret/definition_pb2.pyi,sha256=EQPG_os98mnRT3Hfn3kHHgI-ZYrIV6ZUmo2PgY4vAFM,4412
|
|
103
|
+
flyte/_protos/secret/definition_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
104
|
+
flyte/_protos/secret/payload_pb2.py,sha256=O0ryqbUf6UG08r7MVfpReXeIFxg6334PSw75hjwBFwA,5918
|
|
105
|
+
flyte/_protos/secret/payload_pb2.pyi,sha256=0rxXcrbekexC2MrbvwPLZNf33EjPSaRKt2nXcpSaoxM,4386
|
|
106
|
+
flyte/_protos/secret/payload_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
107
|
+
flyte/_protos/secret/secret_pb2.py,sha256=Zcvxs6pRv8H0_amjLjd5i_pxYhQRPFy4Vs-WsC9zRG8,3554
|
|
108
|
+
flyte/_protos/secret/secret_pb2.pyi,sha256=gQ2SbW8J93TB2i4c7FjsrJdj38rlhLmdY1T3kOomJgA,255
|
|
109
|
+
flyte/_protos/secret/secret_pb2_grpc.py,sha256=3DOSlIwXhKUn_Kvsv3V6Hmnge1NgtZUI2V_wYOl3aak,9085
|
|
110
|
+
flyte/_protos/secret/secret_pb2_grpc_grpc.py,sha256=3DOSlIwXhKUn_Kvsv3V6Hmnge1NgtZUI2V_wYOl3aak,9085
|
|
111
|
+
flyte/_protos/validate/validate/validate_pb2.py,sha256=yJOyUdZVPAVOSvo8uNgynvObiS-fQFYJE97KilJnLZA,13409
|
|
112
|
+
flyte/_protos/workflow/node_execution_service_pb2.py,sha256=IOLg3tNikY7n00kLOVsC69yyXc5Ttnx-_-xUuc0q05Q,1654
|
|
113
|
+
flyte/_protos/workflow/node_execution_service_pb2.pyi,sha256=C7VVuw_bnxp68qemD3SLoGIL-Hmno6qkIoq3l6W2qb8,135
|
|
114
|
+
flyte/_protos/workflow/node_execution_service_pb2_grpc.py,sha256=2JJDS3Aww3FFDW-qYdTaxC75gRpsgnn4an6LPZmF9uA,947
|
|
115
|
+
flyte/_protos/workflow/queue_service_pb2.py,sha256=jR1AEczpIWtM_UGiOYIiBKzJgRXCSveDFp7kIfLjiuw,12160
|
|
116
|
+
flyte/_protos/workflow/queue_service_pb2.pyi,sha256=6ShNYyrUZuwSWOlBrhT4vjkgEfqiyT67dYbnX5TUtnw,7673
|
|
117
|
+
flyte/_protos/workflow/queue_service_pb2_grpc.py,sha256=TnK6wx8LTOCl2UrCA4_RxCU163vxFIfsfvGiEOv8N6E,7881
|
|
118
|
+
flyte/_protos/workflow/run_definition_pb2.py,sha256=fpQ5VYWAlOFN4cnH4BRh64xpXHUed8r4NgQr5OlZ27c,16019
|
|
119
|
+
flyte/_protos/workflow/run_definition_pb2.pyi,sha256=toTdsCzHF2aIei6d_r0bwEUkUpMy1u0c9pMsBfL-wfY,15140
|
|
120
|
+
flyte/_protos/workflow/run_definition_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
121
|
+
flyte/_protos/workflow/run_logs_service_pb2.py,sha256=MKG9keauunf7EmIrlthQKgXrQAfMjbX9LyeBMlLhK30,3358
|
|
122
|
+
flyte/_protos/workflow/run_logs_service_pb2.pyi,sha256=88_Qp-qQh9PSUUPSsyuawc9gBi9_4OEbnp37cgH1VGE,1534
|
|
123
|
+
flyte/_protos/workflow/run_logs_service_pb2_grpc.py,sha256=xoNyNBaK9dmrjZtiYkZQSQnSLNY7d2CK9pr5BTP7zxQ,2694
|
|
124
|
+
flyte/_protos/workflow/run_service_pb2.py,sha256=KDVyv2EO14XExFNGib2Y0Q7G8DrP3K2GQbj_-puuk0Y,15458
|
|
125
|
+
flyte/_protos/workflow/run_service_pb2.pyi,sha256=Wr5QPywY34crvcOJWVFImd9Q2FfSGkGIbbh4BMWkxUo,9417
|
|
126
|
+
flyte/_protos/workflow/run_service_pb2_grpc.py,sha256=tO1qnrD5_0KrtToCIcuseVhkQNdNIQ2yfZHCzysV5sY,19657
|
|
127
|
+
flyte/_protos/workflow/state_service_pb2.py,sha256=xDEak38Egukk2yR4kr7Y7y-SsL4Y1rCnPN-FiGmmYsM,5785
|
|
128
|
+
flyte/_protos/workflow/state_service_pb2.pyi,sha256=S3oEFSPHem-t7ySb2UGcWjmf-QK7gFG2rNCWAiIwzGk,3545
|
|
129
|
+
flyte/_protos/workflow/state_service_pb2_grpc.py,sha256=E5yH8ZHNWUBFJkvsvqgX7ZmVU45UmbaHZynHGcQUd70,5801
|
|
130
|
+
flyte/_protos/workflow/task_definition_pb2.py,sha256=x-q44ATxHCswazGEHUbWfpvsl4UoMcs49FvZBx4v58M,6567
|
|
131
|
+
flyte/_protos/workflow/task_definition_pb2.pyi,sha256=sw1JLQR7Rz1PUogtbPlp4VPGkNZeOmc_aNAqlZdPIFA,2917
|
|
132
|
+
flyte/_protos/workflow/task_definition_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
133
|
+
flyte/_protos/workflow/task_service_pb2.py,sha256=lY1MamKB9kNprHpBm1zQkeg25aTItXARu7Ta7rxzlB8,3787
|
|
134
|
+
flyte/_protos/workflow/task_service_pb2.pyi,sha256=YY9pajzA_eF_xMHgVQMvThNI0QYulgfLn1741IYo8tI,1495
|
|
135
|
+
flyte/_protos/workflow/task_service_pb2_grpc.py,sha256=PdhEfPraBIeN-UQulZsA2D0on830aTbfkBpvxPZBq9E,4311
|
|
136
|
+
flyte/_utils/__init__.py,sha256=6-hCbI-RMQ-Ey9QrtMWMDMrPgCSIx2ewq7qTHmBy4i8,539
|
|
137
|
+
flyte/_utils/asyn.py,sha256=KeJKarXNIyD16g6oPM0T9cH7JDmh1KY7JLbwo7i0IlQ,3673
|
|
138
|
+
flyte/_utils/coro_management.py,sha256=hlWzxdrsBYfUwzQS7qtltclG56XPxBMNgWE5lkuYdrY,760
|
|
139
|
+
flyte/_utils/file_handling.py,sha256=iU4TxW--fCho_Eg5xTMODn96P03SxzF-V-5f-7bZAZY,2233
|
|
140
|
+
flyte/_utils/helpers.py,sha256=Ntrs1WilJS7a4oLmcIPLXMi0cuzRDiCr_wwgtpV30uk,3953
|
|
141
|
+
flyte/_utils/lazy_module.py,sha256=fvXPjvZLzCfcI8Vzs4pKedUDdY0U_RQ1ZVrp9b8qBQY,1994
|
|
142
|
+
flyte/_utils/uv_script_parser.py,sha256=PxqD8lSMi6xv0uDd1s8LKB2IPZr4ttZJCUweqlyMTKk,1483
|
|
143
|
+
flyte/connectors/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
144
|
+
flyte/extras/__init__.py,sha256=FhB0uK7H1Yo5De9vOuF7UGnezTKncj3u2Wo5uQdWN0g,74
|
|
145
|
+
flyte/extras/_container.py,sha256=Us3gfyDtr0MiI1n6HIeGOTmJewxxpS7HyfRx12LMYHE,11248
|
|
146
|
+
flyte/io/__init__.py,sha256=e2wHVEoZ84TGOtOPrtTg6hJpeuxiYI56Sg011yq6nUQ,236
|
|
147
|
+
flyte/io/_dataframe.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
148
|
+
flyte/io/_dir.py,sha256=K3tz3pHKmpMppgX2HtI6Bz0H6EIdHFj96-7Ub47TJO8,15328
|
|
149
|
+
flyte/io/_file.py,sha256=Ek40PN-Qo30HZvUKetXUGZKYooevtF-LoPtxMZGBa3I,15533
|
|
150
|
+
flyte/io/pickle/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
151
|
+
flyte/io/pickle/transformer.py,sha256=b7vAxLHgi-HMHy3vOG0sGMeDf6LimFmU_jAcvNOZI1o,4047
|
|
152
|
+
flyte/io/structured_dataset/__init__.py,sha256=69ixVV9OEXiLiQ6SV2S8tEC7dVQe7YTt9NV1OotlG64,4524
|
|
153
|
+
flyte/io/structured_dataset/basic_dfs.py,sha256=lrcALNYke_gSmmAhIiUN5afqhA-W5bSuKJUCoW6S4CE,8223
|
|
154
|
+
flyte/io/structured_dataset/structured_dataset.py,sha256=DrRIHA3zbkfLBekw3pPTF_SM0Rbn_BGBp1YJPyd9zY0,52644
|
|
155
|
+
flyte/remote/__init__.py,sha256=zBWV88VF-L8430xVrOyk07EmLsOKhOUMVBsqFUDtO6Q,565
|
|
156
|
+
flyte/remote/_console.py,sha256=komQZODLaRSv5VnnUOBP8-OlTWC_MTlFgu_dTVWEAnk,645
|
|
157
|
+
flyte/remote/_data.py,sha256=qNZwB_cCXBojP6nSIwp8_x0idxhbPFXvmv0SoKwvENE,5791
|
|
158
|
+
flyte/remote/_logs.py,sha256=aoC0TsLjfTzCGdF7Qv1ezYkLG2_rZibxNLuaVAX66as,4229
|
|
159
|
+
flyte/remote/_project.py,sha256=shAs9Hw0e5PAOciTAEOGVsdvo70PunxBXdOylHSyWw8,2834
|
|
160
|
+
flyte/remote/_run.py,sha256=9Kehgp4nLb72jrJcLMTO9t2bF5iljX9j4-M7tfcmFug,28027
|
|
161
|
+
flyte/remote/_secret.py,sha256=3fPx3RIuRJ0h15gj2CF9xKcAfTSCvhW3i0v4YqPMcCk,4394
|
|
162
|
+
flyte/remote/_task.py,sha256=dXeKrQZQ_yGg16AThjlTDX1dGdZexHnA1ZrmlYrzRRU,7931
|
|
163
|
+
flyte/remote/_client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
164
|
+
flyte/remote/_client/_protocols.py,sha256=RVlVpX0jNg9kIf80lgtYimIWlqv30HOiFAdmDAROXCs,5481
|
|
165
|
+
flyte/remote/_client/controlplane.py,sha256=upxOrJL8q-y1xNapBBTpfnkXAFvL1Nvomf-qQ3yAU7A,3022
|
|
166
|
+
flyte/remote/_client/auth/__init__.py,sha256=JQrIlwaqPlPzrxcOREhcfyFsC4LrfqL5TRz6A3JNSEA,413
|
|
167
|
+
flyte/remote/_client/auth/_channel.py,sha256=wK_B-3TRYYMYYh_RB6Wsqydsl0xLv11zytQf8nHRCJ0,8122
|
|
168
|
+
flyte/remote/_client/auth/_client_config.py,sha256=Elit5TCLjMQDiktiUmMKy2POWwwb5rKgIXfG3-rpfbs,3304
|
|
169
|
+
flyte/remote/_client/auth/_default_html.py,sha256=XAdgP-25WySMODbusWOcQQPiXin1h-hfzmRJv_Dg3tE,1651
|
|
170
|
+
flyte/remote/_client/auth/_keyring.py,sha256=BL-FzGe5ryuBRCwwpvvG8IzkYuXiJTU2J0P1l-Za5IM,5176
|
|
171
|
+
flyte/remote/_client/auth/_token_client.py,sha256=RUmlxlVZjZlQBE-CM8y_je7SeZhA_Xn0ZI28oVgLLxE,10436
|
|
172
|
+
flyte/remote/_client/auth/errors.py,sha256=ZYS9k4GX_McacKhxHKt5V2A4CWjLUq4RkBx_goDTdHY,390
|
|
173
|
+
flyte/remote/_client/auth/_authenticators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
174
|
+
flyte/remote/_client/auth/_authenticators/base.py,sha256=7ygwRYIt_BoSNfUFuc0E7mS88xD9AkwIkSX2Cv8be34,16636
|
|
175
|
+
flyte/remote/_client/auth/_authenticators/client_credentials.py,sha256=e9DOFdKEvaM3uSR10lnNuJaOwAcCkZQWZPKv7xUoFsI,3483
|
|
176
|
+
flyte/remote/_client/auth/_authenticators/device_code.py,sha256=G4jBkHS51kQ333dAuk7dCVSpd1Zy8g85YBdwMp8QoO0,4855
|
|
177
|
+
flyte/remote/_client/auth/_authenticators/external_command.py,sha256=IfTJQACPd1xc6htZYC-HdMIx6Q9JHBPw1HUG1Pv6lXg,3838
|
|
178
|
+
flyte/remote/_client/auth/_authenticators/factory.py,sha256=_oBWs7xIG6l13q06V2PUGIDmzU9-XYUK5hx5S6gZjrU,10291
|
|
179
|
+
flyte/remote/_client/auth/_authenticators/pkce.py,sha256=fQatN6oH675QVBDoWsnJ_wWMcIXGA6wR7skC8BOOY5M,23147
|
|
180
|
+
flyte/remote/_client/auth/_grpc_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
181
|
+
flyte/remote/_client/auth/_grpc_utils/auth_interceptor.py,sha256=JCjdoWV41sjdvfJcUmrJdIfQ0meuGFwv2ArU7FQGDDA,12403
|
|
182
|
+
flyte/remote/_client/auth/_grpc_utils/default_metadata_interceptor.py,sha256=IoMGWM42_VyzxqIVYe458o0uKsqhH-mcERUs9CY1L5U,6194
|
|
183
|
+
flyte/report/__init__.py,sha256=yLbeUxYaVaDlgBod3Oh34zGBSotl1UlXq1vUkb9q7cs,152
|
|
184
|
+
flyte/report/_report.py,sha256=36e0qikyY-Wsv4OzvTqkl23pk5ekrXIuhA4qsm_RRQs,5191
|
|
185
|
+
flyte/report/_template.html,sha256=YehmLJG3QMYQ10UT1YZBu2ncVmAJ4iyqVp5hF3sXRAs,3458
|
|
186
|
+
flyte/storage/__init__.py,sha256=HV83NpDRznq9WSRGoZet9uhDU9AqlqrcO3Ns1LewoO8,407
|
|
187
|
+
flyte/storage/_remote_fs.py,sha256=kM_iszbccjVD5VtVdgfkl1FHS8NPnY__JOo_CPQUE4c,1124
|
|
188
|
+
flyte/storage/_storage.py,sha256=tHDIPI8xMiECHagXTu8f4gotkX5QrvzZHjCwTz-W5CA,9082
|
|
189
|
+
flyte/storage/_utils.py,sha256=8oLCM-7D7JyJhzUi1_Q1NFx8GBUPRfou0T_5tPBmPbE,309
|
|
190
|
+
flyte/types/__init__.py,sha256=xMIYOolT3Vq0qXy7unw90IVdYztdMDpKg0oG0XAPC9o,364
|
|
191
|
+
flyte/types/_interface.py,sha256=1yWgZxFPvD92uCyQQdAx1zLG6ArL733jhUbpP4DPuqQ,962
|
|
192
|
+
flyte/types/_renderer.py,sha256=ygcCo5l60lHufyQISFddZfWwLlQ8kJAKxUT_XnR_6dY,4818
|
|
193
|
+
flyte/types/_string_literals.py,sha256=NlG1xV8RSA-sZ-n-IFQCAsdB6jXJOAKkHWtnopxVVDk,4231
|
|
194
|
+
flyte/types/_type_engine.py,sha256=5clcmUlduFybr5MOd618ZxRd0Qd8Zoho46ERbDcvJiE,93582
|
|
195
|
+
flyte/types/_utils.py,sha256=pbts9E1_2LTdLygAY0UYTLYJ8AsN3BZyviSXvrtcutc,2626
|
|
196
|
+
union/__init__.py,sha256=suWxp2g82aqR-VlhJ89TODFSJAr3luIbfLo2SsaHMKY,1124
|
|
197
|
+
union/_api_commons.py,sha256=9drgP2Qgr8rdDmZlI31TEpa056zCBiI1tAMO001SQ8o,64
|
|
198
|
+
union/_build.py,sha256=56czjGuj5_L5F1DIa5abRqxq-i8McmyzFs0tzNzk0Bw,580
|
|
199
|
+
union/_context.py,sha256=SN8qH7ntSqkFwyAHdPE7_RZ5BFQT8UaDgSXng5jthQE,4982
|
|
200
|
+
union/_datastructures.py,sha256=k-vTLOYBt-lQ8-cTpKwV0qf2TaC1CUg_EKMb2fSrGgI,10915
|
|
201
|
+
union/_deploy.py,sha256=veDvA3b3bKqg2eD81AAqsd33L0gdXCGHufomg8onoZc,6891
|
|
202
|
+
union/_doc.py,sha256=CPwd8E8CrxUYodoYos5Q0diGiENB30Rf7Bu0XGFm4Co,682
|
|
203
|
+
union/_docstring.py,sha256=8SC1a_BBwTF9dNSVk0HTzJsV5weugXpDrR7qldRUZr8,939
|
|
204
|
+
union/_environment.py,sha256=fbJ7xsTrXt0cw7mmqKeQH-rm6MaMYzV5RfpiWvx_o98,1499
|
|
205
|
+
union/_group.py,sha256=YmkTWJlO39wrrcOeNV3QUQUriNRwtdMFE_r8sXLLpSI,752
|
|
206
|
+
union/_hash.py,sha256=Of_Zl_DzzzF2jp4ZsLm-3o-xJFCCJ8_GubmLI1htx78,504
|
|
207
|
+
union/_image.py,sha256=d6B8-NWYTFUGJ72rXEoM-3bk9sNR_y9aCmbIuV3c2Vs,29016
|
|
208
|
+
union/_initialize.py,sha256=WPhMoW67mUvjYj0y0XgAgBw-ubvOvv3SQYMxE9qcuWE,20370
|
|
209
|
+
union/_interface.py,sha256=doINWG7b_z7nDcs09KKSmoCwioz7B0i8VqhKhVILiDo,3644
|
|
210
|
+
union/_logging.py,sha256=71g9W79WJz_fD3I2ssA0dJA2furIrWN5rzrBuGdVoWI,3374
|
|
211
|
+
union/_resources.py,sha256=UOLyEVhdxolvrHhddiBbYdJuE1RkM_l7xeS9G1abe6M,7583
|
|
212
|
+
union/_retry.py,sha256=rfLv0MvWxzPByKESTglEmjPsytEAKiIvvmzlJxXwsfE,941
|
|
213
|
+
union/_reusable_environment.py,sha256=P4FBATVKAYcIKpdFN98sI8acPyKy8eIGx6V0kUb9YdM,1289
|
|
214
|
+
union/_run.py,sha256=8SGNcfSZuZQjAZTtwQ_-rj5MqyvTluIptpCPN4eJHxk,15438
|
|
215
|
+
union/_secret.py,sha256=SqIHs6mi8hEkIIBZe3bI9jJsPt65Mt6dV5uh9_op1ME,2392
|
|
216
|
+
union/_task.py,sha256=h22owC7Wm_ebEzUoYfIl34Du4ET7rHHNKF2mvEypqUo,14650
|
|
217
|
+
union/_task_environment.py,sha256=JM9wVDAbSgOO-nmabFUPV4IjuRnVCEhVBWL-FeMIqI0,7438
|
|
218
|
+
union/_timeout.py,sha256=zx5sFcbYmjJAJbZWSGzzX-BpC9HC7Jfs35T7vVhKwkk,1571
|
|
219
|
+
union/_tools.py,sha256=JewkQZBR_M85tS6QY8e4xXue75jbOE48nID4ZHnc9jY,632
|
|
220
|
+
union/_version.py,sha256=40tZRCez4JgsOOPdWXFUczM9mAfodZovuc8dew-7xMM,564
|
|
221
|
+
union/errors.py,sha256=UdIBbygaTmcCiG0YvkB6IsENVsY9YKoZzAZ9NA_A5Rk,3618
|
|
222
|
+
union/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
223
|
+
union/_bin/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
224
|
+
union/_bin/runtime.py,sha256=ItGpL6Z6UGqxxy2U8AuGTkj1B8GBLm6tfpU5X5IGRNI,3717
|
|
225
|
+
union/_cache/__init__.py,sha256=zhdO5UuHQRdzn8GHmSN40nrxfAmI4ihDRuHZM11U84Y,305
|
|
226
|
+
union/_cache/cache.py,sha256=7GZXS0Rb6oX6AqZcc4CV7jhTPqMq4wpDdcknyxY6IhE,4800
|
|
227
|
+
union/_cache/defaults.py,sha256=gzJZW0QJPUfd2OPnGpv3tzIfwPtgFjAKoie3NP1P97U,217
|
|
228
|
+
union/_cache/policy_function_body.py,sha256=_AcyN6XKRXq16yV5lWuRJYCIVUlmyPvvWuYRxfU-Ldo,1507
|
|
229
|
+
union/_cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
230
|
+
union/_cli/_common.py,sha256=WRtDt9IIzg10If1iniGZfA1-DTWeWu8g_veJHQtRDMI,7787
|
|
231
|
+
union/_cli/_create.py,sha256=msFAFbNAM45rthTcL_JNEZqvyXacnSOzRUalQ-GqOTg,1083
|
|
232
|
+
union/_cli/_delete.py,sha256=YQptuTGL2s9NQZrhusdjBeDN6YuGIWHvdw61efPaEZs,498
|
|
233
|
+
union/_cli/_deploy.py,sha256=rl-uI5nDXYkL6dOJ3ChN_UpIVDOqvO4l4DnwfHZeliU,3868
|
|
234
|
+
union/_cli/_get.py,sha256=Q7FHwG9M0INtsRga_tCm9JTOO0as6ai_dBjiECMpSqs,4103
|
|
235
|
+
union/_cli/_params.py,sha256=TPib-9JIBdE-uJG861Us_IG8mAsM9ZiHrTQGMMMafsA,21084
|
|
236
|
+
union/_cli/_run.py,sha256=VHzq6dDI4EWjm2PYAHG6eEFuJWWxkNX_o40XSbA7hCs,4731
|
|
237
|
+
union/_cli/main.py,sha256=plHK94u2LIZDx6lm67cp2bvhhXM9H-6S4j4NNNSKuUo,1700
|
|
238
|
+
union/_code_bundle/__init__.py,sha256=G7DJTQ0UN_ETvdh55pYcWsTrZJKXEcyQl9iQQNQOBXQ,328
|
|
239
|
+
union/_code_bundle/_ignore.py,sha256=pdhAIbItXl70PT67IUHD_IQbj7GHXY5Ic9cEshPPDqg,3842
|
|
240
|
+
union/_code_bundle/_packaging.py,sha256=sC2tSN0mskzTqcyRkmabaURfMfDf69CJzp8CycHderA,6833
|
|
241
|
+
union/_code_bundle/_utils.py,sha256=sa7ctis96aM0SkFbUOLezYomAZ86ymREIE0nJGop7Ss,12765
|
|
242
|
+
union/_code_bundle/bundle.py,sha256=FXoHFdZDAFcLar4-J8tMHpeZt_hXCHjN_2byp2PZtUk,7626
|
|
243
|
+
union/_internal/__init__.py,sha256=vjXgGzAAjy609YFkAy9_RVPuUlslsHSJBXCLNTVnqOY,136
|
|
244
|
+
union/_internal/controllers/__init__.py,sha256=mbwcvM8jgi6Ft_lmNDiTcczci3IT1Q27JwI21WwYGm0,2352
|
|
245
|
+
union/_internal/controllers/_local_controller.py,sha256=4STcvdLwJ65hUUucRBPbCpPIqMketLZd4tWNxt9TzWw,2829
|
|
246
|
+
union/_internal/controllers/pbhash.py,sha256=gGDJWxSaXqOv3U3zdBv7Lx6Euudo2I2baamiItuoqrM,1372
|
|
247
|
+
union/_internal/controllers/remote/__init__.py,sha256=T0M6vgLK_yBQAfl9F7Vrt6e_8BkawWHYLJcFRpjSGbo,1190
|
|
248
|
+
union/_internal/controllers/remote/_action.py,sha256=KC-7ONEfsGgzpbhcZAXZfjCvofVmJBLSuIFk5hQAJ7s,4500
|
|
249
|
+
union/_internal/controllers/remote/_client.py,sha256=TNjKJWEtXR6Loco7zTIOCVlsCN3puoNWuDJxh1E4Qno,1215
|
|
250
|
+
union/_internal/controllers/remote/_controller.py,sha256=3hExyvQptV-kVNFzKVpEpwhMIQJoCeOaK7hQeop_kGc,7201
|
|
251
|
+
union/_internal/controllers/remote/_core.py,sha256=XPNARjkYGIyFUKTD5EJFGskPtozwb8wiQ1SEe1q7pxo,15706
|
|
252
|
+
union/_internal/controllers/remote/_informer.py,sha256=NFKo4wSiaVaPP42L6CDP9tMNNRpxcDpeW-x2ddCAKjk,9978
|
|
253
|
+
union/_internal/controllers/remote/_service_protocol.py,sha256=kmC4gVz7HZJyAenhTv7A9Sk1RbxU9gRz45QL4_yT8qE,1245
|
|
254
|
+
union/_internal/imagebuild/__init__.py,sha256=ybzDn4Vz6t8idqV00KS4SgVxJzEJLG0SSEtb-h0tRBE,354
|
|
255
|
+
union/_internal/imagebuild/docker_builder.py,sha256=9Y6NmzCq-GTj1xL7j-lX8YRsi5cdxBH_i2R5_-JfXiE,13904
|
|
256
|
+
union/_internal/imagebuild/image_builder.py,sha256=_9asZrVRy2tPTN7tcjHC7BG0vDwzSIGOctMzVKJvYgo,10000
|
|
257
|
+
union/_internal/imagebuild/remote_builder.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
258
|
+
union/_internal/resolvers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
259
|
+
union/_internal/resolvers/_task_module.py,sha256=TtkCN6A2VHZ34_b-Gae-5jXToikrQO0Ibs0fwZYhoRw,1052
|
|
260
|
+
union/_internal/resolvers/common.py,sha256=cStHV1cJtRJXuYOkzGQEKGypNiYdlzwmiRHbUUFZPco,758
|
|
261
|
+
union/_internal/resolvers/default.py,sha256=ztExYadzcp3NBORp8g2nrYs0IsnAw1AaVdDndE6ACsM,903
|
|
262
|
+
union/_internal/runtime/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
263
|
+
union/_internal/runtime/convert.py,sha256=3boyEO7d_5EKh6eErtNHJAzXa9C0r80wBiV8tzZO4Eg,6439
|
|
264
|
+
union/_internal/runtime/entrypoints.py,sha256=ZykyF_rH_sPTbfdkni_81oc1WBj1A1PTnux-rPhS5GI,4534
|
|
265
|
+
union/_internal/runtime/io.py,sha256=ekELjMKsbnw5YybbGMDiFolElF9Xjw4NYId9bk9JPQY,4241
|
|
266
|
+
union/_internal/runtime/resources_serde.py,sha256=F2mv1tHULw3Z01VQQOd_K4XdyDbj4-ZJFSwAGkjKjnc,4716
|
|
267
|
+
union/_internal/runtime/task_serde.py,sha256=wG3ifLAao9B_-nhPxdKI67hkg9XiYvOQjibv6BRr7D4,7944
|
|
268
|
+
union/_internal/runtime/taskrunner.py,sha256=NK7ew0RWrF7TqR8Xf_TWl4LJy3WDJuxT4lCK3PQi700,6813
|
|
269
|
+
union/_internal/runtime/types_serde.py,sha256=yBqB3l0xVKcu5Dv-tcWRn5ch-mL4PqVLTY52y8R6w3w,1794
|
|
270
|
+
union/_protos/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
271
|
+
union/_protos/common/authorization_pb2.py,sha256=FK6GlW3t4OUttzrUVveYiVjYVC3n4M2-MgYL0xXutD8,6653
|
|
272
|
+
union/_protos/common/authorization_pb2.pyi,sha256=lXK8G48JErcXefP4qk0TztmpKMOtHBQdDU7_Hnw1FQQ,4674
|
|
273
|
+
union/_protos/common/authorization_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
274
|
+
union/_protos/common/identifier_pb2.py,sha256=58aCu2k_0psGmlm3NLH091kdEPrsXVAZbA2wdxzTXxQ,6379
|
|
275
|
+
union/_protos/common/identifier_pb2.pyi,sha256=WFhhkwYW-HAVgqWYmP4RfWDrRmRdY9tCk_fdoz50wtU,3132
|
|
276
|
+
union/_protos/common/identifier_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
277
|
+
union/_protos/common/identity_pb2.py,sha256=sqRtnE_WL8PmxC09_W8naTDJo9d19vvipyWLMWeuamg,4581
|
|
278
|
+
union/_protos/common/identity_pb2.pyi,sha256=nV5eU37QOAquUmtJsFRQMzzOT31Bd1hoRxnNrgY8JeI,3720
|
|
279
|
+
union/_protos/common/identity_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
280
|
+
union/_protos/common/list_pb2.py,sha256=OOhJJ4cKHuhpBsbUkCrAOc6ZJjJabAcTNkgoYcuFRx4,3223
|
|
281
|
+
union/_protos/common/list_pb2.pyi,sha256=s7j9QPVHN5sMhAqGzsWCI1Q7Gyo9HxsFmzo38KiwPPU,3289
|
|
282
|
+
union/_protos/common/list_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
283
|
+
union/_protos/common/policy_pb2.py,sha256=BENILU8Kbljaa_tKuYKe-pInM3WiPwG55wGFYuOncco,2966
|
|
284
|
+
union/_protos/common/policy_pb2.pyi,sha256=dARhU57ShtnY5ZmR8fm0eVolxdsh0tD0OgSDFp3sFq0,1535
|
|
285
|
+
union/_protos/common/policy_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
286
|
+
union/_protos/common/role_pb2.py,sha256=TxqM2LCS-XKxsmiKtv9Dnp-YSUmJe-jm-WGaFZrIHlY,3267
|
|
287
|
+
union/_protos/common/role_pb2.pyi,sha256=R94MJ_ZuNKWTwiCr1y7ahEGrd8aiZdxU01aHeVkWxas,2590
|
|
288
|
+
union/_protos/common/role_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
289
|
+
union/_protos/common/runtime_version_pb2.py,sha256=djTmB3fRv2V0IV6Jzz4mtmHvEuEK4KPCkJWdRcW3DUQ,2012
|
|
290
|
+
union/_protos/common/runtime_version_pb2.pyi,sha256=pPQ9qVtfvE1sGhdZo47aThk2quLtXOOywRhYXFp-Kzg,1132
|
|
291
|
+
union/_protos/common/runtime_version_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
292
|
+
union/_protos/logs/dataplane/payload_pb2.py,sha256=j6WwPBakhxAbD9w4cEm__wZQyZkhACcF9YS79VZ66Cg,11549
|
|
293
|
+
union/_protos/logs/dataplane/payload_pb2.pyi,sha256=8_ztyWfoI_2Zmya2GEdEnRisnWQsJB5zDt7BD_KTfEQ,9208
|
|
294
|
+
union/_protos/logs/dataplane/payload_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
295
|
+
union/_protos/secret/definition_pb2.py,sha256=1e-C5lKszwuuH-caw4XRVyDb5Rn87wUzTkG2qwMnnOY,4904
|
|
296
|
+
union/_protos/secret/definition_pb2.pyi,sha256=SaWFJLVB69OCEwSzLLfq9B4cOp2a-kzZSpmrCgNwedc,4412
|
|
297
|
+
union/_protos/secret/definition_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
298
|
+
union/_protos/secret/payload_pb2.py,sha256=I2EIw_8-1xPlJ2V--3ZbM_QmfUf8UpOclbPbTIwxWfw,5918
|
|
299
|
+
union/_protos/secret/payload_pb2.pyi,sha256=jpVNdXb-W5QDsl16nA0AJs9Dun23xmLko0y3KKFonbw,4386
|
|
300
|
+
union/_protos/secret/payload_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
301
|
+
union/_protos/secret/secret_pb2.py,sha256=kNy1g-bWE878dOPf7ggFW4FSzTlqGWUEeap3rci7qcM,3554
|
|
302
|
+
union/_protos/secret/secret_pb2.pyi,sha256=1XU7MuSRDFvsUhiXdwqvU1rX3kcuzlo2UVwSDNvrde4,255
|
|
303
|
+
union/_protos/secret/secret_pb2_grpc.py,sha256=WmRaRDttskoFD1ezW8IuZcETrcOBcsCwDVyQPyLaCMk,9085
|
|
304
|
+
union/_protos/validate/validate/validate_pb2.py,sha256=yJOyUdZVPAVOSvo8uNgynvObiS-fQFYJE97KilJnLZA,13409
|
|
305
|
+
union/_protos/workflow/node_execution_service_pb2.py,sha256=IOLg3tNikY7n00kLOVsC69yyXc5Ttnx-_-xUuc0q05Q,1654
|
|
306
|
+
union/_protos/workflow/node_execution_service_pb2.pyi,sha256=C7VVuw_bnxp68qemD3SLoGIL-Hmno6qkIoq3l6W2qb8,135
|
|
307
|
+
union/_protos/workflow/node_execution_service_pb2_grpc.py,sha256=2JJDS3Aww3FFDW-qYdTaxC75gRpsgnn4an6LPZmF9uA,947
|
|
308
|
+
union/_protos/workflow/queue_service_pb2.py,sha256=wj_C_NfDh5v3HRTt1o-pxjISBtHl9ml5qI9KpeplTRs,8684
|
|
309
|
+
union/_protos/workflow/queue_service_pb2.pyi,sha256=JBf4yfg12cYpAFUfIvV2AOMB4oipdsud-bTMQ8Ul8rA,6087
|
|
310
|
+
union/_protos/workflow/queue_service_pb2_grpc.py,sha256=S7QG61dbgF0RTFtNMaTVM3kywIZWoFxNpwDDoPRH0Ss,7881
|
|
311
|
+
union/_protos/workflow/run_definition_pb2.py,sha256=NULRT1hDWPH50tZ7piXRMO6bHqd2ZFiVTVb4FJEHa0U,12472
|
|
312
|
+
union/_protos/workflow/run_definition_pb2.pyi,sha256=SfC1DJ3ZxmWTeTmGyF1GdyLgABMfMgu9RtZBW7dEQks,12659
|
|
313
|
+
union/_protos/workflow/run_definition_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
314
|
+
union/_protos/workflow/run_logs_service_pb2.py,sha256=pWum0yf1XbU6weUD725XLfP8GXkWnPzuE3qzsZdlOiY,3358
|
|
315
|
+
union/_protos/workflow/run_logs_service_pb2.pyi,sha256=XhoL2N_m-Mh2f8ZcHWDLWaXyzOB0_Lgw-VDEuOlXiI0,1534
|
|
316
|
+
union/_protos/workflow/run_logs_service_pb2_grpc.py,sha256=UT1BjIniC2sTWltGmGwZ54AquhpNcDn7aBAnTxYcr3s,2694
|
|
317
|
+
union/_protos/workflow/run_service_pb2.py,sha256=HT3qxLhT3_cR5vKF02dxGgLkceoAUfOZ4kq77vz3QAM,15355
|
|
318
|
+
union/_protos/workflow/run_service_pb2.pyi,sha256=Qo-PWKa03ZlH45yec172sNnQGLeT05fYxPFxpPWG9eQ,9169
|
|
319
|
+
union/_protos/workflow/run_service_pb2_grpc.py,sha256=O8wWTFw_b8pnWAwHmYYn4SMiNMa4hY-A6Eg6EZmvThg,19657
|
|
320
|
+
union/_protos/workflow/state_service_pb2.py,sha256=vJp0w1RnxdmBTHiyd-x5VoBe6Ye6psrb6oOs9PSn_W4,5738
|
|
321
|
+
union/_protos/workflow/state_service_pb2.pyi,sha256=fRPl0NHoM9wFRFGvPw8SGibKm-vj8YfpjAJ-IJ6yM88,3433
|
|
322
|
+
union/_protos/workflow/state_service_pb2_grpc.py,sha256=UkLBtKny_VA4ZQCINqaSKwGMPBc5wZIwJCbOhoRRqHw,5801
|
|
323
|
+
union/_protos/workflow/task_definition_pb2.py,sha256=jGjqyPHseC_2voTuo8Gk5q5pfNQgQ7_nsvDs1m9DrK0,6567
|
|
324
|
+
union/_protos/workflow/task_definition_pb2.pyi,sha256=LmXmKBtm6IDK9wyonfl4SaUmaorFh-fsIMAQ8BbENsQ,2917
|
|
325
|
+
union/_protos/workflow/task_definition_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
326
|
+
union/_protos/workflow/task_service_pb2.py,sha256=8T__13blN8kKtzXAcDXxrYdI2ymjrUYzAn1cw7VNLOc,3787
|
|
327
|
+
union/_protos/workflow/task_service_pb2.pyi,sha256=4YuQerg6nQe0wtC9R8P1juBXB8Js-sWs7N6CMCc5i0Q,1495
|
|
328
|
+
union/_protos/workflow/task_service_pb2_grpc.py,sha256=DG4DLgTbY34OpJVn8yEFrDucoTgVayHY1fz1Uvrpo3E,4311
|
|
329
|
+
union/_utils/__init__.py,sha256=jVEKHl7cve8qacAc9z95fTYmT2OMAsSV__Cx3CDHm8Y,386
|
|
330
|
+
union/_utils/asyn.py,sha256=Y8WyCax2u48tKAPNFO0Xe4n6hK6cdj3laRtiDV_cld4,3673
|
|
331
|
+
union/_utils/file_handling.py,sha256=yb3LhFuyB_rWTmFVPaqHU9CQ7amSPxhaWMkkXFk1onk,2205
|
|
332
|
+
union/_utils/helpers.py,sha256=kQ05TEUTPqb0wQTsYGzFro8STahMtcc4PpcPFRlTGUQ,1218
|
|
333
|
+
union/_utils/lazy_module.py,sha256=fvXPjvZLzCfcI8Vzs4pKedUDdY0U_RQ1ZVrp9b8qBQY,1994
|
|
334
|
+
union/_utils/uv_script_parser.py,sha256=PxqD8lSMi6xv0uDd1s8LKB2IPZr4ttZJCUweqlyMTKk,1483
|
|
335
|
+
union/connectors/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
336
|
+
union/extras/__init__.py,sha256=FhB0uK7H1Yo5De9vOuF7UGnezTKncj3u2Wo5uQdWN0g,74
|
|
337
|
+
union/extras/_container.py,sha256=CFvtzBKu6yztJ0re5NX509dmI7KV8bFp0zCUz3jvzUU,10652
|
|
338
|
+
union/io/__init__.py,sha256=e2wHVEoZ84TGOtOPrtTg6hJpeuxiYI56Sg011yq6nUQ,236
|
|
339
|
+
union/io/_dataframe.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
340
|
+
union/io/_dir.py,sha256=uyw8wOZQWq4zFgaybq22u0D4wt9IYhSAJVm26hAd17c,14484
|
|
341
|
+
union/io/_file.py,sha256=aAZYlpbeEtUUU6GvapY3ZqHpHWkq9IdRrnzMVN6vL08,14205
|
|
342
|
+
union/io/pickle/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
343
|
+
union/io/pickle/transformer.py,sha256=6qEUkUqbgaV6_5eRt7qyipkgeNi8dHUDtZMA86rMM-Y,4042
|
|
344
|
+
union/io/structured_dataset/__init__.py,sha256=WYFe51jzuyvMhfnSmWknur0BqupSm4cXbXY4iqcGzkc,4331
|
|
345
|
+
union/io/structured_dataset/basic_dfs.py,sha256=Yl34ISjvzCEepkQbdZTjKISk_mK1Hzl9lzqJa-wj-es,8207
|
|
346
|
+
union/io/structured_dataset/structured_dataset.py,sha256=SX9pjFeL9V52WxhNlOOeUSkM0_kmBOMF9MStdXCxblk,52503
|
|
347
|
+
union/remote/__init__.py,sha256=PfNkxYnZyUdOHDDymSEUfd9DmwkPp5Z1Ff21zunSH3g,495
|
|
348
|
+
union/remote/_data.py,sha256=JXY8KWhI548eOYVDv7ebmVb0HDj3PFHJJRX91thzkws,5298
|
|
349
|
+
union/remote/_logs.py,sha256=jJyJ_KEzPkaN7H3pWoJUL7ZbJYUg32QscY3eoHr1meA,2783
|
|
350
|
+
union/remote/_project.py,sha256=vpXFHuBEaL2e7Zpy5TT-X2okrNBVdMlIYLMwzKN9qNA,2802
|
|
351
|
+
union/remote/_run.py,sha256=AxhmsI4MMk4kiZ1QLTdahfmYO0-yqRnW5_V2JqFG-So,25892
|
|
352
|
+
union/remote/_secret.py,sha256=zlcW8EaLVWdpse5KRQKhmkPHj5sCSfbMTwBT0SxHauA,4346
|
|
353
|
+
union/remote/_task.py,sha256=xIttP3oJyMvVCVX2cgzMrY1ZDTxsz8A0djxPX-waNeo,6266
|
|
354
|
+
union/remote/_client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
355
|
+
union/remote/_client/_protocols.py,sha256=Swl70ndpKEx2odFvm9x7boBmvzjhtR06Eq7mM8qQlPg,5394
|
|
356
|
+
union/remote/_client/controlplane.py,sha256=dI-P0LbCNKryLl_sPUkSu0LDHFPoE83xd407oAEe0Bg,2813
|
|
357
|
+
union/remote/_client/auth/__init__.py,sha256=gO5VPJ-kREpFRojSaTCYNyzInE0WKv__ZQbAbKLVVmQ,413
|
|
358
|
+
union/remote/_client/auth/_channel.py,sha256=_VYvOk9a1ICYyJbK4Bua35s_aHiZsqTNeTw-_0ENYW4,8080
|
|
359
|
+
union/remote/_client/auth/_client_config.py,sha256=rnM98qbRkrJvlpVf_c5hyZazydiefKqt9CwWg0nr_3c,3295
|
|
360
|
+
union/remote/_client/auth/_default_html.py,sha256=XAdgP-25WySMODbusWOcQQPiXin1h-hfzmRJv_Dg3tE,1651
|
|
361
|
+
union/remote/_client/auth/_keyring.py,sha256=Q3zWLqzs9k5GgAE2YpsmRNWDCEe029z36k0KVpfFFd4,5704
|
|
362
|
+
union/remote/_client/auth/_token_client.py,sha256=1E_ktJCUa9zZH2-GnOuUqPTVCZHKWHdwbG0lTQhbuFY,10341
|
|
363
|
+
union/remote/_client/auth/errors.py,sha256=ZYS9k4GX_McacKhxHKt5V2A4CWjLUq4RkBx_goDTdHY,390
|
|
364
|
+
union/remote/_client/auth/_authenticators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
365
|
+
union/remote/_client/auth/_authenticators/base.py,sha256=ySeRLzKCW8wUZ_cSzbqce1L8mZdYTfoMhzYPDxEHR74,16382
|
|
366
|
+
union/remote/_client/auth/_authenticators/client_credentials.py,sha256=ATFQVy-CwZB24upPOUHUtH9MhY_F7gKbaafNuVlVJZk,3483
|
|
367
|
+
union/remote/_client/auth/_authenticators/device_code.py,sha256=hxXRbICwcY-Hqke3BAzoUacAhoK9lLZIrceby4FBh-I,4937
|
|
368
|
+
union/remote/_client/auth/_authenticators/external_command.py,sha256=oPh4LHbNP-9k9O1eUdqRkB9C8ev_hWyQit2NIEFv3cE,3739
|
|
369
|
+
union/remote/_client/auth/_authenticators/factory.py,sha256=NpSxWXN22K0FsSGZyywCbv_Qx97jNPfotCVwQ9tWeQ0,10260
|
|
370
|
+
union/remote/_client/auth/_authenticators/pkce.py,sha256=-HLoZ3B-62qrDGG4V9B6hZb4sIpMBnr505jhLz0jtMI,23108
|
|
371
|
+
union/remote/_client/auth/_grpc_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
372
|
+
union/remote/_client/auth/_grpc_utils/auth_interceptor.py,sha256=zdE1Qe93xo_BNVamAv9lHUT0KW_P96-n2AXHzzPbXEA,10044
|
|
373
|
+
union/remote/_client/auth/_grpc_utils/default_metadata_interceptor.py,sha256=sHmFB51XzUM-aFGYB6A1x8q_oJbgujOokgzF1o3dv8E,5962
|
|
374
|
+
union/report/__init__.py,sha256=H0iUHLRVZKLFa9U9FlMFnXoxcbwdCEMsK1awtRH1w7k,134
|
|
375
|
+
union/report/_report.py,sha256=CjaO7wsUcAAWd0WpCHsoAnnC169vurrdjulBIL38ldQ,5191
|
|
376
|
+
union/report/_template.html,sha256=YehmLJG3QMYQ10UT1YZBu2ncVmAJ4iyqVp5hF3sXRAs,3458
|
|
377
|
+
union/storage/__init__.py,sha256=HV83NpDRznq9WSRGoZet9uhDU9AqlqrcO3Ns1LewoO8,407
|
|
378
|
+
union/storage/_remote_fs.py,sha256=kM_iszbccjVD5VtVdgfkl1FHS8NPnY__JOo_CPQUE4c,1124
|
|
379
|
+
union/storage/_storage.py,sha256=y9u2dfEi_uDjbip4Z2O5UL6PNItfRkdIKwGJX83GZIc,9028
|
|
380
|
+
union/storage/_utils.py,sha256=Hgtu1bl_nrFfQKtOi741-yJw7BNeV_p3eCEfcgBUv5o,309
|
|
381
|
+
union/types/__init__.py,sha256=f1Pis_OavtlJgbA4FgzdTtuWi2JJ7sbuP6kw9TVgKvo,301
|
|
382
|
+
union/types/_renderer.py,sha256=_ERSeK52wUXH72sb6aKLJxByP1nZSvuZiV0LQdOm4kI,4818
|
|
383
|
+
union/types/_string_literals.py,sha256=zsqUg5TP3s5wheW-QTE48EbafUWEdlAHWqK-49PaQZo,4231
|
|
384
|
+
union/types/_type_engine.py,sha256=KQ5d7JSASrOeIXwBxASiTEXJB5T59ZuYRgndr_kxUvA,90895
|
|
385
|
+
union/types/_utils.py,sha256=pbts9E1_2LTdLygAY0UYTLYJ8AsN3BZyviSXvrtcutc,2626
|
|
386
|
+
flyte-0.0.1b0.dist-info/METADATA,sha256=KicPQ05gSucJRod75iilTRAu3K6uqWpBMX_GiVb--vk,10279
|
|
387
|
+
flyte-0.0.1b0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
388
|
+
flyte-0.0.1b0.dist-info/entry_points.txt,sha256=xitFzPlyODadzpIwr-x1mFIpz0IFKpMUJl3dnmxgyPc,76
|
|
389
|
+
flyte-0.0.1b0.dist-info/top_level.txt,sha256=7dkyFbikvA12LEZEqawx8oDG1CMod6hTliPj7iWzgYo,6
|
|
390
|
+
flyte-0.0.1b0.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
flyte
|
union/__init__.py
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Union SDK for authoring Compound AI applications, services and workflows.
|
|
3
|
+
|
|
4
|
+
## Environments
|
|
5
|
+
|
|
6
|
+
TaskEnvironment class to define a new environment for a set of tasks.
|
|
7
|
+
|
|
8
|
+
Example usage:
|
|
9
|
+
|
|
10
|
+
```python
|
|
11
|
+
env = union.TaskEnvironment(name="my_env", image="my_image", resources=Resources(cpu="1", memory="1Gi"))
|
|
12
|
+
|
|
13
|
+
@env.task
|
|
14
|
+
async def my_task():
|
|
15
|
+
pass
|
|
16
|
+
```
|
|
17
|
+
"""
|
|
18
|
+
|
|
19
|
+
__all__ = [
|
|
20
|
+
"ABFS",
|
|
21
|
+
"GCS",
|
|
22
|
+
"GPU",
|
|
23
|
+
"S3",
|
|
24
|
+
"TPU",
|
|
25
|
+
"Cache",
|
|
26
|
+
"CachePolicy",
|
|
27
|
+
"CacheRequest",
|
|
28
|
+
"Device",
|
|
29
|
+
"Image",
|
|
30
|
+
"Resources",
|
|
31
|
+
"ReusePolicy",
|
|
32
|
+
"Secret",
|
|
33
|
+
"TaskEnvironment",
|
|
34
|
+
"__version__",
|
|
35
|
+
"ctx",
|
|
36
|
+
"deploy",
|
|
37
|
+
"group",
|
|
38
|
+
"init",
|
|
39
|
+
"run",
|
|
40
|
+
"with_runcontext",
|
|
41
|
+
]
|
|
42
|
+
|
|
43
|
+
from ._cache import Cache, CachePolicy, CacheRequest
|
|
44
|
+
from ._context import ctx
|
|
45
|
+
from ._deploy import deploy
|
|
46
|
+
from ._group import group
|
|
47
|
+
from ._image import Image
|
|
48
|
+
from ._initialize import ABFS, GCS, S3, init
|
|
49
|
+
from ._resources import GPU, TPU, Device, Resources
|
|
50
|
+
from ._reusable_environment import ReusePolicy
|
|
51
|
+
from ._run import run, with_runcontext
|
|
52
|
+
from ._secret import Secret
|
|
53
|
+
from ._task_environment import TaskEnvironment
|
|
54
|
+
from ._version import __version__
|
union/_api_commons.py
ADDED
union/_bin/__init__.py
ADDED
|
File without changes
|
union/_bin/runtime.py
ADDED
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Union runtime module, this is the entrypoint script for the Union runtime.
|
|
3
|
+
|
|
4
|
+
Caution: Startup time for this module is very important, as it is the entrypoint for the Union runtime.
|
|
5
|
+
Refrain from importing any modules here. If you need to import any modules, do it inside the main function.
|
|
6
|
+
"""
|
|
7
|
+
|
|
8
|
+
import asyncio
|
|
9
|
+
import os
|
|
10
|
+
import sys
|
|
11
|
+
from typing import List
|
|
12
|
+
|
|
13
|
+
import click
|
|
14
|
+
|
|
15
|
+
# Todo: work with pvditt to make these the names
|
|
16
|
+
# ACTION_NAME = "_U_ACTION_NAME"
|
|
17
|
+
# RUN_NAME = "_U_RUN_NAME"
|
|
18
|
+
# PROJECT_NAME = "_U_PROJECT_NAME"
|
|
19
|
+
# DOMAIN_NAME = "_U_DOMAIN_NAME"
|
|
20
|
+
# ORG_NAME = "_U_ORG_NAME"
|
|
21
|
+
|
|
22
|
+
ACTION_NAME = "ACTION_NAME"
|
|
23
|
+
RUN_NAME = "RUN_NAME"
|
|
24
|
+
PROJECT_NAME = "FLYTE_INTERNAL_TASK_PROJECT"
|
|
25
|
+
DOMAIN_NAME = "FLYTE_INTERNAL_TASK_DOMAIN"
|
|
26
|
+
ORG_NAME = "_U_ORG_NAME"
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
@click.command("urun")
|
|
30
|
+
@click.option("--inputs", "-i", required=True)
|
|
31
|
+
@click.option("--outputs-path", "-o", required=True)
|
|
32
|
+
@click.option("--version", "-v", required=True)
|
|
33
|
+
@click.option("--raw-data-path", "-r", required=False)
|
|
34
|
+
@click.option("--checkpoint-path", "-c", required=False)
|
|
35
|
+
@click.option("--prev-checkpoint", "-p", required=False)
|
|
36
|
+
@click.option("--name", envvar=ACTION_NAME, required=False)
|
|
37
|
+
@click.option("--run-name", envvar=RUN_NAME, required=False)
|
|
38
|
+
@click.option("--project", envvar=PROJECT_NAME, required=False)
|
|
39
|
+
@click.option("--domain", envvar=DOMAIN_NAME, required=False)
|
|
40
|
+
@click.option("--org", envvar=ORG_NAME, required=False)
|
|
41
|
+
@click.option("--image-cache", required=False)
|
|
42
|
+
@click.option("--tgz", required=False)
|
|
43
|
+
@click.option("--pkl", required=False)
|
|
44
|
+
@click.option("--dest", required=False)
|
|
45
|
+
@click.option("--resolver", required=False)
|
|
46
|
+
@click.argument(
|
|
47
|
+
"resolver-args",
|
|
48
|
+
type=click.UNPROCESSED,
|
|
49
|
+
nargs=-1,
|
|
50
|
+
)
|
|
51
|
+
def main(
|
|
52
|
+
run_name: str,
|
|
53
|
+
name: str,
|
|
54
|
+
project: str,
|
|
55
|
+
domain: str,
|
|
56
|
+
org: str,
|
|
57
|
+
image_cache: str,
|
|
58
|
+
version: str,
|
|
59
|
+
inputs: str,
|
|
60
|
+
outputs_path: str,
|
|
61
|
+
raw_data_path: str,
|
|
62
|
+
checkpoint_path: str,
|
|
63
|
+
prev_checkpoint: str,
|
|
64
|
+
tgz: str,
|
|
65
|
+
pkl: str,
|
|
66
|
+
dest: str,
|
|
67
|
+
resolver: str,
|
|
68
|
+
resolver_args: List[str],
|
|
69
|
+
):
|
|
70
|
+
sys.path.insert(0, ".")
|
|
71
|
+
|
|
72
|
+
from union._datastructures import ActionID, Checkpoints, CodeBundle, RawDataPath
|
|
73
|
+
from union._initialize import S3, initialize_in_cluster
|
|
74
|
+
from union._internal.controllers import create_controller
|
|
75
|
+
from union._internal.imagebuild.image_builder import ImageCache
|
|
76
|
+
from union._internal.runtime.entrypoints import load_and_run_task
|
|
77
|
+
|
|
78
|
+
if not org:
|
|
79
|
+
org = "testorg"
|
|
80
|
+
|
|
81
|
+
assert org, "Org is required for now"
|
|
82
|
+
assert project, "Project is required"
|
|
83
|
+
assert domain, "Domain is required"
|
|
84
|
+
assert run_name, "Run name is required"
|
|
85
|
+
assert name, "Action name is required"
|
|
86
|
+
|
|
87
|
+
if run_name.startswith("{{"):
|
|
88
|
+
run_name = os.environ.get("RUN_NAME")
|
|
89
|
+
if name.startswith("{{"):
|
|
90
|
+
name = os.environ.get("ACTION_NAME")
|
|
91
|
+
|
|
92
|
+
bundle = CodeBundle(tgz=tgz, pkl=pkl, destination=dest, computed_version=version)
|
|
93
|
+
# TODO configure storage correctly for cluster
|
|
94
|
+
initialize_in_cluster(storage=S3.auto())
|
|
95
|
+
controller = create_controller(ct="remote", endpoint="host.docker.internal:8090", insecure=True)
|
|
96
|
+
|
|
97
|
+
ic = ImageCache.from_transport(image_cache) if image_cache else None
|
|
98
|
+
|
|
99
|
+
asyncio.run(
|
|
100
|
+
load_and_run_task(
|
|
101
|
+
resolver=resolver,
|
|
102
|
+
resolver_args=resolver_args,
|
|
103
|
+
action=ActionID(name=name, run_name=run_name, project=project, domain=domain, org=org),
|
|
104
|
+
raw_data_path=RawDataPath(path=raw_data_path),
|
|
105
|
+
checkpoints=Checkpoints(checkpoint_path, prev_checkpoint),
|
|
106
|
+
code_bundle=bundle,
|
|
107
|
+
input_path=inputs,
|
|
108
|
+
output_path=outputs_path,
|
|
109
|
+
version=version,
|
|
110
|
+
controller=controller,
|
|
111
|
+
image_cache=ic,
|
|
112
|
+
)
|
|
113
|
+
)
|
union/_build.py
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
|
|
3
|
+
from ._api_commons import syncer
|
|
4
|
+
from ._image import Image
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
@syncer.wrap
|
|
8
|
+
async def build(image: Image) -> str:
|
|
9
|
+
"""
|
|
10
|
+
Build an image. The existing async context will be used.
|
|
11
|
+
|
|
12
|
+
Example:
|
|
13
|
+
```
|
|
14
|
+
import union
|
|
15
|
+
image = union.Image("example_image")
|
|
16
|
+
if __name__ == "__main__":
|
|
17
|
+
asyncio.run(union.build.aio(image))
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
:param image: The image(s) to build.
|
|
21
|
+
:return: The image URI.
|
|
22
|
+
"""
|
|
23
|
+
from union._internal.imagebuild.image_builder import ImageBuildEngine
|
|
24
|
+
|
|
25
|
+
return await ImageBuildEngine.build(image)
|
union/_cache/__init__.py
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
from .cache import Cache, CacheBehavior, CachePolicy, CacheRequest
|
|
2
|
+
from .defaults import get_default_policies
|
|
3
|
+
from .policy_function_body import FunctionBodyPolicy
|
|
4
|
+
|
|
5
|
+
__all__ = [
|
|
6
|
+
"Cache",
|
|
7
|
+
"CacheBehavior",
|
|
8
|
+
"CachePolicy",
|
|
9
|
+
"CacheRequest",
|
|
10
|
+
"FunctionBodyPolicy",
|
|
11
|
+
"get_default_policies",
|
|
12
|
+
]
|