flyte 0.0.1b0__py3-none-any.whl → 2.0.0b46__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.
Files changed (455) hide show
  1. flyte/__init__.py +83 -30
  2. flyte/_bin/connect.py +61 -0
  3. flyte/_bin/debug.py +38 -0
  4. flyte/_bin/runtime.py +87 -19
  5. flyte/_bin/serve.py +351 -0
  6. flyte/_build.py +3 -2
  7. flyte/_cache/cache.py +6 -5
  8. flyte/_cache/local_cache.py +216 -0
  9. flyte/_code_bundle/_ignore.py +31 -5
  10. flyte/_code_bundle/_packaging.py +42 -11
  11. flyte/_code_bundle/_utils.py +57 -34
  12. flyte/_code_bundle/bundle.py +130 -27
  13. flyte/_constants.py +1 -0
  14. flyte/_context.py +21 -5
  15. flyte/_custom_context.py +73 -0
  16. flyte/_debug/constants.py +37 -0
  17. flyte/_debug/utils.py +17 -0
  18. flyte/_debug/vscode.py +315 -0
  19. flyte/_deploy.py +396 -75
  20. flyte/_deployer.py +109 -0
  21. flyte/_environment.py +94 -11
  22. flyte/_excepthook.py +37 -0
  23. flyte/_group.py +2 -1
  24. flyte/_hash.py +1 -16
  25. flyte/_image.py +544 -234
  26. flyte/_initialize.py +443 -294
  27. flyte/_interface.py +40 -5
  28. flyte/_internal/controllers/__init__.py +22 -8
  29. flyte/_internal/controllers/_local_controller.py +159 -35
  30. flyte/_internal/controllers/_trace.py +18 -10
  31. flyte/_internal/controllers/remote/__init__.py +38 -9
  32. flyte/_internal/controllers/remote/_action.py +82 -12
  33. flyte/_internal/controllers/remote/_client.py +6 -2
  34. flyte/_internal/controllers/remote/_controller.py +290 -64
  35. flyte/_internal/controllers/remote/_core.py +155 -95
  36. flyte/_internal/controllers/remote/_informer.py +40 -20
  37. flyte/_internal/controllers/remote/_service_protocol.py +2 -2
  38. flyte/_internal/imagebuild/__init__.py +2 -10
  39. flyte/_internal/imagebuild/docker_builder.py +391 -84
  40. flyte/_internal/imagebuild/image_builder.py +111 -55
  41. flyte/_internal/imagebuild/remote_builder.py +409 -0
  42. flyte/_internal/imagebuild/utils.py +79 -0
  43. flyte/_internal/resolvers/_app_env_module.py +92 -0
  44. flyte/_internal/resolvers/_task_module.py +5 -38
  45. flyte/_internal/resolvers/app_env.py +26 -0
  46. flyte/_internal/resolvers/common.py +8 -1
  47. flyte/_internal/resolvers/default.py +2 -2
  48. flyte/_internal/runtime/convert.py +322 -33
  49. flyte/_internal/runtime/entrypoints.py +106 -18
  50. flyte/_internal/runtime/io.py +71 -23
  51. flyte/_internal/runtime/resources_serde.py +21 -7
  52. flyte/_internal/runtime/reuse.py +125 -0
  53. flyte/_internal/runtime/rusty.py +196 -0
  54. flyte/_internal/runtime/task_serde.py +239 -66
  55. flyte/_internal/runtime/taskrunner.py +48 -8
  56. flyte/_internal/runtime/trigger_serde.py +162 -0
  57. flyte/_internal/runtime/types_serde.py +7 -16
  58. flyte/_keyring/file.py +115 -0
  59. flyte/_link.py +30 -0
  60. flyte/_logging.py +241 -42
  61. flyte/_map.py +312 -0
  62. flyte/_metrics.py +59 -0
  63. flyte/_module.py +74 -0
  64. flyte/_pod.py +30 -0
  65. flyte/_resources.py +296 -33
  66. flyte/_retry.py +1 -7
  67. flyte/_reusable_environment.py +72 -7
  68. flyte/_run.py +461 -132
  69. flyte/_secret.py +47 -11
  70. flyte/_serve.py +333 -0
  71. flyte/_task.py +245 -56
  72. flyte/_task_environment.py +219 -97
  73. flyte/_task_plugins.py +47 -0
  74. flyte/_tools.py +8 -8
  75. flyte/_trace.py +15 -24
  76. flyte/_trigger.py +1027 -0
  77. flyte/_utils/__init__.py +12 -1
  78. flyte/_utils/asyn.py +3 -1
  79. flyte/_utils/async_cache.py +139 -0
  80. flyte/_utils/coro_management.py +5 -4
  81. flyte/_utils/description_parser.py +19 -0
  82. flyte/_utils/docker_credentials.py +173 -0
  83. flyte/_utils/helpers.py +45 -19
  84. flyte/_utils/module_loader.py +123 -0
  85. flyte/_utils/org_discovery.py +57 -0
  86. flyte/_utils/uv_script_parser.py +8 -1
  87. flyte/_version.py +16 -3
  88. flyte/app/__init__.py +27 -0
  89. flyte/app/_app_environment.py +362 -0
  90. flyte/app/_connector_environment.py +40 -0
  91. flyte/app/_deploy.py +130 -0
  92. flyte/app/_parameter.py +343 -0
  93. flyte/app/_runtime/__init__.py +3 -0
  94. flyte/app/_runtime/app_serde.py +383 -0
  95. flyte/app/_types.py +113 -0
  96. flyte/app/extras/__init__.py +9 -0
  97. flyte/app/extras/_auth_middleware.py +217 -0
  98. flyte/app/extras/_fastapi.py +93 -0
  99. flyte/app/extras/_model_loader/__init__.py +3 -0
  100. flyte/app/extras/_model_loader/config.py +7 -0
  101. flyte/app/extras/_model_loader/loader.py +288 -0
  102. flyte/cli/__init__.py +12 -0
  103. flyte/cli/_abort.py +28 -0
  104. flyte/cli/_build.py +114 -0
  105. flyte/cli/_common.py +493 -0
  106. flyte/cli/_create.py +371 -0
  107. flyte/cli/_delete.py +45 -0
  108. flyte/cli/_deploy.py +401 -0
  109. flyte/cli/_gen.py +316 -0
  110. flyte/cli/_get.py +446 -0
  111. flyte/cli/_option.py +33 -0
  112. {union/_cli → flyte/cli}/_params.py +152 -153
  113. flyte/cli/_plugins.py +209 -0
  114. flyte/cli/_prefetch.py +292 -0
  115. flyte/cli/_run.py +690 -0
  116. flyte/cli/_serve.py +338 -0
  117. flyte/cli/_update.py +86 -0
  118. flyte/cli/_user.py +20 -0
  119. flyte/cli/main.py +246 -0
  120. flyte/config/__init__.py +3 -0
  121. flyte/config/_config.py +248 -0
  122. flyte/config/_internal.py +73 -0
  123. flyte/config/_reader.py +225 -0
  124. flyte/connectors/__init__.py +11 -0
  125. flyte/connectors/_connector.py +330 -0
  126. flyte/connectors/_server.py +194 -0
  127. flyte/connectors/utils.py +159 -0
  128. flyte/errors.py +134 -2
  129. flyte/extend.py +24 -0
  130. flyte/extras/_container.py +69 -56
  131. flyte/git/__init__.py +3 -0
  132. flyte/git/_config.py +279 -0
  133. flyte/io/__init__.py +8 -1
  134. flyte/io/{structured_dataset → _dataframe}/__init__.py +32 -30
  135. flyte/io/{structured_dataset → _dataframe}/basic_dfs.py +75 -68
  136. flyte/io/{structured_dataset/structured_dataset.py → _dataframe/dataframe.py} +207 -242
  137. flyte/io/_dir.py +575 -113
  138. flyte/io/_file.py +587 -141
  139. flyte/io/_hashing_io.py +342 -0
  140. flyte/io/extend.py +7 -0
  141. flyte/models.py +635 -0
  142. flyte/prefetch/__init__.py +22 -0
  143. flyte/prefetch/_hf_model.py +563 -0
  144. flyte/remote/__init__.py +14 -3
  145. flyte/remote/_action.py +879 -0
  146. flyte/remote/_app.py +346 -0
  147. flyte/remote/_auth_metadata.py +42 -0
  148. flyte/remote/_client/_protocols.py +62 -4
  149. flyte/remote/_client/auth/_auth_utils.py +19 -0
  150. flyte/remote/_client/auth/_authenticators/base.py +8 -2
  151. flyte/remote/_client/auth/_authenticators/device_code.py +4 -5
  152. flyte/remote/_client/auth/_authenticators/factory.py +4 -0
  153. flyte/remote/_client/auth/_authenticators/passthrough.py +79 -0
  154. flyte/remote/_client/auth/_authenticators/pkce.py +17 -18
  155. flyte/remote/_client/auth/_channel.py +47 -18
  156. flyte/remote/_client/auth/_client_config.py +5 -3
  157. flyte/remote/_client/auth/_keyring.py +15 -2
  158. flyte/remote/_client/auth/_token_client.py +3 -3
  159. flyte/remote/_client/controlplane.py +206 -18
  160. flyte/remote/_common.py +66 -0
  161. flyte/remote/_data.py +107 -22
  162. flyte/remote/_logs.py +116 -33
  163. flyte/remote/_project.py +21 -19
  164. flyte/remote/_run.py +164 -631
  165. flyte/remote/_secret.py +72 -29
  166. flyte/remote/_task.py +387 -46
  167. flyte/remote/_trigger.py +368 -0
  168. flyte/remote/_user.py +43 -0
  169. flyte/report/_report.py +10 -6
  170. flyte/storage/__init__.py +13 -1
  171. flyte/storage/_config.py +237 -0
  172. flyte/storage/_parallel_reader.py +289 -0
  173. flyte/storage/_storage.py +268 -59
  174. flyte/syncify/__init__.py +56 -0
  175. flyte/syncify/_api.py +414 -0
  176. flyte/types/__init__.py +39 -0
  177. flyte/types/_interface.py +22 -7
  178. flyte/{io/pickle/transformer.py → types/_pickle.py} +37 -9
  179. flyte/types/_string_literals.py +8 -9
  180. flyte/types/_type_engine.py +230 -129
  181. flyte/types/_utils.py +1 -1
  182. flyte-2.0.0b46.data/scripts/debug.py +38 -0
  183. flyte-2.0.0b46.data/scripts/runtime.py +194 -0
  184. flyte-2.0.0b46.dist-info/METADATA +352 -0
  185. flyte-2.0.0b46.dist-info/RECORD +221 -0
  186. flyte-2.0.0b46.dist-info/entry_points.txt +8 -0
  187. flyte-2.0.0b46.dist-info/licenses/LICENSE +201 -0
  188. flyte/_api_commons.py +0 -3
  189. flyte/_cli/_common.py +0 -287
  190. flyte/_cli/_create.py +0 -42
  191. flyte/_cli/_delete.py +0 -23
  192. flyte/_cli/_deploy.py +0 -140
  193. flyte/_cli/_get.py +0 -235
  194. flyte/_cli/_run.py +0 -152
  195. flyte/_cli/main.py +0 -72
  196. flyte/_datastructures.py +0 -342
  197. flyte/_internal/controllers/pbhash.py +0 -39
  198. flyte/_protos/common/authorization_pb2.py +0 -66
  199. flyte/_protos/common/authorization_pb2.pyi +0 -108
  200. flyte/_protos/common/authorization_pb2_grpc.py +0 -4
  201. flyte/_protos/common/identifier_pb2.py +0 -71
  202. flyte/_protos/common/identifier_pb2.pyi +0 -82
  203. flyte/_protos/common/identifier_pb2_grpc.py +0 -4
  204. flyte/_protos/common/identity_pb2.py +0 -48
  205. flyte/_protos/common/identity_pb2.pyi +0 -72
  206. flyte/_protos/common/identity_pb2_grpc.py +0 -4
  207. flyte/_protos/common/list_pb2.py +0 -36
  208. flyte/_protos/common/list_pb2.pyi +0 -69
  209. flyte/_protos/common/list_pb2_grpc.py +0 -4
  210. flyte/_protos/common/policy_pb2.py +0 -37
  211. flyte/_protos/common/policy_pb2.pyi +0 -27
  212. flyte/_protos/common/policy_pb2_grpc.py +0 -4
  213. flyte/_protos/common/role_pb2.py +0 -37
  214. flyte/_protos/common/role_pb2.pyi +0 -53
  215. flyte/_protos/common/role_pb2_grpc.py +0 -4
  216. flyte/_protos/common/runtime_version_pb2.py +0 -28
  217. flyte/_protos/common/runtime_version_pb2.pyi +0 -24
  218. flyte/_protos/common/runtime_version_pb2_grpc.py +0 -4
  219. flyte/_protos/logs/dataplane/payload_pb2.py +0 -96
  220. flyte/_protos/logs/dataplane/payload_pb2.pyi +0 -168
  221. flyte/_protos/logs/dataplane/payload_pb2_grpc.py +0 -4
  222. flyte/_protos/secret/definition_pb2.py +0 -49
  223. flyte/_protos/secret/definition_pb2.pyi +0 -93
  224. flyte/_protos/secret/definition_pb2_grpc.py +0 -4
  225. flyte/_protos/secret/payload_pb2.py +0 -62
  226. flyte/_protos/secret/payload_pb2.pyi +0 -94
  227. flyte/_protos/secret/payload_pb2_grpc.py +0 -4
  228. flyte/_protos/secret/secret_pb2.py +0 -38
  229. flyte/_protos/secret/secret_pb2.pyi +0 -6
  230. flyte/_protos/secret/secret_pb2_grpc.py +0 -198
  231. flyte/_protos/secret/secret_pb2_grpc_grpc.py +0 -198
  232. flyte/_protos/validate/validate/validate_pb2.py +0 -76
  233. flyte/_protos/workflow/node_execution_service_pb2.py +0 -26
  234. flyte/_protos/workflow/node_execution_service_pb2.pyi +0 -4
  235. flyte/_protos/workflow/node_execution_service_pb2_grpc.py +0 -32
  236. flyte/_protos/workflow/queue_service_pb2.py +0 -106
  237. flyte/_protos/workflow/queue_service_pb2.pyi +0 -141
  238. flyte/_protos/workflow/queue_service_pb2_grpc.py +0 -172
  239. flyte/_protos/workflow/run_definition_pb2.py +0 -128
  240. flyte/_protos/workflow/run_definition_pb2.pyi +0 -310
  241. flyte/_protos/workflow/run_definition_pb2_grpc.py +0 -4
  242. flyte/_protos/workflow/run_logs_service_pb2.py +0 -41
  243. flyte/_protos/workflow/run_logs_service_pb2.pyi +0 -28
  244. flyte/_protos/workflow/run_logs_service_pb2_grpc.py +0 -69
  245. flyte/_protos/workflow/run_service_pb2.py +0 -133
  246. flyte/_protos/workflow/run_service_pb2.pyi +0 -175
  247. flyte/_protos/workflow/run_service_pb2_grpc.py +0 -412
  248. flyte/_protos/workflow/state_service_pb2.py +0 -58
  249. flyte/_protos/workflow/state_service_pb2.pyi +0 -71
  250. flyte/_protos/workflow/state_service_pb2_grpc.py +0 -138
  251. flyte/_protos/workflow/task_definition_pb2.py +0 -72
  252. flyte/_protos/workflow/task_definition_pb2.pyi +0 -65
  253. flyte/_protos/workflow/task_definition_pb2_grpc.py +0 -4
  254. flyte/_protos/workflow/task_service_pb2.py +0 -44
  255. flyte/_protos/workflow/task_service_pb2.pyi +0 -31
  256. flyte/_protos/workflow/task_service_pb2_grpc.py +0 -104
  257. flyte/io/_dataframe.py +0 -0
  258. flyte/io/pickle/__init__.py +0 -0
  259. flyte/remote/_console.py +0 -18
  260. flyte-0.0.1b0.dist-info/METADATA +0 -179
  261. flyte-0.0.1b0.dist-info/RECORD +0 -390
  262. flyte-0.0.1b0.dist-info/entry_points.txt +0 -3
  263. union/__init__.py +0 -54
  264. union/_api_commons.py +0 -3
  265. union/_bin/__init__.py +0 -0
  266. union/_bin/runtime.py +0 -113
  267. union/_build.py +0 -25
  268. union/_cache/__init__.py +0 -12
  269. union/_cache/cache.py +0 -141
  270. union/_cache/defaults.py +0 -9
  271. union/_cache/policy_function_body.py +0 -42
  272. union/_cli/__init__.py +0 -0
  273. union/_cli/_common.py +0 -263
  274. union/_cli/_create.py +0 -40
  275. union/_cli/_delete.py +0 -23
  276. union/_cli/_deploy.py +0 -120
  277. union/_cli/_get.py +0 -162
  278. union/_cli/_run.py +0 -150
  279. union/_cli/main.py +0 -72
  280. union/_code_bundle/__init__.py +0 -8
  281. union/_code_bundle/_ignore.py +0 -113
  282. union/_code_bundle/_packaging.py +0 -187
  283. union/_code_bundle/_utils.py +0 -342
  284. union/_code_bundle/bundle.py +0 -176
  285. union/_context.py +0 -146
  286. union/_datastructures.py +0 -295
  287. union/_deploy.py +0 -185
  288. union/_doc.py +0 -29
  289. union/_docstring.py +0 -26
  290. union/_environment.py +0 -43
  291. union/_group.py +0 -31
  292. union/_hash.py +0 -23
  293. union/_image.py +0 -760
  294. union/_initialize.py +0 -585
  295. union/_interface.py +0 -84
  296. union/_internal/__init__.py +0 -3
  297. union/_internal/controllers/__init__.py +0 -77
  298. union/_internal/controllers/_local_controller.py +0 -77
  299. union/_internal/controllers/pbhash.py +0 -39
  300. union/_internal/controllers/remote/__init__.py +0 -40
  301. union/_internal/controllers/remote/_action.py +0 -131
  302. union/_internal/controllers/remote/_client.py +0 -43
  303. union/_internal/controllers/remote/_controller.py +0 -169
  304. union/_internal/controllers/remote/_core.py +0 -341
  305. union/_internal/controllers/remote/_informer.py +0 -260
  306. union/_internal/controllers/remote/_service_protocol.py +0 -44
  307. union/_internal/imagebuild/__init__.py +0 -11
  308. union/_internal/imagebuild/docker_builder.py +0 -416
  309. union/_internal/imagebuild/image_builder.py +0 -243
  310. union/_internal/imagebuild/remote_builder.py +0 -0
  311. union/_internal/resolvers/__init__.py +0 -0
  312. union/_internal/resolvers/_task_module.py +0 -31
  313. union/_internal/resolvers/common.py +0 -24
  314. union/_internal/resolvers/default.py +0 -27
  315. union/_internal/runtime/__init__.py +0 -0
  316. union/_internal/runtime/convert.py +0 -163
  317. union/_internal/runtime/entrypoints.py +0 -121
  318. union/_internal/runtime/io.py +0 -136
  319. union/_internal/runtime/resources_serde.py +0 -134
  320. union/_internal/runtime/task_serde.py +0 -202
  321. union/_internal/runtime/taskrunner.py +0 -179
  322. union/_internal/runtime/types_serde.py +0 -53
  323. union/_logging.py +0 -124
  324. union/_protos/__init__.py +0 -0
  325. union/_protos/common/authorization_pb2.py +0 -66
  326. union/_protos/common/authorization_pb2.pyi +0 -106
  327. union/_protos/common/authorization_pb2_grpc.py +0 -4
  328. union/_protos/common/identifier_pb2.py +0 -71
  329. union/_protos/common/identifier_pb2.pyi +0 -82
  330. union/_protos/common/identifier_pb2_grpc.py +0 -4
  331. union/_protos/common/identity_pb2.py +0 -48
  332. union/_protos/common/identity_pb2.pyi +0 -72
  333. union/_protos/common/identity_pb2_grpc.py +0 -4
  334. union/_protos/common/list_pb2.py +0 -36
  335. union/_protos/common/list_pb2.pyi +0 -69
  336. union/_protos/common/list_pb2_grpc.py +0 -4
  337. union/_protos/common/policy_pb2.py +0 -37
  338. union/_protos/common/policy_pb2.pyi +0 -27
  339. union/_protos/common/policy_pb2_grpc.py +0 -4
  340. union/_protos/common/role_pb2.py +0 -37
  341. union/_protos/common/role_pb2.pyi +0 -51
  342. union/_protos/common/role_pb2_grpc.py +0 -4
  343. union/_protos/common/runtime_version_pb2.py +0 -28
  344. union/_protos/common/runtime_version_pb2.pyi +0 -24
  345. union/_protos/common/runtime_version_pb2_grpc.py +0 -4
  346. union/_protos/logs/dataplane/payload_pb2.py +0 -96
  347. union/_protos/logs/dataplane/payload_pb2.pyi +0 -168
  348. union/_protos/logs/dataplane/payload_pb2_grpc.py +0 -4
  349. union/_protos/secret/definition_pb2.py +0 -49
  350. union/_protos/secret/definition_pb2.pyi +0 -93
  351. union/_protos/secret/definition_pb2_grpc.py +0 -4
  352. union/_protos/secret/payload_pb2.py +0 -62
  353. union/_protos/secret/payload_pb2.pyi +0 -94
  354. union/_protos/secret/payload_pb2_grpc.py +0 -4
  355. union/_protos/secret/secret_pb2.py +0 -38
  356. union/_protos/secret/secret_pb2.pyi +0 -6
  357. union/_protos/secret/secret_pb2_grpc.py +0 -198
  358. union/_protos/validate/validate/validate_pb2.py +0 -76
  359. union/_protos/workflow/node_execution_service_pb2.py +0 -26
  360. union/_protos/workflow/node_execution_service_pb2.pyi +0 -4
  361. union/_protos/workflow/node_execution_service_pb2_grpc.py +0 -32
  362. union/_protos/workflow/queue_service_pb2.py +0 -75
  363. union/_protos/workflow/queue_service_pb2.pyi +0 -103
  364. union/_protos/workflow/queue_service_pb2_grpc.py +0 -172
  365. union/_protos/workflow/run_definition_pb2.py +0 -100
  366. union/_protos/workflow/run_definition_pb2.pyi +0 -256
  367. union/_protos/workflow/run_definition_pb2_grpc.py +0 -4
  368. union/_protos/workflow/run_logs_service_pb2.py +0 -41
  369. union/_protos/workflow/run_logs_service_pb2.pyi +0 -28
  370. union/_protos/workflow/run_logs_service_pb2_grpc.py +0 -69
  371. union/_protos/workflow/run_service_pb2.py +0 -133
  372. union/_protos/workflow/run_service_pb2.pyi +0 -173
  373. union/_protos/workflow/run_service_pb2_grpc.py +0 -412
  374. union/_protos/workflow/state_service_pb2.py +0 -58
  375. union/_protos/workflow/state_service_pb2.pyi +0 -69
  376. union/_protos/workflow/state_service_pb2_grpc.py +0 -138
  377. union/_protos/workflow/task_definition_pb2.py +0 -72
  378. union/_protos/workflow/task_definition_pb2.pyi +0 -65
  379. union/_protos/workflow/task_definition_pb2_grpc.py +0 -4
  380. union/_protos/workflow/task_service_pb2.py +0 -44
  381. union/_protos/workflow/task_service_pb2.pyi +0 -31
  382. union/_protos/workflow/task_service_pb2_grpc.py +0 -104
  383. union/_resources.py +0 -226
  384. union/_retry.py +0 -32
  385. union/_reusable_environment.py +0 -25
  386. union/_run.py +0 -374
  387. union/_secret.py +0 -61
  388. union/_task.py +0 -354
  389. union/_task_environment.py +0 -186
  390. union/_timeout.py +0 -47
  391. union/_tools.py +0 -27
  392. union/_utils/__init__.py +0 -11
  393. union/_utils/asyn.py +0 -119
  394. union/_utils/file_handling.py +0 -71
  395. union/_utils/helpers.py +0 -46
  396. union/_utils/lazy_module.py +0 -54
  397. union/_utils/uv_script_parser.py +0 -49
  398. union/_version.py +0 -21
  399. union/connectors/__init__.py +0 -0
  400. union/errors.py +0 -128
  401. union/extras/__init__.py +0 -5
  402. union/extras/_container.py +0 -263
  403. union/io/__init__.py +0 -11
  404. union/io/_dataframe.py +0 -0
  405. union/io/_dir.py +0 -425
  406. union/io/_file.py +0 -418
  407. union/io/pickle/__init__.py +0 -0
  408. union/io/pickle/transformer.py +0 -117
  409. union/io/structured_dataset/__init__.py +0 -122
  410. union/io/structured_dataset/basic_dfs.py +0 -219
  411. union/io/structured_dataset/structured_dataset.py +0 -1057
  412. union/py.typed +0 -0
  413. union/remote/__init__.py +0 -23
  414. union/remote/_client/__init__.py +0 -0
  415. union/remote/_client/_protocols.py +0 -129
  416. union/remote/_client/auth/__init__.py +0 -12
  417. union/remote/_client/auth/_authenticators/__init__.py +0 -0
  418. union/remote/_client/auth/_authenticators/base.py +0 -391
  419. union/remote/_client/auth/_authenticators/client_credentials.py +0 -73
  420. union/remote/_client/auth/_authenticators/device_code.py +0 -120
  421. union/remote/_client/auth/_authenticators/external_command.py +0 -77
  422. union/remote/_client/auth/_authenticators/factory.py +0 -200
  423. union/remote/_client/auth/_authenticators/pkce.py +0 -515
  424. union/remote/_client/auth/_channel.py +0 -184
  425. union/remote/_client/auth/_client_config.py +0 -83
  426. union/remote/_client/auth/_default_html.py +0 -32
  427. union/remote/_client/auth/_grpc_utils/__init__.py +0 -0
  428. union/remote/_client/auth/_grpc_utils/auth_interceptor.py +0 -204
  429. union/remote/_client/auth/_grpc_utils/default_metadata_interceptor.py +0 -144
  430. union/remote/_client/auth/_keyring.py +0 -154
  431. union/remote/_client/auth/_token_client.py +0 -258
  432. union/remote/_client/auth/errors.py +0 -16
  433. union/remote/_client/controlplane.py +0 -86
  434. union/remote/_data.py +0 -149
  435. union/remote/_logs.py +0 -74
  436. union/remote/_project.py +0 -86
  437. union/remote/_run.py +0 -820
  438. union/remote/_secret.py +0 -132
  439. union/remote/_task.py +0 -193
  440. union/report/__init__.py +0 -3
  441. union/report/_report.py +0 -178
  442. union/report/_template.html +0 -124
  443. union/storage/__init__.py +0 -24
  444. union/storage/_remote_fs.py +0 -34
  445. union/storage/_storage.py +0 -247
  446. union/storage/_utils.py +0 -5
  447. union/types/__init__.py +0 -11
  448. union/types/_renderer.py +0 -162
  449. union/types/_string_literals.py +0 -120
  450. union/types/_type_engine.py +0 -2131
  451. union/types/_utils.py +0 -80
  452. /flyte/{_cli → _debug}/__init__.py +0 -0
  453. /flyte/{_protos → _keyring}/__init__.py +0 -0
  454. {flyte-0.0.1b0.dist-info → flyte-2.0.0b46.dist-info}/WHEEL +0 -0
  455. {flyte-0.0.1b0.dist-info → flyte-2.0.0b46.dist-info}/top_level.txt +0 -0
@@ -1,179 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: flyte
3
- Version: 0.0.1b0
4
- Summary: Add your description here
5
- Author-email: Ketan Umare <kumare3@users.noreply.github.com>
6
- Requires-Python: >=3.10
7
- Description-Content-Type: text/markdown
8
- Requires-Dist: aiofiles>=24.1.0
9
- Requires-Dist: click!=8.2.0,>=8.1.8
10
- Requires-Dist: flyteidl==1.15.4b0
11
- Requires-Dist: cloudpickle>=3.1.1
12
- Requires-Dist: fsspec>=2025.3.0
13
- Requires-Dist: grpcio>=1.71.0
14
- Requires-Dist: obstore>=0.6.0
15
- Requires-Dist: protobuf>=6.30.1
16
- Requires-Dist: pydantic>=2.10.6
17
- Requires-Dist: pyyaml>=6.0.2
18
- Requires-Dist: rich-click>=1.8.8
19
- Requires-Dist: httpx>=0.28.1
20
- Requires-Dist: keyring>=25.6.0
21
- Requires-Dist: synchronicity>=0.9.11
22
- Requires-Dist: msgpack>=1.1.0
23
- Requires-Dist: toml>=0.10.2
24
- Requires-Dist: async-lru>=2.0.5
25
- Requires-Dist: mashumaro
26
- Requires-Dist: dataclasses_json
27
-
28
- # Flyte 2
29
-
30
- Next-gen of SDK for Flyte.
31
-
32
- ## Get started
33
-
34
- 1. Only async tasks are supported right now. Style recommended, `import flyte` and then `flyte.TaskEnvironment` etc
35
- 2. You have to create environment for even a single task
36
- 3. `flyte run` CLI does not yet support arguments (but will soon)
37
- 4. Support for dataclasses is still limited if present at all
38
- 5. look at examples/... for various examples.
39
- 6. For a single script recommend using uv run scripts with metadata headers.
40
-
41
- Hello world
42
-
43
- ```python
44
- import flyte
45
-
46
- env = flyte.TaskEnvironment(name="hello_world")
47
-
48
-
49
- @env.task
50
- async def say_hello(data: str) -> str:
51
- return f"Hello {data}"
52
-
53
-
54
- @env.task
55
- async def say_hello_nested(data: str) -> str:
56
- return await say_hello.override(resources=flyte.Resources(gpu="A100 80G:4")).execute(data)
57
-
58
-
59
- if __name__ == "__main__":
60
- import asyncio
61
-
62
- # to run pure python - the SDK is not invoked at all
63
- asyncio.run(say_hello_nested("test"))
64
-
65
- # To run locally, but run through type system etc
66
- flyte.init()
67
- flyte.run(say_hello_nested, "World")
68
-
69
- # To run remote
70
- flyte.init(endpoint="dns:///localhost:8090", insecure=True)
71
- flyte.run(say_hello_nested, "World")
72
- # It is possible to switch local and remote, but keeping init to have and endpoint, but , changing context during run
73
- flyte.with_runcontext(name="my-run-1", mode="local").run(...) # this will run locally only
74
- ```
75
-
76
- ## When testing now, you will have to build images with v2 sdk installed.
77
- To do this, you can use a nifty way to add the sdk to the image.
78
-
79
- ```python
80
- import flyte
81
- import pathlib
82
-
83
- env = flyte.TaskEnvironment(
84
- name="test",
85
- image=flyte.Image.auto(registry="ghcr.io/your-handle", name="package-name")
86
- .with_source_folder(pathlib.Path(
87
- __file__).parent.parent / "dist") # Assuming you have run `make dist` and the dist folder is in the directory above
88
- .with_local_v2(), # This will add the v2 sdk to the image from the local dist folder
89
- )
90
- ```
91
-
92
- ## Run using CLI
93
-
94
- ```bash
95
- flyte --endpoint dns:///localhost:8090 --insecure --org-override testorg run -p project -d development devbox_one.py say_hello_nested
96
- ```
97
- ### Retrieve runs
98
- ```bash
99
- flyte --endpoint dns:///localhost:8090 --insecure --org-override testorg get run --project testproject --domain development
100
- ```
101
- Output:
102
- ```bash
103
- ┏━━━━━━━━━━━━━━━━━━━━━┳━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━┓
104
- ┃ Run-name ┃ Name ┃ Start_time ┃ End_time ┃ Run_time ┃ Phase ┃ Task ┃
105
- ┡━━━━━━━━━━━━━━━━━━━━━╇━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━┩
106
- │ testrun │ a0 │ 2025-04-25T21:47:37.564471 │ None │ 41154 secs │ PHASE_QUEUED │ │
107
- │ random-run-5783fbc8 │ a0 │ 2025-04-29T04:39:33.871810 │ 2025-04-29T04:42:24 │ 170 secs │ PHASE_SUCCEEDED │ │
108
- │ random-run-e57d6195 │ a0 │ 2025-04-29T04:40:53.467206 │ 2025-04-29T04:42:54 │ 120 secs │ PHASE_SUCCEEDED │ say_hello_nested │
109
- │ random-run-752c52a0 │ a0 │ 2025-04-29T04:44:50.169879 │ 2025-04-29T04:47:34 │ 163 secs │ PHASE_SUCCEEDED │ failure_recovery │
110
- │ random-run-4f57d4af │ a0 │ 2025-04-29T05:04:28.780208 │ 2025-04-29T05:07:10 │ 161 secs │ PHASE_FAILED │ failure_recovery │
111
- │ random-run-f6c6405f │ a0 │ 2025-04-29T05:10:19.808186 │ 2025-04-29T05:13:07 │ 167 secs │ PHASE_FAILED │ failure_recovery │
112
- │ random-run-66448df4 │ a0 │ 2025-04-29T05:42:21.625827 │ 2025-04-29T05:45:01 │ 159 secs │ PHASE_SUCCEEDED │ failure_recovery │
113
- │ random-run-5c5c905f │ a0 │ 2025-04-29T05:50:32.623097 │ 2025-04-29T05:53:21 │ 168 secs │ PHASE_SUCCEEDED │ failure_recovery │
114
- │ random-run-99056dba │ a0 │ 2025-04-29T05:54:47.820520 │ 2025-04-29T05:57:31 │ 163 secs │ PHASE_SUCCEEDED │ failure_recovery │
115
- └─────────────────────┴──────┴────────────────────────────┴─────────────────────┴────────────┴─────────────────┴──────────────────┘
116
- ```
117
- ### Retrieve specific run details
118
- ```bash
119
- flyte --endpoint dns:///localhost:8090 --insecure --org-override testorg get run --project testproject --domain development random-run-66448df4
120
- ```
121
- Output:
122
- ```bash
123
- RunDetails(name='random-run-66448df4', start_time='2025-04-29T05:42:21.625827', end_time='2025-04-29T05:45:01', run_time='159 secs', phase='PHASE_SUCCEEDED', error=, task='failure_recovery')
124
- ```
125
-
126
- ### Retrieve actions for a run
127
- ```bash
128
- flyte --endpoint dns:///localhost:8090 --insecure --org-override testorg get action --project testproject --domain development random-run-99056dba
129
- ```
130
-
131
- Output:
132
- ```bash
133
- ┏━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━┓
134
- ┃ Run-name ┃ Name ┃ Start_time ┃ End_time ┃ Run_time ┃ Phase ┃ Task ┃
135
- ┡━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━┩
136
- │ random-run-99056dba │ a0 │ 2025-04-29T05:54:47.820520 │ 2025-04-29T05:57:31 │ 163 secs │ PHASE_SUCCEEDED │ failure_recovery │
137
- │ random-run-99056dba │ 5DYnhmntDf3WG9bm5B54E9 │ 2025-04-29T05:55:18.098842 │ 2025-04-29T05:55:51 │ 32 secs │ PHASE_FAILED │ always_fails │
138
- │ random-run-99056dba │ 7rg3HTmTfCjMqhLLq17ZjR │ 2025-04-29T05:55:51.933307 │ 2025-04-29T05:56:31 │ 39 secs │ PHASE_FAILED │ always_fails │
139
- │ random-run-99056dba │ 3avSConCJYUMmCuTpqUCdO │ 2025-04-29T05:56:31.939420 │ 2025-04-29T05:57:11 │ 39 secs │ PHASE_SUCCEEDED │ always_succeeds │
140
- └─────────────────────┴────────────────────────┴────────────────────────────┴─────────────────────┴──────────┴─────────────────┴──────────────────┘
141
- ```
142
-
143
- ### Retrieve action details
144
- ```bash
145
- flyte --endpoint dns:///localhost:8090 --insecure --org-override testorg get action --project testproject --domain development random-run-99056dba 5DYnhmntDf3WG9bm5B54E9
146
- ```
147
-
148
- Output:
149
- ```bash
150
- ActionDetails(name='random-run-99056dba', start_time='2025-04-29T05:55:18.098842', end_time='2025-04-29T05:55:51', run_time='32 secs', phase='PHASE_FAILED', error=, task='always_fails')
151
- ```
152
-
153
- ### Deploy
154
- ```bash
155
- flyte deploy --endpoint dns:///localhost:8090 --insecure --org-override testorg -p project -d development devbox_one.py say_hello_nested
156
- ```
157
- # Contributor Notes
158
- Some of these are limited to Union for now, because the new IDL has not yet been open-sourced.
159
-
160
- ## How to import proto stubs?
161
-
162
- Make sure that you have `uv` installed locally then run `make copy-protos <path-to-cloud-repo>`, where `<path-to-cloud-repo>`
163
- is optional, if it's not defined then it assumes by default that there's a sibling `cloud` directory.
164
-
165
- ## Iterating on the SDK itself.
166
- While there is a publicly available semantically version base image (similar to flytekit) for each flyte sdk release,
167
- it's probably helpful to create your own images if you're to iterate on this SDK itself. Anyone who wishes to modify
168
- this code and then run it on a Flyte cluster, will need to build their own image.
169
-
170
- To do this:
171
-
172
- 1. Build a wheel with your updated code by running `make dist`
173
-
174
- 2. (This step only works for Union employees for now) Create the image by running
175
- ```
176
- python maint_tools/build_default_image.py
177
- ```
178
- This will build the image using buildx, creating a buildx builder. The image will be tagged with a SHA that changes
179
- based on a hash of the built wheel inside the dist folder.
@@ -1,390 +0,0 @@
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,,
@@ -1,3 +0,0 @@
1
- [console_scripts]
2
- a0 = flyte._bin.runtime:main
3
- flyte = flyte._cli.main:main
union/__init__.py DELETED
@@ -1,54 +0,0 @@
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__