cozy-runtime 0.1.0__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 (133) hide show
  1. cozy/worker/v1/SOURCE +8 -0
  2. cozy/worker/v1/weights_limits.py +26 -0
  3. cozy/worker/v1/wire_version.py +3 -0
  4. cozy/worker/v1/worker_pb2.py +359 -0
  5. cozy/worker/v1/worker_pb2.pyi +2566 -0
  6. cozy/worker/v1/worker_pb2_grpc.py +942 -0
  7. cozy_runtime/__init__.py +15 -0
  8. cozy_runtime/_interpreter.py +13 -0
  9. cozy_runtime/author/__init__.py +254 -0
  10. cozy_runtime/author/_app.py +248 -0
  11. cozy_runtime/author/_assets.py +270 -0
  12. cozy_runtime/author/_codec.py +713 -0
  13. cozy_runtime/author/_color.py +45 -0
  14. cozy_runtime/author/_context.py +134 -0
  15. cozy_runtime/author/_decode.py +1420 -0
  16. cozy_runtime/author/_defaults.py +229 -0
  17. cozy_runtime/author/_demand.py +125 -0
  18. cozy_runtime/author/_describe.py +312 -0
  19. cozy_runtime/author/_errors.py +169 -0
  20. cozy_runtime/author/_invoke.py +770 -0
  21. cozy_runtime/author/_loader.py +930 -0
  22. cozy_runtime/author/_markers.py +184 -0
  23. cozy_runtime/author/_media.py +101 -0
  24. cozy_runtime/author/_model.py +935 -0
  25. cozy_runtime/author/_observations.py +318 -0
  26. cozy_runtime/author/_services.py +1097 -0
  27. cozy_runtime/author/_signature.py +371 -0
  28. cozy_runtime/author/_walker.py +171 -0
  29. cozy_runtime/author/_weights.py +661 -0
  30. cozy_runtime/author/fakes.py +322 -0
  31. cozy_runtime/canonical_json.py +46 -0
  32. cozy_runtime/cli/__init__.py +1 -0
  33. cozy_runtime/cli/describe.py +188 -0
  34. cozy_runtime/cli/fit.py +123 -0
  35. cozy_runtime/cli/host.py +479 -0
  36. cozy_runtime/cli/io.py +109 -0
  37. cozy_runtime/cli/main.py +246 -0
  38. cozy_runtime/cli/model_contract_proof.py +955 -0
  39. cozy_runtime/cli/native_wheel_proof.py +284 -0
  40. cozy_runtime/cli/new.py +220 -0
  41. cozy_runtime/cli/package_prepare.py +244 -0
  42. cozy_runtime/cli/payload.py +320 -0
  43. cozy_runtime/cli/run.py +678 -0
  44. cozy_runtime/cli/runtime_worker.py +236 -0
  45. cozy_runtime/cli/version.py +48 -0
  46. cozy_runtime/derive/__init__.py +7 -0
  47. cozy_runtime/derive/h3-dit-quantization-plan.json +5478 -0
  48. cozy_runtime/derive/identity.py +56 -0
  49. cozy_runtime/derive/microscale.py +391 -0
  50. cozy_runtime/derive/quantization.py +730 -0
  51. cozy_runtime/derive/safetensors_io.py +306 -0
  52. cozy_runtime/internal/__init__.py +1 -0
  53. cozy_runtime/internal/accel.py +463 -0
  54. cozy_runtime/internal/anima_optimization.py +586 -0
  55. cozy_runtime/internal/base_observation.py +358 -0
  56. cozy_runtime/internal/bindings.py +125 -0
  57. cozy_runtime/internal/canonical.py +260 -0
  58. cozy_runtime/internal/child_env.py +174 -0
  59. cozy_runtime/internal/config.py +418 -0
  60. cozy_runtime/internal/contract.py +596 -0
  61. cozy_runtime/internal/delivery.py +182 -0
  62. cozy_runtime/internal/derive.py +978 -0
  63. cozy_runtime/internal/descriptor.py +645 -0
  64. cozy_runtime/internal/discovery.py +231 -0
  65. cozy_runtime/internal/egress.py +478 -0
  66. cozy_runtime/internal/encoding/__init__.py +143 -0
  67. cozy_runtime/internal/encoding/formats.py +765 -0
  68. cozy_runtime/internal/encoding/leaves.py +463 -0
  69. cozy_runtime/internal/encoding/selection.py +837 -0
  70. cozy_runtime/internal/encoding/vectors/fp8-rowwise-keepdim.json +1 -0
  71. cozy_runtime/internal/encoding/vectors/fp8-rowwise.json +1 -0
  72. cozy_runtime/internal/encoding/vectors/fp8-scaled-scalar-weight-only.json +1 -0
  73. cozy_runtime/internal/encoding/vectors/fp8-scaled-scalar.json +1 -0
  74. cozy_runtime/internal/encoding/vectors/mxfp8.json +1 -0
  75. cozy_runtime/internal/executor.py +2256 -0
  76. cozy_runtime/internal/exits.py +31 -0
  77. cozy_runtime/internal/fill.py +2308 -0
  78. cozy_runtime/internal/forensics.py +143 -0
  79. cozy_runtime/internal/host_paths.py +18 -0
  80. cozy_runtime/internal/hostfacts.py +178 -0
  81. cozy_runtime/internal/instruments.py +146 -0
  82. cozy_runtime/internal/jit_cache.py +103 -0
  83. cozy_runtime/internal/liveness.py +109 -0
  84. cozy_runtime/internal/local.py +1728 -0
  85. cozy_runtime/internal/model_config.py +50 -0
  86. cozy_runtime/internal/native_dependency_probe.py +70 -0
  87. cozy_runtime/internal/native_operator_runner.py +63 -0
  88. cozy_runtime/internal/native_seat_probe.py +61 -0
  89. cozy_runtime/internal/native_wheel.py +897 -0
  90. cozy_runtime/internal/package_environment.py +1607 -0
  91. cozy_runtime/internal/pathkey.py +19 -0
  92. cozy_runtime/internal/placement_materialization.py +467 -0
  93. cozy_runtime/internal/planfacts.py +212 -0
  94. cozy_runtime/internal/probe.py +1101 -0
  95. cozy_runtime/internal/proctree.py +1245 -0
  96. cozy_runtime/internal/pull.py +1180 -0
  97. cozy_runtime/internal/readiness.py +333 -0
  98. cozy_runtime/internal/refusal.py +12 -0
  99. cozy_runtime/internal/residency.py +541 -0
  100. cozy_runtime/internal/resolution.py +956 -0
  101. cozy_runtime/internal/sandbox.py +174 -0
  102. cozy_runtime/internal/schema.py +278 -0
  103. cozy_runtime/internal/seam.py +224 -0
  104. cozy_runtime/internal/spawn.py +118 -0
  105. cozy_runtime/internal/trampoline.py +149 -0
  106. cozy_runtime/internal/warm.py +170 -0
  107. cozy_runtime/internal/weights_sink.py +580 -0
  108. cozy_runtime/internal/witness.py +269 -0
  109. cozy_runtime/internal/worker/__init__.py +16 -0
  110. cozy_runtime/internal/worker/acquire.py +887 -0
  111. cozy_runtime/internal/worker/attempts.py +2667 -0
  112. cozy_runtime/internal/worker/child.py +1201 -0
  113. cozy_runtime/internal/worker/control.py +481 -0
  114. cozy_runtime/internal/worker/downloads.py +133 -0
  115. cozy_runtime/internal/worker/grants.py +944 -0
  116. cozy_runtime/internal/worker/lanes.py +324 -0
  117. cozy_runtime/internal/worker/ledger.py +659 -0
  118. cozy_runtime/internal/worker/model_source_prepare.py +260 -0
  119. cozy_runtime/internal/worker/observe.py +245 -0
  120. cozy_runtime/internal/worker/package_prepare.py +1012 -0
  121. cozy_runtime/internal/worker/plan.py +944 -0
  122. cozy_runtime/internal/worker/records.py +77 -0
  123. cozy_runtime/internal/worker/refusal.py +138 -0
  124. cozy_runtime/internal/worker/session.py +5166 -0
  125. cozy_runtime/internal/worker/triage.py +282 -0
  126. cozy_runtime/internal/worker/weights.py +952 -0
  127. cozy_runtime/protocol/__init__.py +37 -0
  128. cozy_runtime/protocol/documents.py +200 -0
  129. cozy_runtime/py.typed +0 -0
  130. cozy_runtime-0.1.0.dist-info/METADATA +23 -0
  131. cozy_runtime-0.1.0.dist-info/RECORD +133 -0
  132. cozy_runtime-0.1.0.dist-info/WHEEL +4 -0
  133. cozy_runtime-0.1.0.dist-info/entry_points.txt +5 -0
cozy/worker/v1/SOURCE ADDED
@@ -0,0 +1,8 @@
1
+ repository=https://github.com/cozy-creator/worker-protocol-v2
2
+ commit=9a1e3eefdc94004a3053deedc497215422e83ac5
3
+ wire_minor=21
4
+ weights_limits.py=sha256:87c17057add2656c60bc3a98e99adc7a2d295ff5305ee2a395e9d4e551d286e0
5
+ wire_version.py=sha256:c52857e154c453115913dd7a9131055d440207f29924700d6985c0edef25cedd
6
+ worker_pb2.py=sha256:0b854b08a15551b918d117c46cc25129f6ae8104449893edb2eebf664f724610
7
+ worker_pb2_grpc.py=sha256:dcdfd1ac8cdd403ae7c1d3346d818d352c4bcedd190c8c42a958124a6ed1cb2e
8
+ worker_pb2.pyi=sha256:39f43833376606a5b920c0bc0b2b3533dd3b367e6fcbd546653414be408647d5
@@ -0,0 +1,26 @@
1
+ """Generated by regen.sh. Weights, model-source, and private-package host-exchange bounds."""
2
+
3
+ MAX_WEIGHTS_RECEIPTS = 16
4
+ MAX_WEIGHTS_RECEIPT_BYTES = 1 << 20
5
+ MAX_WEIGHTS_RECEIPT_AGGREGATE_BYTES = 4 << 20
6
+ MAX_WEIGHTS_DECLARATION_BYTES = 1 << 20
7
+ MAX_WEIGHTS_INVENTORY_BYTES = 4 << 20
8
+ MAX_WEIGHTS_OBJECTS = 65536
9
+ MAX_WEIGHTS_READ_BYTES = 4 << 20
10
+ MAX_WEIGHTS_GRANT_URL_BYTES = 16 << 10
11
+
12
+ # The ceiling every content-bearing bound here must respect: the control stream carries control,
13
+ # not content. It has no carve-out: the tensorhub fence in scripts/fence.py convicts any
14
+ # content-bearing bound declared above it.
15
+ MAX_INLINE_CONTROL_BYTES = 4 << 20
16
+ MAX_MODEL_SOURCE_FILES = 4096
17
+ MAX_MODEL_SOURCE_PROFILES = 16
18
+ MAX_MODEL_SOURCE_MEMBER_BYTES = 1024
19
+ MAX_MODEL_SOURCE_PROFILE_BYTES = 1024
20
+ MAX_MODEL_SOURCE_URI_BYTES = 4096
21
+ MAX_MODEL_SOURCE_LICENSE_BYTES = 4096
22
+ MAX_MODEL_SOURCE_URL_BYTES = 16 << 10
23
+ MAX_CHECKPOINT_EVIDENCE_BYTES = 64 << 10
24
+ MAX_PRIVATE_PACKAGE_FILES = 33
25
+ MAX_PRIVATE_PACKAGE_FILENAME_BYTES = 255
26
+ MAX_PRIVATE_PACKAGE_GRANT_URL_BYTES = 16 << 10
@@ -0,0 +1,3 @@
1
+ """Generated by regen.sh. Additive compatibility level for cozy.worker.v1."""
2
+
3
+ WIRE_MINOR = 21
@@ -0,0 +1,359 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # NO CHECKED-IN PROTOBUF GENCODE
4
+ # source: cozy/worker/v1/worker.proto
5
+ # Protobuf Python Version: 6.31.1
6
+ """Generated protocol buffer code."""
7
+ from google.protobuf import descriptor as _descriptor
8
+ from google.protobuf import descriptor_pool as _descriptor_pool
9
+ from google.protobuf import runtime_version as _runtime_version
10
+ from google.protobuf import symbol_database as _symbol_database
11
+ from google.protobuf.internal import builder as _builder
12
+ _runtime_version.ValidateProtobufRuntimeVersion(
13
+ _runtime_version.Domain.PUBLIC,
14
+ 6,
15
+ 31,
16
+ 1,
17
+ '',
18
+ 'cozy/worker/v1/worker.proto'
19
+ )
20
+ # @@protoc_insertion_point(imports)
21
+
22
+ _sym_db = _symbol_database.Default()
23
+
24
+
25
+
26
+
27
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1b\x63ozy/worker/v1/worker.proto\x12\x0e\x63ozy.worker.v1\"\x89\x01\n\x10WeightsHostEvent\x12\x34\n\x06intent\x18\x01 \x01(\x0b\x32\".cozy.worker.v1.WeightsIntentFrameH\x00\x12\x36\n\x07receipt\x18\x02 \x01(\x0b\x32#.cozy.worker.v1.WeightsReceiptFrameH\x00\x42\x07\n\x05\x65vent\"u\n\x15PreparePackageSetCall\x12$\n\x05\x63laim\x18\x01 \x01(\x0b\x32\x15.cozy.worker.v1.Claim\x12\x36\n\x0bpackage_set\x18\x02 \x01(\x0b\x32!.cozy.worker.v1.DesiredPackageSet\"\x88\x01\n\x19PreparePrivatePackageCall\x12$\n\x05\x63laim\x18\x01 \x01(\x0b\x32\x15.cozy.worker.v1.Claim\x12\x45\n\x13private_package_set\x18\x02 \x01(\x0b\x32(.cozy.worker.v1.DesiredPrivatePackageSet\"\x8e\x01\n\x1bPreparePrivatePlacementCall\x12$\n\x05\x63laim\x18\x01 \x01(\x0b\x32\x15.cozy.worker.v1.Claim\x12I\n\x15private_placement_set\x18\x02 \x01(\x0b\x32*.cozy.worker.v1.DesiredPrivatePlacementSet\"\xcf\x01\n\x0cPrepareEvent\x12+\n\x05stage\x18\x01 \x01(\x0e\x32\x1c.cozy.worker.v1.PrepareStage\x12\x13\n\x0btotal_bytes\x18\x02 \x01(\x04\x12\x19\n\x11transferred_bytes\x18\x03 \x01(\x04\x12:\n\rplacement_set\x18\x04 \x01(\x0b\x32#.cozy.worker.v1.DesiredPlacementSet\x12\x11\n\tsafe_code\x18\x05 \x01(\t\x12\x13\n\x0bsafe_detail\x18\x06 \x01(\t\"t\n\x13ModelSourceFileCall\x12$\n\x05\x63laim\x18\x01 \x01(\x0b\x32\x15.cozy.worker.v1.Claim\x12\x37\n\x07request\x18\x02 \x01(\x0b\x32&.cozy.worker.v1.ModelSourceFileRequest\"z\n\x16ModelSourcePrepareCall\x12$\n\x05\x63laim\x18\x01 \x01(\x0b\x32\x15.cozy.worker.v1.Claim\x12:\n\x07request\x18\x02 \x01(\x0b\x32).cozy.worker.v1.ModelSourcePrepareRequest\"|\n\x17PrivatePackageFetchCall\x12$\n\x05\x63laim\x18\x01 \x01(\x0b\x32\x15.cozy.worker.v1.Claim\x12;\n\x07request\x18\x02 \x01(\x0b\x32*.cozy.worker.v1.PrivatePackageFetchRequest\"u\n\x17PrivatePackageAbortCall\x12$\n\x05\x63laim\x18\x01 \x01(\x0b\x32\x15.cozy.worker.v1.Claim\x12\x34\n\x07request\x18\x02 \x01(\x0b\x32#.cozy.worker.v1.PrivatePackageAbort\"t\n\x13WeightsTransferCall\x12$\n\x05\x63laim\x18\x01 \x01(\x0b\x32\x15.cozy.worker.v1.Claim\x12\x37\n\x07request\x18\x02 \x01(\x0b\x32&.cozy.worker.v1.WeightsTransferRequest\"\x83\x01\n\x18PreparePackageSetRequest\x12\x1b\n\x13\x64ownload_delegation\x18\x01 \x01(\x0c\x12\x30\n\x05\x66iles\x18\x02 \x03(\x0b\x32!.cozy.worker.v1.LocalDownloadFile\x12\x18\n\x10\x65nvironment_root\x18\x03 \x01(\t\"\x84\x01\n\x11LocalDownloadFile\x12\x0e\n\x06\x64igest\x18\x01 \x01(\x0c\x12\x10\n\x08\x66ilename\x18\x02 \x01(\t\x12/\n\x04kind\x18\x03 \x01(\x0e\x32!.cozy.worker.v1.LocalDownloadKind\x12\x0e\n\x06length\x18\x04 \x01(\x04\x12\x0c\n\x04path\x18\x05 \x01(\t\"U\n\x17PreparePackageSetResult\x12:\n\rplacement_set\x18\x01 \x01(\x0b\x32#.cozy.worker.v1.DesiredPlacementSet\"\xb5\x01\n\x1cPreparePrivatePackageRequest\x12\x14\n\x0coperation_id\x18\x01 \x01(\t\x12\x33\n\x07package\x18\x02 \x01(\x0b\x32\".cozy.worker.v1.DevelopmentPackage\x12\x30\n\x05\x66iles\x18\x03 \x03(\x0b\x32!.cozy.worker.v1.LocalDownloadFile\x12\x18\n\x10\x65nvironment_root\x18\x04 \x01(\t\"\xa6\x01\n\x1ePreparePrivatePlacementRequest\x12\x14\n\x0coperation_id\x18\x01 \x01(\t\x12\x1f\n\x17private_revision_digest\x18\x02 \x01(\x0c\x12\x1b\n\x13\x64ownload_delegation\x18\x03 \x01(\x0c\x12\x30\n\x05\x66iles\x18\x04 \x03(\x0b\x32!.cozy.worker.v1.LocalDownloadFile\"W\n\x14LocalModelSourceFile\x12\x0e\n\x06member\x18\x01 \x01(\t\x12\x11\n\tobject_id\x18\x02 \x01(\t\x12\x0e\n\x06length\x18\x03 \x01(\x04\x12\x0c\n\x04path\x18\x04 \x01(\t\"3\n\x12ModelSourceProfile\x12\x0c\n\x04slot\x18\x01 \x01(\t\x12\x0f\n\x07profile\x18\x02 \x01(\t\"\x88\x01\n\x13PreparedModelSource\x12\x0c\n\x04slot\x18\x01 \x01(\t\x12\x0f\n\x07profile\x18\x02 \x01(\t\x12%\n\x08manifest\x18\x03 \x01(\x0b\x32\x13.cozy.worker.v1.Ref\x12+\n#checkpoint_evidence_canonical_bytes\x18\x04 \x01(\x0c\"\xeb\x01\n\x19PrepareModelSourceRequest\x12\x14\n\x0coperation_id\x18\x01 \x01(\t\x12\x1f\n\x17source_selection_digest\x18\x02 \x01(\x0c\x12\x34\n\x08profiles\x18\x03 \x03(\x0b\x32\".cozy.worker.v1.ModelSourceProfile\x12\x33\n\x05\x66iles\x18\x04 \x03(\x0b\x32$.cozy.worker.v1.LocalModelSourceFile\x12\x12\n\nsource_uri\x18\x05 \x01(\t\x12\x18\n\x10\x64\x65\x63lared_license\x18\x06 \x01(\t\"\xb4\x01\n\x18PrepareModelSourceResult\x12:\n\x07outcome\x18\x01 \x01(\x0e\x32).cozy.worker.v1.ModelSourcePrepareOutcome\x12\x34\n\x07sources\x18\x02 \x03(\x0b\x32#.cozy.worker.v1.PreparedModelSource\x12\x11\n\tsafe_code\x18\x03 \x01(\t\x12\x13\n\x0bsafe_detail\x18\x04 \x01(\t\"\x99\t\n\x10RecordOwnerFrame\x12&\n\x05\x63laim\x18\x05 \x01(\x0b\x32\x15.cozy.worker.v1.ClaimH\x00\x12;\n\rdesired_state\x18\x06 \x01(\x0b\x32\".cozy.worker.v1.DesiredWorkerStateH\x00\x12\x35\n\rattempt_offer\x18\x07 \x01(\x0b\x32\x1c.cozy.worker.v1.AttemptOfferH\x00\x12\x37\n\x0e\x63\x61ncel_attempt\x18\x08 \x01(\x0b\x32\x1d.cozy.worker.v1.CancelAttemptH\x00\x12\x38\n\x0boutcome_ack\x18\t \x01(\x0b\x32!.cozy.worker.v1.AttemptOutcomeAckH\x00\x12\x42\n\x12\x63heckpoint_receipt\x18\n \x01(\x0b\x32$.cozy.worker.v1.JobCheckpointReceiptH\x00\x12\x33\n\x0csnapshot_ack\x18\x0b \x01(\x0b\x32\x1b.cozy.worker.v1.SnapshotAckH\x00\x12J\n\x18weights_finalize_request\x18\x11 \x01(\x0b\x32&.cozy.worker.v1.WeightsFinalizeRequestH\x00\x12:\n\x10weights_host_ack\x18\x13 \x01(\x0b\x32\x1e.cozy.worker.v1.WeightsHostAckH\x00\x12J\n\x18weights_transfer_request\x18\x14 \x01(\x0b\x32&.cozy.worker.v1.WeightsTransferRequestH\x00\x12\x42\n\x14weights_read_request\x18\x15 \x01(\x0b\x32\".cozy.worker.v1.WeightsReadRequestH\x00\x12K\n\x19model_source_file_request\x18\x16 \x01(\x0b\x32&.cozy.worker.v1.ModelSourceFileRequestH\x00\x12Q\n\x1cmodel_source_prepare_request\x18\x17 \x01(\x0b\x32).cozy.worker.v1.ModelSourcePrepareRequestH\x00\x12\x44\n\x15private_package_abort\x18\x19 \x01(\x0b\x32#.cozy.worker.v1.PrivatePackageAbortH\x00\x12\x46\n\x16weights_upload_request\x18\x1a \x01(\x0b\x32$.cozy.worker.v1.WeightsUploadRequestH\x00\x12S\n\x1dprivate_package_fetch_request\x18\x1b \x01(\x0b\x32*.cozy.worker.v1.PrivatePackageFetchRequestH\x00\x42\x05\n\x03msgJ\x04\x08\x0e\x10\x0fJ\x04\x08\x10\x10\x11J\x04\x08\x12\x10\x13J\x04\x08\x18\x10\x19R\x15\x61rtifact_grant_updateR\x10\x65nsure_artifactsR\x1aprivate_package_file_chunk\"\xc4\t\n\x0bWorkerFrame\x12-\n\tclaim_ack\x18\x05 \x01(\x0b\x32\x18.cozy.worker.v1.ClaimAckH\x00\x12=\n\x0eobserved_state\x18\x06 \x01(\x0b\x32#.cozy.worker.v1.ObservedWorkerStateH\x00\x12;\n\x10\x61ttempt_accepted\x18\x07 \x01(\x0b\x32\x1f.cozy.worker.v1.AttemptAcceptedH\x00\x12\x39\n\x0f\x61ttempt_outcome\x18\x08 \x01(\x0b\x32\x1e.cozy.worker.v1.AttemptOutcomeH\x00\x12\x33\n\x0c\x62oot_failure\x18\t \x01(\x0b\x32\x1b.cozy.worker.v1.BootFailureH\x00\x12\x42\n\x12\x63heckpoint_request\x18\n \x01(\x0b\x32$.cozy.worker.v1.JobCheckpointRequestH\x00\x12:\n\x0e\x63heckpoint_ack\x18\x0b \x01(\x0b\x32 .cozy.worker.v1.JobCheckpointAckH\x00\x12\x32\n\x08snapshot\x18\x0c \x01(\x0b\x32\x1e.cozy.worker.v1.WorkerSnapshotH\x00\x12H\n\x17weights_finalize_result\x18\x10 \x01(\x0b\x32%.cozy.worker.v1.WeightsFinalizeResultH\x00\x12<\n\x0eweights_intent\x18\x11 \x01(\x0b\x32\".cozy.worker.v1.WeightsIntentFrameH\x00\x12>\n\x0fweights_receipt\x18\x12 \x01(\x0b\x32#.cozy.worker.v1.WeightsReceiptFrameH\x00\x12@\n\x13weights_read_result\x18\x13 \x01(\x0b\x32!.cozy.worker.v1.WeightsReadResultH\x00\x12H\n\x17weights_transfer_status\x18\x14 \x01(\x0b\x32%.cozy.worker.v1.WeightsTransferStatusH\x00\x12I\n\x18model_source_file_status\x18\x15 \x01(\x0b\x32%.cozy.worker.v1.ModelSourceFileStatusH\x00\x12\x44\n\x15model_source_prepared\x18\x16 \x01(\x0b\x32#.cozy.worker.v1.ModelSourcePreparedH\x00\x12O\n\x1bprivate_package_file_status\x18\x17 \x01(\x0b\x32(.cozy.worker.v1.PrivatePackageFileStatusH\x00\x12Q\n\x1cprivate_package_abort_status\x18\x18 \x01(\x0b\x32).cozy.worker.v1.PrivatePackageAbortStatusH\x00\x12\x44\n\x15weights_upload_result\x18\x19 \x01(\x0b\x32#.cozy.worker.v1.WeightsUploadResultH\x00\x42\x05\n\x03msgJ\x04\x08\r\x10\x0eJ\x04\x08\x0e\x10\x0fJ\x04\x08\x0f\x10\x10\"\xc8\x01\n\x05\x43laim\x12\x1a\n\x12record_owner_epoch\x18\x01 \x01(\x04\x12\x1c\n\x14\x63ontrol_stream_epoch\x18\x02 \x01(\x04\x12\x16\n\x0eworker_boot_id\x18\x03 \x01(\t\x12\x17\n\x0frecord_owner_id\x18\x05 \x01(\t\x12\x11\n\tworker_id\x18\x06 \x01(\t\x12\x12\n\nwire_minor\x18\x07 \x01(\r\x12\r\n\x05proof\x18\x08 \x01(\x0cJ\x04\x08\x04\x10\x05J\x04\x08\t\x10\nR\x12wire_schema_digest\"z\n\nClaimProof\x12\x1a\n\x12record_owner_epoch\x18\x01 \x01(\x04\x12\x16\n\x0eworker_boot_id\x18\x02 \x01(\t\x12\x11\n\tworker_id\x18\x03 \x01(\t\x12%\n\x1dworker_tls_certificate_digest\x18\x04 \x01(\x0c\"\x87\x03\n\x08\x43laimAck\x12\x1a\n\x12record_owner_epoch\x18\x01 \x01(\x04\x12\x1c\n\x14\x63ontrol_stream_epoch\x18\x02 \x01(\x04\x12\x16\n\x0eworker_boot_id\x18\x03 \x01(\t\x12\x10\n\x08\x61\x63\x63\x65pted\x18\x05 \x01(\x08\x12\x31\n\trejection\x18\x06 \x01(\x0e\x32\x1e.cozy.worker.v1.ClaimRejection\x12\x12\n\nwire_minor\x18\x07 \x01(\r\x12\x11\n\tworker_id\x18\x08 \x01(\t\x12\x1a\n\x12worker_instance_id\x18\t \x01(\t\x12\x19\n\x11worker_release_id\x18\n \x01(\t\x12\x1e\n\x16\x63ontrol_runtime_digest\x18\x0b \x01(\t\x12\x12\n\ngit_commit\x18\x0c \x01(\t\x12\x32\n\tresources\x18\r \x01(\x0b\x32\x1f.cozy.worker.v1.WorkerResourcesJ\x04\x08\x04\x10\x05J\x04\x08\x0e\x10\x0fR\x12wire_schema_digest\"\xc6\x02\n\x0b\x42ootFailure\x12\x1a\n\x12record_owner_epoch\x18\x01 \x01(\x04\x12\x1c\n\x14\x63ontrol_stream_epoch\x18\x02 \x01(\x04\x12\x16\n\x0eworker_boot_id\x18\x03 \x01(\t\x12\x11\n\tworker_id\x18\x05 \x01(\t\x12\x1a\n\x12worker_instance_id\x18\x06 \x01(\t\x12\x31\n\x06reason\x18\x07 \x01(\x0e\x32!.cozy.worker.v1.BootFailureReason\x12\x0e\n\x06\x64\x65tail\x18\x08 \x01(\t\x12\x32\n\tresources\x18\t \x01(\x0b\x32\x1f.cozy.worker.v1.WorkerResources\x12\x1e\n\x16\x63ontrol_runtime_digest\x18\n \x01(\t\x12\x19\n\x11worker_release_id\x18\x0b \x01(\tJ\x04\x08\x04\x10\x05\"\xad\x02\n\x0eWorkerSnapshot\x12\x1a\n\x12record_owner_epoch\x18\x01 \x01(\x04\x12\x1c\n\x14\x63ontrol_stream_epoch\x18\x02 \x01(\x04\x12\x16\n\x0eworker_boot_id\x18\x03 \x01(\t\x12\x13\n\x0bsnapshot_id\x18\x05 \x01(\t\x12\x17\n\x0fsnapshot_digest\x18\x06 \x01(\x0c\x12 \n\x18snapshot_canonical_bytes\x18\x07 \x01(\x0c\x12.\n&accepted_placement_set_canonical_bytes\x18\x08 \x01(\x0c\x12\x1c\n\x14host_snapshot_digest\x18\t \x01(\x0c\x12%\n\x1dhost_snapshot_canonical_bytes\x18\n \x01(\x0cJ\x04\x08\x04\x10\x05\"\xf2\x03\n\x12WorkerSnapshotBody\x12\'\n\x1f\x61\x63\x63\x65pted_desired_state_revision\x18\x01 \x01(\x04\x12%\n\x1d\x61\x63\x63\x65pted_placement_set_digest\x18\x02 \x01(\x0c\x12\x19\n\x11journal_highwater\x18\x03 \x01(\x04\x12\x31\n\x0cworker_phase\x18\x04 \x01(\x0e\x32\x1b.cozy.worker.v1.WorkerPhase\x12\x33\n\nplacements\x18\x05 \x03(\x0b\x32\x1f.cozy.worker.v1.PlacementStatus\x12\x1a\n\x12\x63onverged_revision\x18\x06 \x01(\x04\x12\x17\n\x0f\x61\x64mission_epoch\x18\x07 \x01(\x04\x12\x37\n\x0f\x61\x64mission_state\x18\x08 \x01(\x0e\x32\x1e.cozy.worker.v1.AdmissionState\x12\x1f\n\x17\x61vailable_attempt_slots\x18\t \x01(\r\x12\x32\n\rheld_attempts\x18\n \x03(\x0b\x32\x1b.cozy.worker.v1.HeldAttempt\x12\x46\n\x14weights_transactions\x18\x0b \x03(\x0b\x32(.cozy.worker.v1.WeightsTransactionStatus\"\x8e\x01\n\x10HostSnapshotBody\x12\x32\n\rheld_outcomes\x18\x01 \x03(\x0b\x32\x1b.cozy.worker.v1.HeldAttempt\x12\x46\n\x14weights_transactions\x18\x02 \x03(\x0b\x32(.cozy.worker.v1.WeightsTransactionStatus\"\xb1\x01\n\x0bSnapshotAck\x12\x1a\n\x12record_owner_epoch\x18\x01 \x01(\x04\x12\x1c\n\x14\x63ontrol_stream_epoch\x18\x02 \x01(\x04\x12\x16\n\x0eworker_boot_id\x18\x03 \x01(\t\x12\x13\n\x0bsnapshot_id\x18\x05 \x01(\t\x12\x17\n\x0fsnapshot_digest\x18\x06 \x01(\x0c\x12\x1c\n\x14host_snapshot_digest\x18\x07 \x01(\x0cJ\x04\x08\x04\x10\x05\"\xaf\x04\n\x12\x44\x65siredWorkerState\x12\x1a\n\x12record_owner_epoch\x18\x01 \x01(\x04\x12\x1c\n\x14\x63ontrol_stream_epoch\x18\x02 \x01(\x04\x12\x16\n\x0eworker_boot_id\x18\x03 \x01(\t\x12\x10\n\x08revision\x18\x05 \x01(\x04\x12(\n\x07posture\x18\x06 \x01(\x0e\x32\x17.cozy.worker.v1.Posture\x12\x12\n\nwire_minor\x18\x07 \x01(\r\x12\x16\n\x0e\x64rain_grace_ms\x18\x08 \x01(\x04\x12+\n\x03job\x18\r \x01(\x0b\x32\x1c.cozy.worker.v1.JobDirectiveH\x00\x12<\n\rplacement_set\x18\x0f \x01(\x0b\x32#.cozy.worker.v1.DesiredPlacementSetH\x00\x12\x38\n\x0bpackage_set\x18\x10 \x01(\x0b\x32!.cozy.worker.v1.DesiredPackageSetH\x00\x12G\n\x13private_package_set\x18\x11 \x01(\x0b\x32(.cozy.worker.v1.DesiredPrivatePackageSetH\x00\x12K\n\x15private_placement_set\x18\x12 \x01(\x0b\x32*.cozy.worker.v1.DesiredPrivatePlacementSetH\x00\x42\x06\n\x04modeJ\x04\x08\x04\x10\x05J\x04\x08\t\x10\nJ\x04\x08\n\x10\x0bJ\x04\x08\x0b\x10\x0cJ\x04\x08\x0c\x10\r\"W\n\x11\x44\x65siredPackageSet\x12\x1b\n\x13\x64ownload_delegation\x18\x01 \x01(\x0c\x12%\n\x1d\x64ownload_delegation_signature\x18\x02 \x01(\x0c\"\x9b\x01\n\x18\x44\x65siredPrivatePackageSet\x12\x14\n\x0coperation_id\x18\x01 \x01(\t\x12\x33\n\x07package\x18\x02 \x01(\x0b\x32\".cozy.worker.v1.DevelopmentPackage\x12\x34\n\x05\x66iles\x18\x03 \x03(\x0b\x32%.cozy.worker.v1.PrivatePackageFileRef\"\x97\x01\n\x1a\x44\x65siredPrivatePlacementSet\x12\x14\n\x0coperation_id\x18\x01 \x01(\t\x12\x1f\n\x17private_revision_digest\x18\x02 \x01(\x0c\x12\x1b\n\x13\x64ownload_delegation\x18\x03 \x01(\x0c\x12%\n\x1d\x64ownload_delegation_signature\x18\x04 \x01(\x0c\"z\n\x15PrivatePackageFileRef\x12\x0e\n\x06\x64igest\x18\x01 \x01(\x0c\x12\x10\n\x08\x66ilename\x18\x02 \x01(\t\x12/\n\x04kind\x18\x03 \x01(\x0e\x32!.cozy.worker.v1.LocalDownloadKind\x12\x0e\n\x06length\x18\x04 \x01(\x04\"\xb8\x01\n\x16PrivatePackageRevision\x12\x0f\n\x07package\x18\x01 \x01(\t\x12\x0f\n\x07release\x18\x02 \x01(\t\x12\x15\n\rsource_digest\x18\x03 \x01(\x0c\x12/\n\x12package_descriptor\x18\x04 \x01(\x0b\x32\x13.cozy.worker.v1.Ref\x12\x34\n\x05\x66iles\x18\x05 \x03(\x0b\x32%.cozy.worker.v1.PrivatePackageFileRef\"`\n\x13\x44\x65siredPlacementSet\x12\x1c\n\x14placement_set_digest\x18\x01 \x01(\x0c\x12%\n\x1dplacement_set_canonical_bytes\x18\x03 \x01(\x0cJ\x04\x08\x02\x10\x03\"=\n\x0cPlacementSet\x12-\n\nplacements\x18\x01 \x03(\x0b\x32\x19.cozy.worker.v1.Placement\"\xfa\x01\n\x12\x44ownloadDelegation\x12\x17\n\x0f\x65xpires_at_unix\x18\x01 \x01(\x04\x12\x30\n\x06models\x18\x02 \x03(\x0b\x32 .cozy.worker.v1.DownloadModelRef\x12\x34\n\x08packages\x18\x03 \x03(\x0b\x32\".cozy.worker.v1.DownloadPackageRef\x12\x11\n\trental_id\x18\x04 \x01(\t\x12\x16\n\x0eworker_boot_id\x18\x05 \x01(\t\x12\x11\n\tworker_id\x18\x06 \x01(\t\x12%\n\x1dworker_tls_certificate_digest\x18\x07 \x01(\x0c\"c\n\x10\x44ownloadModelRef\x12\x10\n\x08manifest\x18\x01 \x01(\t\x12\r\n\x05model\x18\x02 \x01(\t\x12\x0f\n\x07release\x18\x03 \x01(\t\x12\x0f\n\x07package\x18\x04 \x01(\t\x12\x0c\n\x04slot\x18\x05 \x01(\t\"N\n\x12\x44ownloadPackageRef\x12\x0f\n\x07package\x18\x01 \x01(\t\x12\x0f\n\x07release\x18\x02 \x01(\t\x12\x16\n\x0erelease_digest\x18\x03 \x01(\t\"\xc8\x03\n\tPlacement\x12\x14\n\x0cplacement_id\x18\x01 \x01(\t\x12\x33\n\x07package\x18\x02 \x01(\x0b\x32 .cozy.worker.v1.PackageSelectionH\x00\x12\x39\n\x0b\x64\x65velopment\x18\x0b \x01(\x0b\x32\".cozy.worker.v1.DevelopmentPackageH\x00\x12\x1a\n\x12\x65nvironment_digest\x18\x03 \x01(\x0c\x12/\n\x12package_descriptor\x18\x05 \x01(\x0b\x32\x13.cozy.worker.v1.Ref\x12\x17\n\x0f\x62indings_digest\x18\x06 \x01(\x0c\x12%\n\x06models\x18\x07 \x03(\x0b\x32\x15.cozy.worker.v1.Model\x12/\n\x0b\x65ntrypoints\x18\x08 \x03(\x0b\x32\x1a.cozy.worker.v1.Entrypoint\x12\x30\n\x0b\x65nvironment\x18\n \x01(\x0b\x32\x1b.cozy.worker.v1.EnvironmentB\x0e\n\x0cpackage_modeJ\x04\x08\x04\x10\x05J\x04\x08\t\x10\nR\x1a\x65nvironment_receipt_digestR\rqualification\"%\n\x03Ref\x12\x0e\n\x06\x64igest\x18\x01 \x01(\x0c\x12\x0e\n\x06length\x18\x02 \x01(\x04\"\x8a\x01\n\tWheelFact\x12 \n\x03ref\x18\x01 \x01(\x0b\x32\x13.cozy.worker.v1.Ref\x12\x14\n\x0c\x64istribution\x18\x02 \x01(\t\x12\x0f\n\x07version\x18\x03 \x01(\t\x12\x10\n\x08\x66ilename\x18\x04 \x01(\t\x12\x14\n\x0cimport_roots\x18\x05 \x03(\t\x12\x0c\n\x04tags\x18\x06 \x03(\t\"~\n\x10PackageSelection\x12\x0f\n\x07package\x18\x01 \x01(\t\x12\x0f\n\x07release\x18\x02 \x01(\t\x12\x16\n\x0erelease_digest\x18\x03 \x01(\x0c\x12\x30\n\rproject_wheel\x18\x04 \x01(\x0b\x32\x19.cozy.worker.v1.WheelFact\"\xa0\x01\n\x12\x44\x65velopmentPackage\x12\x0f\n\x07package\x18\x01 \x01(\t\x12\x0f\n\x07release\x18\x02 \x01(\t\x12\x15\n\rsource_digest\x18\x03 \x01(\x0c\x12\x30\n\rproject_wheel\x18\x04 \x01(\x0b\x32\x19.cozy.worker.v1.WheelFact\x12\x1f\n\x17private_revision_digest\x18\x05 \x01(\x0c\"S\n\x0b\x45nvironment\x12)\n\x06wheels\x18\x02 \x03(\x0b\x32\x19.cozy.worker.v1.WheelFactJ\x04\x08\x01\x10\x02R\x13wheelhouse_manifest\"g\n\x05Model\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04repo\x18\x02 \x01(\t\x12\x0f\n\x07version\x18\x03 \x01(\t\x12\x0c\n\x04lane\x18\x04 \x01(\t\x12%\n\x08manifest\x18\x05 \x01(\x0b\x32\x13.cozy.worker.v1.Ref\"b\n\nEntrypoint\x12\x0c\n\x04name\x18\x01 \x01(\t\x12!\n\x19\x65ntrypoint_binding_digest\x18\x02 \x01(\x0c\x12#\n\x05slots\x18\x03 \x03(\x0b\x32\x14.cozy.worker.v1.Slot\"\xe8\x01\n\x04Slot\x12\x0c\n\x04slot\x18\x01 \x01(\t\x12\x1a\n\x12reference_model_id\x18\x02 \x01(\t\x12&\n\x06\x63onfig\x18\x03 \x01(\x0b\x32\x16.cozy.worker.v1.Config\x12-\n\ncomponents\x18\x04 \x03(\x0b\x32\x19.cozy.worker.v1.Component\x12\x38\n\x1bmodel_construction_contract\x18\x05 \x01(\x0b\x32\x13.cozy.worker.v1.Ref\x12%\n\x06stamps\x18\x06 \x03(\x0b\x32\x15.cozy.worker.v1.Stamp\"V\n\x06\x43onfig\x12%\n\x08\x64ocument\x18\x01 \x01(\x0b\x32\x13.cozy.worker.v1.Ref\x12%\n\x06\x61ssets\x18\x02 \x03(\x0b\x32\x15.cozy.worker.v1.Asset\"I\n\x05\x41sset\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x10\n\x08model_id\x18\x02 \x01(\t\x12 \n\x03ref\x18\x03 \x01(\x0b\x32\x13.cozy.worker.v1.Ref\"0\n\tComponent\x12\x11\n\tcomponent\x18\x01 \x01(\t\x12\x10\n\x08model_id\x18\x02 \x01(\t\"7\n\x05Stamp\x12\x11\n\tcomponent\x18\x01 \x01(\t\x12\x0b\n\x03key\x18\x02 \x01(\t\x12\x0e\n\x06values\x18\x03 \x03(\t\"\xe6\x01\n\x0cJobDirective\x12\x10\n\x08\x62uild_id\x18\x01 \x01(\t\x12\x19\n\x11job_descriptor_id\x18\x02 \x01(\t\x12\x33\n\rresource_caps\x18\x03 \x01(\x0b\x32\x1c.cozy.worker.v1.ResourceCaps\x12\x41\n\x14publication_contract\x18\x04 \x01(\x0b\x32#.cozy.worker.v1.PublicationContract\x12\x1b\n\x13reclaim_on_terminal\x18\x05 \x01(\x08\x12\x14\n\x0c\x64\x65vice_count\x18\x06 \x01(\r\"\x83\x06\n\x13ObservedWorkerState\x12\x1a\n\x12record_owner_epoch\x18\x01 \x01(\x04\x12\x1c\n\x14\x63ontrol_stream_epoch\x18\x02 \x01(\x04\x12\x16\n\x0eworker_boot_id\x18\x03 \x01(\t\x12\x1a\n\x12\x61pplied_wire_minor\x18\x08 \x01(\r\x12\x32\n\rheld_attempts\x18\t \x03(\x0b\x32\x1b.cozy.worker.v1.HeldAttempt\x12%\n\x06\x66\x61ults\x18\n \x03(\x0b\x32\x15.cozy.worker.v1.Fault\x12/\n\x08\x61\x63tivity\x18\x0b \x03(\x0b\x32\x1d.cozy.worker.v1.ActivityEvent\x12\x31\n\x0cjob_capacity\x18\r \x01(\x0b\x32\x1b.cozy.worker.v1.JobCapacity\x12\x33\n\nplacements\x18\x0f \x03(\x0b\x32\x1f.cozy.worker.v1.PlacementStatus\x12\x17\n\x0f\x61\x64mission_epoch\x18\x10 \x01(\x04\x12\x37\n\x0f\x61\x64mission_state\x18\x11 \x01(\x0e\x32\x1e.cozy.worker.v1.AdmissionState\x12\x1f\n\x17\x61vailable_attempt_slots\x18\x12 \x01(\r\x12\'\n\x1f\x61\x63\x63\x65pted_desired_state_revision\x18\x13 \x01(\x04\x12%\n\x1d\x61\x63\x63\x65pted_placement_set_digest\x18\x14 \x01(\x0c\x12\x1a\n\x12\x63onverged_revision\x18\x15 \x01(\x04\x12\x31\n\x0cworker_phase\x18\x16 \x01(\x0e\x32\x1b.cozy.worker.v1.WorkerPhaseJ\x04\x08\x04\x10\x05J\x04\x08\x05\x10\x06J\x04\x08\x06\x10\x07J\x04\x08\x07\x10\x08J\x04\x08\x0c\x10\rJ\x04\x08\x0e\x10\x0fJ\x04\x08\x17\x10\x18J\x04\x08\x18\x10\x19J\x04\x08\x19\x10\x1aR\x19\x61pplied_artifact_grant_idR\x16\x61pplied_grant_revisionR\x0f\x61rtifact_intent\"\xdb\x04\n\x0fPlacementStatus\x12\x14\n\x0cplacement_id\x18\x01 \x01(\t\x12\x16\n\x0e\x65xecutor_epoch\x18\x04 \x01(\x04\x12$\n\x1c\x64ispatchable_binding_digests\x18\x06 \x03(\x0c\x12&\n\x1ematerializable_binding_digests\x18\x07 \x03(\x0c\x12%\n\x06\x66\x61ults\x18\x08 \x03(\x0b\x32\x15.cozy.worker.v1.Fault\x12=\n\x0b\x61\x63\x63\x65lerator\x18\t \x01(\x0b\x32(.cozy.worker.v1.AcceleratorQualification\x12\x1c\n\x14placement_set_digest\x18\x0b \x01(\x0c\x12=\n\x0fmaterialization\x18\x0c \x01(\x0e\x32$.cozy.worker.v1.MaterializationState\x12-\n\x07serving\x18\r \x01(\x0e\x32\x1c.cozy.worker.v1.ServingState\x12.\n&retained_fallback_placement_set_digest\x18\x0e \x01(\x0c\x12\x44\n\x0b\x61\x63quisition\x18\x0f \x01(\x0b\x32/.cozy.worker.v1.PlacementAcquisitionObservation\x12\x1f\n\x17package_revision_digest\x18\x10 \x01(\t\x12\x1a\n\x12\x65nvironment_digest\x18\x11 \x01(\t\x12\x15\n\rconfig_digest\x18\x12 \x01(\tJ\x04\x08\x02\x10\x03J\x04\x08\x03\x10\x04J\x04\x08\x05\x10\x06\"\x97\x01\n\x1fPlacementAcquisitionObservation\x12:\n\x07package\x18\x01 \x01(\x0b\x32).cozy.worker.v1.AcquisitionLegObservation\x12\x38\n\x05model\x18\x02 \x01(\x0b\x32).cozy.worker.v1.AcquisitionLegObservation\"\x85\x01\n\x19\x41\x63quisitionLegObservation\x12\x1c\n\x14started_monotonic_ns\x18\x01 \x01(\x04\x12\x1a\n\x12\x65nded_monotonic_ns\x18\x02 \x01(\x04\x12\x18\n\x10\x64ownloaded_bytes\x18\x03 \x01(\x04\x12\x14\n\x0creused_bytes\x18\x04 \x01(\x04\"\xe2\x01\n\x18\x41\x63\x63\x65leratorQualification\x12\x11\n\tqualified\x18\x01 \x01(\x08\x12\x14\n\x0c\x63\x61pabilities\x18\x02 \x03(\t\x12\x1d\n\x15recommended_max_bytes\x18\x03 \x01(\x04\x12\x1d\n\x15pinned_capacity_bytes\x18\x04 \x01(\x04\x12\x19\n\x11h2d_gbps_measured\x18\x05 \x01(\r\x12\x19\n\x11\x64\x32h_gbps_measured\x18\x06 \x01(\r\x12\x15\n\rtorch_version\x18\x07 \x01(\t\x12\x12\n\nunreadable\x18\x08 \x03(\t\"L\n\rActivityEvent\x12\x0b\n\x03seq\x18\x01 \x01(\x04\x12\x0c\n\x04kind\x18\x02 \x01(\t\x12\x0c\n\x04step\x18\x03 \x01(\t\x12\x12\n\nat_unix_ms\x18\x04 \x01(\x04\"\xb9\x02\n\x0c\x41ttemptOffer\x12\x1a\n\x12record_owner_epoch\x18\x01 \x01(\x04\x12\x1c\n\x14\x63ontrol_stream_epoch\x18\x02 \x01(\x04\x12\x16\n\x0eworker_boot_id\x18\x03 \x01(\t\x12\x12\n\nrequest_id\x18\x05 \x01(\t\x12\x17\n\x0f\x61ttempt_ordinal\x18\x06 \x01(\x04\x12\x1e\n\x16invocation_spec_digest\x18\x07 \x01(\x0c\x12,\n\x05grant\x18\x08 \x01(\x0b\x32\x1d.cozy.worker.v1.DeliveryGrant\x12\'\n\x1finvocation_spec_canonical_bytes\x18\t \x01(\x0c\x12\x14\n\x0cplacement_id\x18\n \x01(\t\x12\x17\n\x0f\x61\x64mission_epoch\x18\x0c \x01(\x04J\x04\x08\x04\x10\x05\"\xce\x02\n\x0f\x41ttemptAccepted\x12\x1a\n\x12record_owner_epoch\x18\x01 \x01(\x04\x12\x1c\n\x14\x63ontrol_stream_epoch\x18\x02 \x01(\x04\x12\x16\n\x0eworker_boot_id\x18\x03 \x01(\t\x12\x12\n\nrequest_id\x18\x05 \x01(\t\x12\x17\n\x0f\x61ttempt_ordinal\x18\x06 \x01(\x04\x12\x1e\n\x16invocation_spec_digest\x18\x07 \x01(\x0c\x12\x13\n\x0bplan_digest\x18\x08 \x01(\x0c\x12!\n\x19model_construction_digest\x18\t \x01(\x0c\x12\x30\n\x04plan\x18\n \x01(\x0b\x32\".cozy.worker.v1.AttemptPlanSummary\x12\x14\n\x0cplacement_id\x18\x0b \x01(\t\x12\x16\n\x0e\x65xecutor_epoch\x18\x0c \x01(\x04J\x04\x08\x04\x10\x05\"\xca\x01\n\x12\x41ttemptPlanSummary\x12\x10\n\x08\x64\x65livery\x18\x01 \x01(\t\x12\x17\n\x0fmaterialization\x18\x02 \x01(\t\x12\x15\n\rcompute_dtype\x18\x03 \x01(\t\x12\x11\n\tplacement\x18\x04 \x01(\t\x12$\n\x1creserved_device_memory_bytes\x18\x05 \x01(\x04\x12\x1b\n\x13reserved_host_bytes\x18\x06 \x01(\x04\x12\x1c\n\x14\x64\x65\x63ision_explanation\x18\x07 \x01(\t\"\xf4\x01\n\rCancelAttempt\x12\x1a\n\x12record_owner_epoch\x18\x01 \x01(\x04\x12\x1c\n\x14\x63ontrol_stream_epoch\x18\x02 \x01(\x04\x12\x16\n\x0eworker_boot_id\x18\x03 \x01(\t\x12\x12\n\nrequest_id\x18\x05 \x01(\t\x12\x17\n\x0f\x61ttempt_ordinal\x18\x06 \x01(\x04\x12,\n\x06reason\x18\x07 \x01(\x0e\x32\x1c.cozy.worker.v1.CancelReason\x12\x10\n\x08grace_ms\x18\x08 \x01(\x04\x12\x1e\n\x16invocation_spec_digest\x18\t \x01(\x0cJ\x04\x08\x04\x10\x05\"\x98\x02\n\x0e\x41ttemptOutcome\x12\x1a\n\x12record_owner_epoch\x18\x01 \x01(\x04\x12\x1c\n\x14\x63ontrol_stream_epoch\x18\x02 \x01(\x04\x12\x16\n\x0eworker_boot_id\x18\x03 \x01(\t\x12\x12\n\nrequest_id\x18\x05 \x01(\t\x12\x17\n\x0f\x61ttempt_ordinal\x18\x06 \x01(\x04\x12\x1e\n\x16invocation_spec_digest\x18\x07 \x01(\x0c\x12\x12\n\noutcome_id\x18\x08 \x01(\t\x12\x16\n\x0eoutcome_digest\x18\t \x01(\x0c\x12\x1f\n\x17outcome_canonical_bytes\x18\n \x01(\x0c\x12\x14\n\x0cplacement_id\x18\x0b \x01(\tJ\x04\x08\x04\x10\x05\"\xfd\x03\n\x12\x41ttemptOutcomeBody\x12\x12\n\nrequest_id\x18\x01 \x01(\t\x12\x17\n\x0f\x61ttempt_ordinal\x18\x02 \x01(\x04\x12\x1e\n\x16invocation_spec_digest\x18\x03 \x01(\t\x12-\n\x06status\x18\x04 \x01(\x0e\x32\x1d.cozy.worker.v1.OutcomeStatus\x12\x37\n\x0foutput_manifest\x18\x05 \x01(\x0b\x32\x1e.cozy.worker.v1.OutputManifest\x12/\n\x07metrics\x18\x06 \x01(\x0b\x32\x1e.cozy.worker.v1.AttemptMetrics\x12\x36\n\rtriage_bundle\x18\x07 \x01(\x0b\x32\x1f.cozy.worker.v1.TriageBundleRef\x12\x14\n\x0csafe_message\x18\x08 \x01(\t\x12+\n\x05\x63\x61use\x18\t \x01(\x0b\x32\x1c.cozy.worker.v1.OutcomeCause\x12.\n\x06result\x18\n \x01(\x0b\x32\x1e.cozy.worker.v1.ResultEnvelope\x12\x19\n\x11\x65xecution_started\x18\x0b \x01(\x08\x12;\n\x10weights_receipts\x18\x0c \x03(\x0b\x32!.cozy.worker.v1.WeightsReceiptRef\"\\\n\x11WeightsReceiptRef\x12\x1e\n\x16weights_receipt_digest\x18\x01 \x01(\x0c\x12\'\n\x1fweights_receipt_canonical_bytes\x18\x02 \x01(\x0c\"\x90\x02\n\x0eWeightsReceipt\x12\x1d\n\x15owner_authority_scope\x18\x01 \x01(\t\x12\x12\n\nrequest_id\x18\x02 \x01(\t\x12\x1e\n\x16invocation_spec_digest\x18\x03 \x01(\t\x12\x13\n\x0boutput_slot\x18\x04 \x01(\t\x12\x1e\n\x16weights_transaction_id\x18\x05 \x01(\t\x12\x1f\n\x17tensorfs_receipt_digest\x18\x06 \x01(\t\x12(\n tensorfs_receipt_canonical_bytes\x18\x07 \x01(\x0c\x12+\n#checkpoint_evidence_canonical_bytes\x18\x08 \x01(\x0c\"L\n\x13WeightsObjectSource\x12\x11\n\tobject_id\x18\x01 \x01(\t\x12\x0e\n\x06length\x18\x02 \x01(\x04\x12\x12\n\nsource_ref\x18\x03 \x01(\t\"\xc1\x02\n\x12WeightsIntentFrame\x12\x1a\n\x12record_owner_epoch\x18\x01 \x01(\x04\x12\x1c\n\x14\x63ontrol_stream_epoch\x18\x02 \x01(\x04\x12\x16\n\x0eworker_boot_id\x18\x03 \x01(\t\x12\x12\n\nrequest_id\x18\x05 \x01(\t\x12\x17\n\x0f\x61ttempt_ordinal\x18\x06 \x01(\x04\x12\x1e\n\x16invocation_spec_digest\x18\x07 \x01(\x0c\x12\x13\n\x0boutput_slot\x18\x08 \x01(\t\x12#\n\x1btensorfs_declaration_digest\x18\t \x01(\x0c\x12\x1e\n\x16requested_writer_epoch\x18\n \x01(\x04\x12,\n$tensorfs_declaration_canonical_bytes\x18\x0b \x01(\x0cJ\x04\x08\x04\x10\x05\"\xa3\x04\n\x0eWeightsHostAck\x12\x1a\n\x12record_owner_epoch\x18\x01 \x01(\x04\x12\x1c\n\x14\x63ontrol_stream_epoch\x18\x02 \x01(\x04\x12\x16\n\x0eworker_boot_id\x18\x03 \x01(\t\x12\x12\n\nrequest_id\x18\x05 \x01(\t\x12\x17\n\x0f\x61ttempt_ordinal\x18\x06 \x01(\x04\x12\x1e\n\x16invocation_spec_digest\x18\x07 \x01(\x0c\x12\x13\n\x0boutput_slot\x18\x08 \x01(\t\x12\x1e\n\x16weights_transaction_id\x18\t \x01(\t\x12\x14\n\x0cwriter_epoch\x18\n \x01(\x04\x12#\n\x1btensorfs_declaration_digest\x18\x0b \x01(\x0c\x12/\n\x05stage\x18\x0c \x01(\x0e\x32 .cozy.worker.v1.WeightsHostStage\x12\x33\n\x07outcome\x18\r \x01(\x0e\x32\".cozy.worker.v1.WeightsHostOutcome\x12\x33\n\x07refusal\x18\x0e \x01(\x0e\x32\".cozy.worker.v1.WeightsHostRefusal\x12:\n\x0fweights_receipt\x18\x0f \x01(\x0b\x32!.cozy.worker.v1.WeightsReceiptRef\x12%\n\x08manifest\x18\x10 \x01(\x0b\x32\x13.cozy.worker.v1.RefJ\x04\x08\x04\x10\x05\"\xc3\x03\n\x13WeightsReceiptFrame\x12\x1a\n\x12record_owner_epoch\x18\x01 \x01(\x04\x12\x1c\n\x14\x63ontrol_stream_epoch\x18\x02 \x01(\x04\x12\x16\n\x0eworker_boot_id\x18\x03 \x01(\t\x12\x12\n\nrequest_id\x18\x05 \x01(\t\x12\x17\n\x0f\x61ttempt_ordinal\x18\x06 \x01(\x04\x12\x1e\n\x16invocation_spec_digest\x18\x07 \x01(\x0c\x12\x13\n\x0boutput_slot\x18\x08 \x01(\t\x12\x1e\n\x16weights_transaction_id\x18\t \x01(\t\x12\x14\n\x0cwriter_epoch\x18\n \x01(\x04\x12#\n\x1btensorfs_declaration_digest\x18\x0b \x01(\x0c\x12:\n\x0fweights_receipt\x18\x0c \x01(\x0b\x32!.cozy.worker.v1.WeightsReceiptRef\x12\x34\n\x07objects\x18\r \x03(\x0b\x32#.cozy.worker.v1.WeightsObjectSource\x12%\n\x08manifest\x18\x0e \x01(\x0b\x32\x13.cozy.worker.v1.RefJ\x04\x08\x04\x10\x05\"\xaf\x02\n\x18WeightsTransactionStatus\x12\x1e\n\x16weights_transaction_id\x18\x01 \x01(\t\x12\x12\n\nrequest_id\x18\x02 \x01(\t\x12\x17\n\x0f\x61ttempt_ordinal\x18\x03 \x01(\x04\x12\x1e\n\x16invocation_spec_digest\x18\x04 \x01(\t\x12\x13\n\x0boutput_slot\x18\x05 \x01(\t\x12\x14\n\x0cwriter_epoch\x18\x06 \x01(\x04\x12\x36\n\x05state\x18\x07 \x01(\x0e\x32\'.cozy.worker.v1.WeightsTransactionState\x12#\n\x1btensorfs_declaration_digest\x18\x08 \x01(\x0c\x12\x1e\n\x16weights_receipt_digest\x18\t \x01(\x0c\"\xfd\x01\n\x12WeightsReadRequest\x12\x1a\n\x12record_owner_epoch\x18\x01 \x01(\x04\x12\x1c\n\x14\x63ontrol_stream_epoch\x18\x02 \x01(\x04\x12\x16\n\x0eworker_boot_id\x18\x03 \x01(\t\x12\x1e\n\x16weights_transaction_id\x18\x05 \x01(\t\x12\x14\n\x0cwriter_epoch\x18\x06 \x01(\x04\x12\x11\n\tobject_id\x18\x07 \x01(\t\x12\x12\n\nsource_ref\x18\x08 \x01(\t\x12\x0f\n\x07read_id\x18\t \x01(\t\x12\x0e\n\x06offset\x18\n \x01(\x04\x12\x11\n\tmax_bytes\x18\x0b \x01(\rJ\x04\x08\x04\x10\x05\"\x8b\x03\n\x11WeightsReadResult\x12\x1a\n\x12record_owner_epoch\x18\x01 \x01(\x04\x12\x1c\n\x14\x63ontrol_stream_epoch\x18\x02 \x01(\x04\x12\x16\n\x0eworker_boot_id\x18\x03 \x01(\t\x12\x1e\n\x16weights_transaction_id\x18\x05 \x01(\t\x12\x14\n\x0cwriter_epoch\x18\x06 \x01(\x04\x12\x11\n\tobject_id\x18\x07 \x01(\t\x12\x12\n\nsource_ref\x18\x08 \x01(\t\x12\x0f\n\x07read_id\x18\t \x01(\t\x12\x0e\n\x06offset\x18\n \x01(\x04\x12\x33\n\x07outcome\x18\x0b \x01(\x0e\x32\".cozy.worker.v1.WeightsReadOutcome\x12\x0c\n\x04\x64\x61ta\x18\x0c \x01(\x0c\x12\x13\n\x0b\x64\x61ta_digest\x18\r \x01(\x0c\x12\x33\n\x07refusal\x18\x0e \x01(\x0e\x32\".cozy.worker.v1.WeightsReadRefusal\x12\x13\n\x0bsafe_detail\x18\x0f \x01(\tJ\x04\x08\x04\x10\x05\"5\n\x10WeightsObjectRef\x12\x11\n\tobject_id\x18\x01 \x01(\t\x12\x0e\n\x06length\x18\x02 \x01(\x04\"2\n\x13WeightsUploadHeader\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t\"\x9c\x01\n\x12WeightsUploadGrant\x12\x11\n\tobject_id\x18\x01 \x01(\t\x12\x0e\n\x06length\x18\x02 \x01(\x04\x12\x0b\n\x03url\x18\x03 \x01(\t\x12=\n\x10required_headers\x18\x04 \x03(\x0b\x32#.cozy.worker.v1.WeightsUploadHeader\x12\x17\n\x0f\x65xpires_at_unix\x18\x05 \x01(\x04\"\xba\x03\n\x16WeightsTransferRequest\x12\x1a\n\x12record_owner_epoch\x18\x01 \x01(\x04\x12\x1c\n\x14\x63ontrol_stream_epoch\x18\x02 \x01(\x04\x12\x16\n\x0eworker_boot_id\x18\x03 \x01(\t\x12\x12\n\nrequest_id\x18\x05 \x01(\t\x12\x17\n\x0f\x61ttempt_ordinal\x18\x06 \x01(\x04\x12\x1e\n\x16invocation_spec_digest\x18\x07 \x01(\x0c\x12\x13\n\x0boutput_slot\x18\x08 \x01(\t\x12\x1e\n\x16weights_transaction_id\x18\t \x01(\t\x12\x1e\n\x16weights_receipt_digest\x18\n \x01(\x0c\x12\x14\n\x0coperation_id\x18\x0b \x01(\t\x12\x16\n\x0egrant_revision\x18\x0c \x01(\x04\x12:\n\x0cupload_grant\x18\r \x01(\x0b\x32\".cozy.worker.v1.WeightsUploadGrantH\x00\x12\x30\n\x04held\x18\x0e \x01(\x0b\x32 .cozy.worker.v1.WeightsObjectRefH\x00\x42\n\n\x08\x64\x65\x63isionJ\x04\x08\x04\x10\x05\"\xbc\x02\n\x14WeightsUploadRequest\x12\x1a\n\x12record_owner_epoch\x18\x01 \x01(\x04\x12\x1c\n\x14\x63ontrol_stream_epoch\x18\x02 \x01(\x04\x12\x16\n\x0eworker_boot_id\x18\x03 \x01(\t\x12\x1e\n\x16weights_transaction_id\x18\x05 \x01(\t\x12\x14\n\x0cwriter_epoch\x18\x06 \x01(\x04\x12\x11\n\tobject_id\x18\x07 \x01(\t\x12\x12\n\nsource_ref\x18\x08 \x01(\t\x12\x0e\n\x06length\x18\t \x01(\x04\x12\x14\n\x0coperation_id\x18\n \x01(\t\x12\x16\n\x0egrant_revision\x18\x0b \x01(\x04\x12\x31\n\x05grant\x18\x0c \x01(\x0b\x32\".cozy.worker.v1.WeightsUploadGrantJ\x04\x08\x04\x10\x05\"\xbe\x03\n\x13WeightsUploadResult\x12\x1a\n\x12record_owner_epoch\x18\x01 \x01(\x04\x12\x1c\n\x14\x63ontrol_stream_epoch\x18\x02 \x01(\x04\x12\x16\n\x0eworker_boot_id\x18\x03 \x01(\t\x12\x1e\n\x16weights_transaction_id\x18\x05 \x01(\t\x12\x14\n\x0cwriter_epoch\x18\x06 \x01(\x04\x12\x11\n\tobject_id\x18\x07 \x01(\t\x12\x14\n\x0coperation_id\x18\x08 \x01(\t\x12\x16\n\x0egrant_revision\x18\t \x01(\x04\x12\x35\n\x07outcome\x18\n \x01(\x0e\x32$.cozy.worker.v1.WeightsUploadOutcome\x12\x19\n\x11transferred_bytes\x18\x0b \x01(\x04\x12\x13\n\x0bhttp_status\x18\x0c \x01(\r\x12\x0c\n\x04\x65tag\x18\r \x01(\t\x12\x17\n\x0f\x63hecksum_sha256\x18\x0e \x01(\t\x12\x35\n\x07refusal\x18\x0f \x01(\x0e\x32$.cozy.worker.v1.WeightsUploadRefusal\x12\x13\n\x0bsafe_detail\x18\x10 \x01(\tJ\x04\x08\x04\x10\x05\"\xa1\x04\n\x15WeightsTransferStatus\x12\x1a\n\x12record_owner_epoch\x18\x01 \x01(\x04\x12\x1c\n\x14\x63ontrol_stream_epoch\x18\x02 \x01(\x04\x12\x16\n\x0eworker_boot_id\x18\x03 \x01(\t\x12\x12\n\nrequest_id\x18\x05 \x01(\t\x12\x17\n\x0f\x61ttempt_ordinal\x18\x06 \x01(\x04\x12\x1e\n\x16invocation_spec_digest\x18\x07 \x01(\x0c\x12\x13\n\x0boutput_slot\x18\x08 \x01(\t\x12\x1e\n\x16weights_transaction_id\x18\t \x01(\t\x12\x14\n\x0coperation_id\x18\n \x01(\t\x12\x16\n\x0egrant_revision\x18\x0b \x01(\x04\x12\x11\n\tobject_id\x18\x0c \x01(\t\x12\x0e\n\x06length\x18\r \x01(\x04\x12\x17\n\x0fupdate_sequence\x18\x0e \x01(\x04\x12\x33\n\x05state\x18\x0f \x01(\x0e\x32$.cozy.worker.v1.WeightsTransferState\x12\x19\n\x11transferred_bytes\x18\x10 \x01(\x04\x12\x13\n\x0bhttp_status\x18\x11 \x01(\r\x12\x0c\n\x04\x65tag\x18\x12 \x01(\t\x12\x17\n\x0f\x63hecksum_sha256\x18\x13 \x01(\t\x12\x10\n\x08\x61ttempts\x18\x14 \x01(\r\x12\x11\n\tsafe_code\x18\x15 \x01(\t\x12\x13\n\x0bsafe_detail\x18\x16 \x01(\tJ\x04\x08\x04\x10\x05\"\xd4\x02\n\x16ModelSourceFileRequest\x12\x1a\n\x12record_owner_epoch\x18\x01 \x01(\x04\x12\x1c\n\x14\x63ontrol_stream_epoch\x18\x02 \x01(\x04\x12\x16\n\x0eworker_boot_id\x18\x03 \x01(\t\x12\x14\n\x0coperation_id\x18\x05 \x01(\t\x12\x1f\n\x17source_selection_digest\x18\x06 \x01(\x0c\x12\x0e\n\x06member\x18\x07 \x01(\t\x12\x11\n\tobject_id\x18\x08 \x01(\t\x12\x0e\n\x06length\x18\t \x01(\x04\x12\x35\n\x08provider\x18\n \x01(\x0e\x32#.cozy.worker.v1.ModelSourceProvider\x12\x0b\n\x03url\x18\x0b \x01(\t\x12\x17\n\x0f\x65xpires_at_unix\x18\x0c \x01(\x04\x12\x1b\n\x13\x63\x61pability_revision\x18\r \x01(\x04J\x04\x08\x04\x10\x05\"\x80\x03\n\x15ModelSourceFileStatus\x12\x1a\n\x12record_owner_epoch\x18\x01 \x01(\x04\x12\x1c\n\x14\x63ontrol_stream_epoch\x18\x02 \x01(\x04\x12\x16\n\x0eworker_boot_id\x18\x03 \x01(\t\x12\x14\n\x0coperation_id\x18\x05 \x01(\t\x12\x1f\n\x17source_selection_digest\x18\x06 \x01(\x0c\x12\x0e\n\x06member\x18\x07 \x01(\t\x12\x11\n\tobject_id\x18\x08 \x01(\t\x12\x0e\n\x06length\x18\t \x01(\x04\x12\x1b\n\x13\x63\x61pability_revision\x18\n \x01(\x04\x12\x33\n\x05state\x18\x0b \x01(\x0e\x32$.cozy.worker.v1.ModelSourceFileState\x12\x19\n\x11transferred_bytes\x18\x0c \x01(\x04\x12\x10\n\x08\x61ttempts\x18\r \x01(\r\x12\x11\n\tsafe_code\x18\x0e \x01(\t\x12\x13\n\x0bsafe_detail\x18\x0f \x01(\tJ\x04\x08\x04\x10\x05\"\x8e\x02\n\x19ModelSourcePrepareRequest\x12\x1a\n\x12record_owner_epoch\x18\x01 \x01(\x04\x12\x1c\n\x14\x63ontrol_stream_epoch\x18\x02 \x01(\x04\x12\x16\n\x0eworker_boot_id\x18\x03 \x01(\t\x12\x14\n\x0coperation_id\x18\x05 \x01(\t\x12\x1f\n\x17source_selection_digest\x18\x06 \x01(\x0c\x12\x34\n\x08profiles\x18\x07 \x03(\x0b\x32\".cozy.worker.v1.ModelSourceProfile\x12\x12\n\nsource_uri\x18\x08 \x01(\t\x12\x18\n\x10\x64\x65\x63lared_license\x18\t \x01(\tJ\x04\x08\x04\x10\x05\"\xbe\x02\n\x13ModelSourcePrepared\x12\x1a\n\x12record_owner_epoch\x18\x01 \x01(\x04\x12\x1c\n\x14\x63ontrol_stream_epoch\x18\x02 \x01(\x04\x12\x16\n\x0eworker_boot_id\x18\x03 \x01(\t\x12\x14\n\x0coperation_id\x18\x05 \x01(\t\x12\x1f\n\x17source_selection_digest\x18\x06 \x01(\x0c\x12:\n\x07outcome\x18\x07 \x01(\x0e\x32).cozy.worker.v1.ModelSourcePrepareOutcome\x12\x34\n\x07sources\x18\x08 \x03(\x0b\x32#.cozy.worker.v1.PreparedModelSource\x12\x11\n\tsafe_code\x18\t \x01(\t\x12\x13\n\x0bsafe_detail\x18\n \x01(\tJ\x04\x08\x04\x10\x05\"\x89\x01\n\x17PrivatePackageFileGrant\x12\x0e\n\x06\x64igest\x18\x01 \x01(\x0c\x12\x10\n\x08\x66ilename\x18\x02 \x01(\t\x12/\n\x04kind\x18\x03 \x01(\x0e\x32!.cozy.worker.v1.LocalDownloadKind\x12\x0e\n\x06length\x18\x04 \x01(\x04\x12\x0b\n\x03url\x18\x05 \x01(\t\"\xd9\x01\n\x1aPrivatePackageFetchRequest\x12\x1a\n\x12record_owner_epoch\x18\x01 \x01(\x04\x12\x1c\n\x14\x63ontrol_stream_epoch\x18\x02 \x01(\x04\x12\x16\n\x0eworker_boot_id\x18\x03 \x01(\t\x12\x14\n\x0coperation_id\x18\x05 \x01(\t\x12\x15\n\rsource_digest\x18\x06 \x01(\x0c\x12\x36\n\x05\x66iles\x18\x07 \x03(\x0b\x32\'.cozy.worker.v1.PrivatePackageFileGrantJ\x04\x08\x04\x10\x05\"\xfa\x02\n\x18PrivatePackageFileStatus\x12\x1a\n\x12record_owner_epoch\x18\x01 \x01(\x04\x12\x1c\n\x14\x63ontrol_stream_epoch\x18\x02 \x01(\x04\x12\x16\n\x0eworker_boot_id\x18\x03 \x01(\t\x12\x14\n\x0coperation_id\x18\x05 \x01(\t\x12\x15\n\rsource_digest\x18\x06 \x01(\x0c\x12\x0e\n\x06\x64igest\x18\x07 \x01(\x0c\x12\x10\n\x08\x66ilename\x18\x08 \x01(\t\x12/\n\x04kind\x18\t \x01(\x0e\x32!.cozy.worker.v1.LocalDownloadKind\x12\x0e\n\x06length\x18\n \x01(\x04\x12\x36\n\x05state\x18\x0b \x01(\x0e\x32\'.cozy.worker.v1.PrivatePackageFileState\x12\x16\n\x0ereceived_bytes\x18\x0c \x01(\x04\x12\x11\n\tsafe_code\x18\r \x01(\t\x12\x13\n\x0bsafe_detail\x18\x0e \x01(\tJ\x04\x08\x04\x10\x05\"\xbb\x01\n\x13PrivatePackageAbort\x12\x1a\n\x12record_owner_epoch\x18\x01 \x01(\x04\x12\x1c\n\x14\x63ontrol_stream_epoch\x18\x02 \x01(\x04\x12\x16\n\x0eworker_boot_id\x18\x03 \x01(\t\x12\x14\n\x0coperation_id\x18\x05 \x01(\t\x12\x15\n\rsource_digest\x18\x06 \x01(\x0c\x12\x1f\n\x17private_revision_digest\x18\x07 \x01(\x0cJ\x04\x08\x04\x10\x05\"\xa6\x02\n\x19PrivatePackageAbortStatus\x12\x1a\n\x12record_owner_epoch\x18\x01 \x01(\x04\x12\x1c\n\x14\x63ontrol_stream_epoch\x18\x02 \x01(\x04\x12\x16\n\x0eworker_boot_id\x18\x03 \x01(\t\x12\x14\n\x0coperation_id\x18\x05 \x01(\t\x12\x15\n\rsource_digest\x18\x06 \x01(\x0c\x12\x1f\n\x17private_revision_digest\x18\x07 \x01(\x0c\x12;\n\x07outcome\x18\x08 \x01(\x0e\x32*.cozy.worker.v1.PrivatePackageAbortOutcome\x12\x11\n\tsafe_code\x18\t \x01(\t\x12\x13\n\x0bsafe_detail\x18\n \x01(\tJ\x04\x08\x04\x10\x05\"\xd2\x02\n\x16WeightsFinalizeRequest\x12\x1a\n\x12record_owner_epoch\x18\x01 \x01(\x04\x12\x1c\n\x14\x63ontrol_stream_epoch\x18\x02 \x01(\x04\x12\x16\n\x0eworker_boot_id\x18\x03 \x01(\t\x12\x12\n\nrequest_id\x18\x05 \x01(\t\x12\x1e\n\x16invocation_spec_digest\x18\x06 \x01(\x0c\x12\x13\n\x0boutput_slot\x18\x07 \x01(\t\x12?\n\x0b\x64isposition\x18\x08 \x01(\x0e\x32*.cozy.worker.v1.WeightsFinalizeDisposition\x12\x1e\n\x16weights_receipt_digest\x18\t \x01(\x0c\x12\x17\n\x0fscratch_root_id\x18\n \x01(\t\x12\x1d\n\x15owner_authority_scope\x18\x0b \x01(\tJ\x04\x08\x04\x10\x05\"\xcc\x02\n\x15WeightsFinalizeResult\x12\x1a\n\x12record_owner_epoch\x18\x01 \x01(\x04\x12\x1c\n\x14\x63ontrol_stream_epoch\x18\x02 \x01(\x04\x12\x16\n\x0eworker_boot_id\x18\x03 \x01(\t\x12\x12\n\nrequest_id\x18\x05 \x01(\t\x12\x1e\n\x16invocation_spec_digest\x18\x06 \x01(\x0c\x12\x13\n\x0boutput_slot\x18\x07 \x01(\t\x12\x37\n\x07outcome\x18\x08 \x01(\x0e\x32&.cozy.worker.v1.WeightsFinalizeOutcome\x12:\n\x0fweights_receipt\x18\t \x01(\x0b\x32!.cozy.worker.v1.WeightsReceiptRef\x12\x1d\n\x15owner_authority_scope\x18\n \x01(\tJ\x04\x08\x04\x10\x05\"\xc9\x01\n\x0eResultEnvelope\x12\x1c\n\x14result_schema_digest\x18\x01 \x01(\x0c\x12\x15\n\rinline_result\x18\x02 \x01(\x0c\x12\x30\n\x0bresult_blob\x18\x03 \x01(\x0b\x32\x1b.cozy.worker.v1.OutputEntry\x12\x32\n\x0b\x61\x64justments\x18\x04 \x03(\x0b\x32\x1d.cozy.worker.v1.AdjustmentRow\x12\x16\n\x0e\x63heckpoint_ref\x18\x05 \x01(\tJ\x04\x08\x06\x10\x07\"R\n\rAdjustmentRow\x12\r\n\x05\x66ield\x18\x01 \x01(\t\x12\x11\n\trequested\x18\x02 \x01(\t\x12\x0f\n\x07\x61pplied\x18\x03 \x01(\t\x12\x0e\n\x06reason\x18\x04 \x01(\t\"\xaa\x01\n\x0cOutcomeCause\x12\'\n\x04\x63ode\x18\x01 \x01(\x0e\x32\x19.cozy.worker.v1.CauseCode\x12+\n\x06origin\x18\x02 \x01(\x0e\x32\x1b.cozy.worker.v1.CauseOrigin\x12\x0e\n\x06\x64\x65tail\x18\x03 \x01(\t\x12\x34\n\tshortfall\x18\x04 \x01(\x0b\x32!.cozy.worker.v1.ResourceShortfall\"\x92\x01\n\x11ResourceShortfall\x12\x10\n\x08resource\x18\x01 \x01(\t\x12\r\n\x05scope\x18\x02 \x01(\t\x12\x14\n\x0cneeded_bytes\x18\x03 \x01(\x04\x12\x17\n\x0f\x61vailable_bytes\x18\x04 \x01(\x04\x12\x15\n\rrequest_shape\x18\x05 \x01(\t\x12\x16\n\x0e\x65vidence_class\x18\x06 \x01(\t\"\xe4\x01\n\x11\x41ttemptOutcomeAck\x12\x1a\n\x12record_owner_epoch\x18\x01 \x01(\x04\x12\x1c\n\x14\x63ontrol_stream_epoch\x18\x02 \x01(\x04\x12\x16\n\x0eworker_boot_id\x18\x03 \x01(\t\x12\x12\n\nrequest_id\x18\x05 \x01(\t\x12\x17\n\x0f\x61ttempt_ordinal\x18\x06 \x01(\x04\x12\x1e\n\x16invocation_spec_digest\x18\x07 \x01(\x0c\x12\x12\n\noutcome_id\x18\x08 \x01(\t\x12\x16\n\x0eoutcome_digest\x18\t \x01(\x0cJ\x04\x08\x04\x10\x05\"\x9b\x02\n\x14JobCheckpointRequest\x12\x1a\n\x12record_owner_epoch\x18\x01 \x01(\x04\x12\x1c\n\x14\x63ontrol_stream_epoch\x18\x02 \x01(\x04\x12\x16\n\x0eworker_boot_id\x18\x03 \x01(\t\x12\x12\n\nrequest_id\x18\x05 \x01(\t\x12\x17\n\x0f\x61ttempt_ordinal\x18\x06 \x01(\x04\x12\x15\n\roperation_key\x18\x07 \x01(\t\x12\x13\n\x0blogical_key\x18\x08 \x01(\t\x12\x16\n\x0e\x63ontent_digest\x18\t \x01(\x0c\x12\x0b\n\x03seq\x18\n \x01(\x04\x12-\n\x08\x61rtifact\x18\x0b \x01(\x0b\x32\x1b.cozy.worker.v1.OutputEntryJ\x04\x08\x04\x10\x05\"\xd7\x02\n\x14JobCheckpointReceipt\x12\x1a\n\x12record_owner_epoch\x18\x01 \x01(\x04\x12\x1c\n\x14\x63ontrol_stream_epoch\x18\x02 \x01(\x04\x12\x16\n\x0eworker_boot_id\x18\x03 \x01(\t\x12\x12\n\nrequest_id\x18\x05 \x01(\t\x12\x17\n\x0f\x61ttempt_ordinal\x18\x06 \x01(\x04\x12\x15\n\roperation_key\x18\x07 \x01(\t\x12\x13\n\x0blogical_key\x18\x08 \x01(\t\x12\x16\n\x0e\x63ontent_digest\x18\t \x01(\x0c\x12\x12\n\nreceipt_id\x18\n \x01(\t\x12\x32\n\x07outcome\x18\x0b \x01(\x0e\x32!.cozy.worker.v1.CheckpointOutcome\x12.\n\x05\x66\x61ult\x18\x0c \x01(\x0b\x32\x1f.cozy.worker.v1.CheckpointFaultJ\x04\x08\x04\x10\x05\"u\n\x0f\x43heckpointFault\x12\x31\n\x04\x63ode\x18\x01 \x01(\x0e\x32#.cozy.worker.v1.CheckpointFaultCode\x12\x0e\n\x06\x64\x65tail\x18\x02 \x01(\t\x12\x1f\n\x17recorded_content_digest\x18\x03 \x01(\x0c\"\xda\x01\n\x10JobCheckpointAck\x12\x1a\n\x12record_owner_epoch\x18\x01 \x01(\x04\x12\x1c\n\x14\x63ontrol_stream_epoch\x18\x02 \x01(\x04\x12\x16\n\x0eworker_boot_id\x18\x03 \x01(\t\x12\x12\n\nrequest_id\x18\x05 \x01(\t\x12\x17\n\x0f\x61ttempt_ordinal\x18\x06 \x01(\x04\x12\x15\n\roperation_key\x18\x07 \x01(\t\x12\x12\n\nreceipt_id\x18\x08 \x01(\t\x12\x16\n\x0e\x63ontent_digest\x18\t \x01(\x0cJ\x04\x08\x04\x10\x05\"z\n\x0cProgressOpen\x12\x1a\n\x12record_owner_epoch\x18\x01 \x01(\x04\x12\x1c\n\x14\x63ontrol_stream_epoch\x18\x02 \x01(\x04\x12\x16\n\x0eworker_boot_id\x18\x03 \x01(\t\x12\x12\n\nrequest_id\x18\x05 \x01(\tJ\x04\x08\x04\x10\x05\"\xdd\x01\n\x0f\x41ttemptProgress\x12\x1a\n\x12record_owner_epoch\x18\x01 \x01(\x04\x12\x1c\n\x14\x63ontrol_stream_epoch\x18\x02 \x01(\x04\x12\x16\n\x0eworker_boot_id\x18\x03 \x01(\t\x12\x12\n\nrequest_id\x18\x05 \x01(\t\x12\x17\n\x0f\x61ttempt_ordinal\x18\x06 \x01(\x04\x12\x0b\n\x03seq\x18\x07 \x01(\x04\x12\x14\n\x0c\x63ontent_type\x18\x08 \x01(\t\x12\x0c\n\x04\x64\x61ta\x18\t \x01(\x0c\x12\x14\n\x0cplacement_id\x18\n \x01(\tJ\x04\x08\x04\x10\x05\"\xfc\x02\n\x0eInvocationSpec\x12\x1f\n\x17package_revision_digest\x18\x01 \x01(\t\x12\x1a\n\x12\x65nvironment_digest\x18\x02 \x01(\t\x12\x15\n\rconfig_digest\x18\x03 \x01(\t\x12\x16\n\x0epayload_digest\x18\x04 \x01(\t\x12,\n\x06inputs\x18\x05 \x03(\x0b\x32\x1c.cozy.worker.v1.InputBinding\x12.\n\x07outputs\x18\x06 \x03(\x0b\x32\x1d.cozy.worker.v1.OutputBinding\x12\x18\n\x10\x64\x65\x61\x64line_unix_ms\x18\x07 \x01(\x04\x12\x38\n\x07serving\x18\x08 \x01(\x0b\x32%.cozy.worker.v1.ServingInvocationSpecH\x00\x12\x30\n\x03job\x18\t \x01(\x0b\x32!.cozy.worker.v1.JobInvocationSpecH\x00\x42\x06\n\x04specR\x12package_release_id\"b\n\x0cInputBinding\x12\x10\n\x08input_id\x18\x01 \x01(\t\x12\x0e\n\x06\x64igest\x18\x02 \x01(\t\x12\x0e\n\x06length\x18\x03 \x01(\x04\x12\x11\n\tkind_mime\x18\x04 \x01(\t\x12\r\n\x05order\x18\x05 \x01(\r\"H\n\rOutputBinding\x12\x11\n\toutput_id\x18\x01 \x01(\t\x12\x11\n\tmime_type\x18\x02 \x01(\t\x12\x11\n\tmax_bytes\x18\x03 \x01(\x04\"V\n\x15ServingInvocationSpec\x12!\n\x19\x65ntrypoint_binding_digest\x18\x01 \x01(\t\x12\x1a\n\x12\x61ttempt_binding_id\x18\x02 \x01(\t\"\x83\x01\n\x11JobInvocationSpec\x12\x10\n\x08\x62uild_id\x18\x01 \x01(\t\x12\x19\n\x11job_descriptor_id\x18\x02 \x01(\t\x12\x41\n\x14publication_contract\x18\x03 \x01(\x0b\x32#.cozy.worker.v1.PublicationContract\"\xf9\x01\n\rDeliveryGrant\x12\x1e\n\x16invocation_spec_digest\x18\x01 \x01(\x0c\x12<\n\ncredential\x18\x02 \x01(\x0b\x32(.cozy.worker.v1.DeliveryAccessCredential\x12\x15\n\rfile_base_url\x18\x03 \x01(\t\x12\x17\n\x0f\x65xpires_at_unix\x18\x04 \x01(\x04\x12+\n\x06inputs\x18\x05 \x03(\x0b\x32\x1b.cozy.worker.v1.InputAccess\x12-\n\x07outputs\x18\x06 \x03(\x0b\x32\x1c.cozy.worker.v1.OutputAccess\",\n\x0bInputAccess\x12\x10\n\x08input_id\x18\x01 \x01(\t\x12\x0b\n\x03url\x18\x02 \x01(\t\".\n\x0cOutputAccess\x12\x11\n\toutput_id\x18\x01 \x01(\t\x12\x0b\n\x03url\x18\x02 \x01(\t\"|\n\x18\x44\x65liveryAccessCredential\x12\x0e\n\x06issuer\x18\x01 \x01(\t\x12\x0e\n\x06key_id\x18\x02 \x01(\t\x12\x18\n\x10\x63redential_epoch\x18\x03 \x01(\x04\x12\x17\n\x0f\x65xpires_at_unix\x18\x04 \x01(\x04\x12\r\n\x05token\x18\x05 \x01(\x0c\"w\n\x0cResourceCaps\x12\x17\n\x0f\x64\x65vice_required\x18\x01 \x01(\x08\x12\x1f\n\x17max_device_memory_bytes\x18\x02 \x01(\x04\x12\x15\n\rmax_rss_bytes\x18\x03 \x01(\x04\x12\x16\n\x0emax_disk_bytes\x18\x04 \x01(\x04\"W\n\x13PublicationContract\x12.\n\x07outputs\x18\x01 \x03(\x0b\x32\x1d.cozy.worker.v1.OutputBinding\x12\x10\n\x08grant_id\x18\x02 \x01(\t\"\x88\x03\n\x0fWorkerResources\x12\x10\n\x08platform\x18\x01 \x01(\t\x12\x0f\n\x07\x62\x61\x63kend\x18\x02 \x01(\t\x12\x14\n\x0cmemory_model\x18\x03 \x01(\t\x12\x14\n\x0c\x64\x65vice_count\x18\x04 \x01(\r\x12\x13\n\x0b\x64\x65vice_name\x18\x05 \x01(\t\x12!\n\x19\x64\x65vice_memory_total_bytes\x18\x06 \x01(\x04\x12\x16\n\x0e\x64river_version\x18\x07 \x01(\t\x12\x17\n\x0f\x62\x61\x63kend_version\x18\x08 \x01(\t\x12\x1c\n\x14host_ram_total_bytes\x18\t \x01(\x04\x12\x12\n\nvcpu_count\x18\n \x01(\r\x12\x18\n\x10\x64isk_total_bytes\x18\x0b \x01(\x04\x12\x17\n\x0fpower_cap_watts\x18\x0c \x01(\r\x12\x19\n\x11partition_profile\x18\r \x01(\t\x12\x14\n\x0cinterconnect\x18\x0e \x01(\t\x12\x13\n\x0bpeer_access\x18\x0f \x01(\x08\x12\x12\n\nunreadable\x18\x10 \x03(\t\"\\\n\x0bJobCapacity\x12\x16\n\x0ejobs_in_flight\x18\x01 \x01(\r\x12\x16\n\x0ejobs_available\x18\x02 \x01(\r\x12\x17\n\x0f\x66ree_disk_bytes\x18\x04 \x01(\x04J\x04\x08\x03\x10\x04\"\x8c\x02\n\x0bHeldAttempt\x12\x12\n\nrequest_id\x18\x01 \x01(\t\x12\x17\n\x0f\x61ttempt_ordinal\x18\x02 \x01(\x04\x12)\n\x04kind\x18\x03 \x01(\x0e\x32\x1b.cozy.worker.v1.AttemptKind\x12+\n\x05state\x18\x04 \x01(\x0e\x32\x1c.cozy.worker.v1.AttemptState\x12\x1e\n\x16invocation_spec_digest\x18\x05 \x01(\x0c\x12\x14\n\x0cplacement_id\x18\x06 \x01(\t\x12\x16\n\x0e\x65xecutor_epoch\x18\x07 \x01(\x04\x12\x12\n\noutcome_id\x18\x08 \x01(\t\x12\x16\n\x0eoutcome_digest\x18\t \x01(\x0c\"a\n\x05\x46\x61ult\x12\'\n\x04kind\x18\x01 \x01(\x0e\x32\x19.cozy.worker.v1.FaultKind\x12\x0f\n\x07subject\x18\x02 \x01(\t\x12\x0e\n\x06reason\x18\x03 \x01(\t\x12\x0e\n\x06\x64\x65tail\x18\x04 \x01(\t\"h\n\x0eOutputManifest\x12\"\n\x1apublication_receipt_digest\x18\x01 \x01(\t\x12,\n\x07outputs\x18\x03 \x03(\x0b\x32\x1b.cozy.worker.v1.OutputEntryJ\x04\x08\x02\x10\x03\"S\n\x0bOutputEntry\x12\x11\n\toutput_id\x18\x01 \x01(\t\x12\x0e\n\x06\x64igest\x18\x02 \x01(\x0c\x12\x0e\n\x06length\x18\x03 \x01(\x04\x12\x11\n\tmime_type\x18\x04 \x01(\t\"\xac\x02\n\x0e\x41ttemptMetrics\x12\x12\n\nruntime_ms\x18\x01 \x01(\x04\x12\x10\n\x08queue_ms\x18\x02 \x01(\x04\x12 \n\x18peak_device_memory_bytes\x18\x03 \x01(\x04\x12\x18\n\x10rss_at_end_bytes\x18\x04 \x01(\x04\x12\x14\n\x0coutput_count\x18\x05 \x01(\r\x12\x14\n\x0cinput_tokens\x18\x06 \x01(\x04\x12\x15\n\routput_tokens\x18\x07 \x01(\x04\x12\x17\n\x0f\x64\x65vice_lease_ms\x18\x08 \x01(\x04\x12\x14\n\x0c\x64\x65vice_count\x18\t \x01(\r\x12\x12\n\nhandler_ms\x18\n \x01(\x04\x12\x17\n\x0f\x66inalization_ms\x18\x0b \x01(\x04\x12\x19\n\x11unverified_fields\x18\x0c \x03(\t\"Y\n\x0fTriageBundleRef\x12\x12\n\nsubject_id\x18\x01 \x01(\t\x12\x1c\n\x14write_receipt_digest\x18\x04 \x01(\x0c\x12\x0e\n\x06length\x18\x03 \x01(\x04J\x04\x08\x02\x10\x03*\xd7\x01\n\x11LocalDownloadKind\x12#\n\x1fLOCAL_DOWNLOAD_KIND_UNSPECIFIED\x10\x00\x12%\n!LOCAL_DOWNLOAD_KIND_PROJECT_WHEEL\x10\x01\x12(\n$LOCAL_DOWNLOAD_KIND_DEPENDENCY_WHEEL\x10\x02\x12&\n\"LOCAL_DOWNLOAD_KIND_MODEL_MANIFEST\x10\x03\x12$\n LOCAL_DOWNLOAD_KIND_MODEL_OBJECT\x10\x04*O\n\x07Posture\x12\x17\n\x13POSTURE_UNSPECIFIED\x10\x00\x12\x15\n\x11POSTURE_ACCEPTING\x10\x01\x12\x14\n\x10POSTURE_DRAINING\x10\x02*\x92\x01\n\x0bWorkerPhase\x12\x1c\n\x18WORKER_PHASE_UNSPECIFIED\x10\x00\x12\x18\n\x14WORKER_PHASE_BOOTING\x10\x01\x12\x17\n\x13WORKER_PHASE_ONLINE\x10\x02\x12\x19\n\x15WORKER_PHASE_DRAINING\x10\x03\x12\x17\n\x13WORKER_PHASE_FAILED\x10\x04*\xcc\x01\n\x14MaterializationState\x12%\n!MATERIALIZATION_STATE_UNSPECIFIED\x10\x00\x12 \n\x1cMATERIALIZATION_STATE_ABSENT\x10\x01\x12\'\n#MATERIALIZATION_STATE_MATERIALIZING\x10\x02\x12 \n\x1cMATERIALIZATION_STATE_STAGED\x10\x03\x12 \n\x1cMATERIALIZATION_STATE_FAILED\x10\x04*\xa2\x01\n\x0cServingState\x12\x1d\n\x19SERVING_STATE_UNSPECIFIED\x10\x00\x12\x19\n\x15SERVING_STATE_OFFLINE\x10\x01\x12\x1c\n\x18SERVING_STATE_ACTIVATING\x10\x02\x12\x1e\n\x1aSERVING_STATE_DISPATCHABLE\x10\x03\x12\x1a\n\x16SERVING_STATE_DRAINING\x10\x04*g\n\x0e\x41\x64missionState\x12\x1f\n\x1b\x41\x44MISSION_STATE_UNSPECIFIED\x10\x00\x12\x18\n\x14\x41\x44MISSION_STATE_OPEN\x10\x01\x12\x1a\n\x16\x41\x44MISSION_STATE_CLOSED\x10\x02*[\n\x0b\x41ttemptKind\x12\x1c\n\x18\x41TTEMPT_KIND_UNSPECIFIED\x10\x00\x12\x18\n\x14\x41TTEMPT_KIND_SERVING\x10\x01\x12\x14\n\x10\x41TTEMPT_KIND_JOB\x10\x02*\x91\x01\n\x0c\x41ttemptState\x12\x1d\n\x19\x41TTEMPT_STATE_UNSPECIFIED\x10\x00\x12\x19\n\x15\x41TTEMPT_STATE_RUNNING\x10\x01\x12%\n!ATTEMPT_STATE_OUTCOME_PENDING_ACK\x10\x02\x12 \n\x1c\x41TTEMPT_STATE_HELD_UNDURABLE\x10\x03*\xbf\x01\n\rOutcomeStatus\x12\x1e\n\x1aOUTCOME_STATUS_UNSPECIFIED\x10\x00\x12\x1c\n\x18OUTCOME_STATUS_SUCCEEDED\x10\x01\x12\x1a\n\x16OUTCOME_STATUS_REFUSED\x10\x02\x12\x19\n\x15OUTCOME_STATUS_FAILED\x10\x03\x12\x1b\n\x17OUTCOME_STATUS_CANCELED\x10\x04\x12\x1c\n\x18OUTCOME_STATUS_ABANDONED\x10\x05*\xbf\x05\n\tCauseCode\x12\x1a\n\x16\x43\x41USE_CODE_UNSPECIFIED\x10\x00\x12\x1e\n\x1a\x43\x41USE_CODE_INVALID_REQUEST\x10\x01\x12 \n\x1c\x43\x41USE_CODE_UNSUPPORTED_INPUT\x10\x02\x12\x1b\n\x17\x43\x41USE_CODE_LOCAL_SAFETY\x10\x03\x12\x17\n\x13\x43\x41USE_CODE_PROTOCOL\x10\x04\x12$\n CAUSE_CODE_CONSTRAINT_INFEASIBLE\x10\x05\x12\x1f\n\x1b\x43\x41USE_CODE_AUTHOR_EXCEPTION\x10\x06\x12\x1d\n\x19\x43\x41USE_CODE_EXECUTOR_FAULT\x10\x07\x12\x1c\n\x18\x43\x41USE_CODE_GRANT_EXPIRED\x10\x08\x12#\n\x1f\x43\x41USE_CODE_ARTIFACT_UNFETCHABLE\x10\t\x12%\n!CAUSE_CODE_CAPABILITY_UNAVAILABLE\x10\n\x12\x1c\n\x18\x43\x41USE_CODE_CLIENT_CANCEL\x10\x0b\x12\x1f\n\x1b\x43\x41USE_CODE_DEADLINE_EXPIRED\x10\x0c\x12\x1b\n\x17\x43\x41USE_CODE_DRAIN_CANCEL\x10\r\x12\x1c\n\x18\x43\x41USE_CODE_POLICY_CANCEL\x10\x0e\x12 \n\x1c\x43\x41USE_CODE_SUPERSEDED_CANCEL\x10\x0f\x12#\n\x1f\x43\x41USE_CODE_EXECUTOR_INVALIDATED\x10\x10\x12\x1a\n\x16\x43\x41USE_CODE_NO_CAPACITY\x10\x11\x12$\n CAUSE_CODE_ADMISSION_EPOCH_STALE\x10\x12\x12 \n\x1c\x43\x41USE_CODE_UNKNOWN_PLACEMENT\x10\x13\x12)\n%CAUSE_CODE_PLACEMENT_NOT_DISPATCHABLE\x10\x14*\xe2\x01\n\x0b\x43\x61useOrigin\x12\x1c\n\x18\x43\x41USE_ORIGIN_UNSPECIFIED\x10\x00\x12\x17\n\x13\x43\x41USE_ORIGIN_AUTHOR\x10\x01\x12\x18\n\x14\x43\x41USE_ORIGIN_RUNTIME\x10\x02\x12\x19\n\x15\x43\x41USE_ORIGIN_EXECUTOR\x10\x03\x12\x17\n\x13\x43\x41USE_ORIGIN_WORKER\x10\x04\x12\x16\n\x12\x43\x41USE_ORIGIN_INFRA\x10\x05\x12\x17\n\x13\x43\x41USE_ORIGIN_CLIENT\x10\x06\x12\x1d\n\x19\x43\x41USE_ORIGIN_RECORD_OWNER\x10\x07*\xb4\x01\n\x0c\x43\x61ncelReason\x12\x1d\n\x19\x43\x41NCEL_REASON_UNSPECIFIED\x10\x00\x12\x18\n\x14\x43\x41NCEL_REASON_CLIENT\x10\x01\x12\x17\n\x13\x43\x41NCEL_REASON_DRAIN\x10\x02\x12\x1c\n\x18\x43\x41NCEL_REASON_SUPERSEDED\x10\x03\x12\x18\n\x14\x43\x41NCEL_REASON_POLICY\x10\x04\x12\x1a\n\x16\x43\x41NCEL_REASON_DEADLINE\x10\x05*\xeb\x02\n\x0e\x43laimRejection\x12\x1f\n\x1b\x43LAIM_REJECTION_UNSPECIFIED\x10\x00\x12#\n\x1f\x43LAIM_REJECTION_UNAUTHENTICATED\x10\x01\x12,\n(CLAIM_REJECTION_STALE_RECORD_OWNER_EPOCH\x10\x02\x12\x1e\n\x1a\x43LAIM_REJECTION_EPOCH_HELD\x10\x03\x12&\n\"CLAIM_REJECTION_WORKER_ID_MISMATCH\x10\x04\x12\'\n#CLAIM_REJECTION_RELEASE_ID_MISMATCH\x10\x05\x12\x1d\n\x19\x43LAIM_REJECTION_UNDURABLE\x10\x07\"\x04\x08\x06\x10\x06\"\x04\x08\x08\x10\x08*!CLAIM_REJECTION_UNSUPPORTED_MINOR*&CLAIM_REJECTION_SCHEMA_DIGEST_MISMATCH*\x80\x05\n\tFaultKind\x12\x1a\n\x16\x46\x41ULT_KIND_UNSPECIFIED\x10\x00\x12\"\n\x1e\x46\x41ULT_KIND_BINDING_UNAVAILABLE\x10\x01\x12\x1f\n\x1b\x46\x41ULT_KIND_BINDING_DEGRADED\x10\x02\x12\"\n\x1e\x46\x41ULT_KIND_HARDWARE_UNSUITABLE\x10\x03\x12$\n FAULT_KIND_ARTIFACT_FETCH_FAILED\x10\x04\x12#\n\x1f\x46\x41ULT_KIND_CREDENTIAL_UNAPPLIED\x10\x06\x12#\n\x1f\x46\x41ULT_KIND_LOCAL_SAFETY_REFUSAL\x10\x07\x12 \n\x1c\x46\x41ULT_KIND_EXECUTOR_POISONED\x10\x08\x12\x1d\n\x19\x46\x41ULT_KIND_CONFIG_REFUSED\x10\t\x12 \n\x1c\x46\x41ULT_KIND_UNKNOWN_PLACEMENT\x10\n\x12(\n$FAULT_KIND_PLACEMENT_SET_UNSUPPORTED\x10\x0b\x12,\n(FAULT_KIND_PLACEMENT_SET_DIGEST_MISMATCH\x10\x0c\x12\'\n#FAULT_KIND_ARTIFACT_DIGEST_MISMATCH\x10\x0e\x12#\n\x1f\x46\x41ULT_KIND_FALLBACK_PIN_MISSING\x10\x0f\"\x04\x08\x05\x10\x05\"\x04\x08\r\x10\r\"\x04\x08\x10\x10\x10*\x18\x46\x41ULT_KIND_GRANT_EXPIRED*\'FAULT_KIND_ENVIRONMENT_RECEIPT_MISMATCH* FAULT_KIND_AUTHORIZATION_EXPIRED*\xa1\x02\n\x11\x42ootFailureReason\x12#\n\x1f\x42OOT_FAILURE_REASON_UNSPECIFIED\x10\x00\x12(\n$BOOT_FAILURE_REASON_HARDWARE_VERDICT\x10\x01\x12&\n\"BOOT_FAILURE_REASON_ARTIFACT_FAULT\x10\x02\x12$\n BOOT_FAILURE_REASON_DRIVER_FAULT\x10\x03\x12\"\n\x1e\x42OOT_FAILURE_REASON_DISK_SHAPE\x10\x04\x12&\n\"BOOT_FAILURE_REASON_CONFIG_INVALID\x10\x05\x12#\n\x1f\x42OOT_FAILURE_REASON_OTHER_FATAL\x10\x06*\xba\x01\n\x11\x43heckpointOutcome\x12\"\n\x1e\x43HECKPOINT_OUTCOME_UNSPECIFIED\x10\x00\x12\x1f\n\x1b\x43HECKPOINT_OUTCOME_RECORDED\x10\x01\x12\x1f\n\x1b\x43HECKPOINT_OUTCOME_REPLAYED\x10\x02\x12\x1f\n\x1b\x43HECKPOINT_OUTCOME_CONFLICT\x10\x03\x12\x1e\n\x1a\x43HECKPOINT_OUTCOME_REFUSED\x10\x04*\x90\x02\n\x13\x43heckpointFaultCode\x12%\n!CHECKPOINT_FAULT_CODE_UNSPECIFIED\x10\x00\x12+\n\'CHECKPOINT_FAULT_CODE_IDENTITY_CONFLICT\x10\x01\x12)\n%CHECKPOINT_FAULT_CODE_UNKNOWN_ATTEMPT\x10\x02\x12&\n\"CHECKPOINT_FAULT_CODE_NOT_JOB_MODE\x10\x03\x12(\n$CHECKPOINT_FAULT_CODE_STALE_SEQUENCE\x10\x04\x12(\n$CHECKPOINT_FAULT_CODE_QUOTA_EXCEEDED\x10\x05*\xbc\x01\n\x0cPrepareStage\x12\x1d\n\x19PREPARE_STAGE_UNSPECIFIED\x10\x00\x12\x1a\n\x16PREPARE_STAGE_RESOLVED\x10\x01\x12\x1d\n\x19PREPARE_STAGE_DOWNLOADING\x10\x02\x12\x1b\n\x17PREPARE_STAGE_PREPARING\x10\x03\x12\x1a\n\x16PREPARE_STAGE_PREPARED\x10\x04\x12\x19\n\x15PREPARE_STAGE_REFUSED\x10\x05*u\n\x10WeightsHostStage\x12\"\n\x1eWEIGHTS_HOST_STAGE_UNSPECIFIED\x10\x00\x12\x1d\n\x19WEIGHTS_HOST_STAGE_INTENT\x10\x01\x12\x1e\n\x1aWEIGHTS_HOST_STAGE_RECEIPT\x10\x02*\xa2\x01\n\x12WeightsHostOutcome\x12$\n WEIGHTS_HOST_OUTCOME_UNSPECIFIED\x10\x00\x12!\n\x1dWEIGHTS_HOST_OUTCOME_RECORDED\x10\x01\x12!\n\x1dWEIGHTS_HOST_OUTCOME_REPLAYED\x10\x02\x12 \n\x1cWEIGHTS_HOST_OUTCOME_REFUSED\x10\x03*\x8c\x02\n\x12WeightsHostRefusal\x12$\n WEIGHTS_HOST_REFUSAL_UNSPECIFIED\x10\x00\x12(\n$WEIGHTS_HOST_REFUSAL_UNKNOWN_ATTEMPT\x10\x01\x12(\n$WEIGHTS_HOST_REFUSAL_INTENT_CONFLICT\x10\x02\x12%\n!WEIGHTS_HOST_REFUSAL_STALE_WRITER\x10\x03\x12)\n%WEIGHTS_HOST_REFUSAL_RECEIPT_CONFLICT\x10\x04\x12*\n&WEIGHTS_HOST_REFUSAL_INVENTORY_INVALID\x10\x05*\x91\x01\n\x17WeightsTransactionState\x12)\n%WEIGHTS_TRANSACTION_STATE_UNSPECIFIED\x10\x00\x12$\n WEIGHTS_TRANSACTION_STATE_INTENT\x10\x01\x12%\n!WEIGHTS_TRANSACTION_STATE_RECEIPT\x10\x02*{\n\x12WeightsReadOutcome\x12$\n WEIGHTS_READ_OUTCOME_UNSPECIFIED\x10\x00\x12\x1d\n\x19WEIGHTS_READ_OUTCOME_DATA\x10\x01\x12 \n\x1cWEIGHTS_READ_OUTCOME_REFUSED\x10\x02*\xbb\x02\n\x12WeightsReadRefusal\x12$\n WEIGHTS_READ_REFUSAL_UNSPECIFIED\x10\x00\x12,\n(WEIGHTS_READ_REFUSAL_UNKNOWN_TRANSACTION\x10\x01\x12%\n!WEIGHTS_READ_REFUSAL_STALE_WRITER\x10\x02\x12\'\n#WEIGHTS_READ_REFUSAL_UNKNOWN_OBJECT\x10\x03\x12,\n(WEIGHTS_READ_REFUSAL_SOURCE_REF_MISMATCH\x10\x04\x12&\n\"WEIGHTS_READ_REFUSAL_RANGE_INVALID\x10\x05\x12+\n\'WEIGHTS_READ_REFUSAL_SOURCE_UNAVAILABLE\x10\x06*\xb3\x01\n\x14WeightsUploadOutcome\x12&\n\"WEIGHTS_UPLOAD_OUTCOME_UNSPECIFIED\x10\x00\x12#\n\x1fWEIGHTS_UPLOAD_OUTCOME_UPLOADED\x10\x01\x12*\n&WEIGHTS_UPLOAD_OUTCOME_ALREADY_PRESENT\x10\x02\x12\"\n\x1eWEIGHTS_UPLOAD_OUTCOME_REFUSED\x10\x03*\xf7\x02\n\x14WeightsUploadRefusal\x12&\n\"WEIGHTS_UPLOAD_REFUSAL_UNSPECIFIED\x10\x00\x12.\n*WEIGHTS_UPLOAD_REFUSAL_UNKNOWN_TRANSACTION\x10\x01\x12\'\n#WEIGHTS_UPLOAD_REFUSAL_STALE_WRITER\x10\x02\x12)\n%WEIGHTS_UPLOAD_REFUSAL_UNKNOWN_OBJECT\x10\x03\x12.\n*WEIGHTS_UPLOAD_REFUSAL_SOURCE_REF_MISMATCH\x10\x04\x12-\n)WEIGHTS_UPLOAD_REFUSAL_SOURCE_UNAVAILABLE\x10\x05\x12(\n$WEIGHTS_UPLOAD_REFUSAL_GRANT_REFUSED\x10\x06\x12*\n&WEIGHTS_UPLOAD_REFUSAL_TRANSFER_FAILED\x10\x07*\x9e\x02\n\x14WeightsTransferState\x12&\n\"WEIGHTS_TRANSFER_STATE_UNSPECIFIED\x10\x00\x12#\n\x1fWEIGHTS_TRANSFER_STATE_ACCEPTED\x10\x01\x12$\n WEIGHTS_TRANSFER_STATE_UPLOADING\x10\x02\x12#\n\x1fWEIGHTS_TRANSFER_STATE_UPLOADED\x10\x03\x12*\n&WEIGHTS_TRANSFER_STATE_ALREADY_PRESENT\x10\x04\x12\x1f\n\x1bWEIGHTS_TRANSFER_STATE_HELD\x10\x05\x12!\n\x1dWEIGHTS_TRANSFER_STATE_FAILED\x10\x06*\x87\x01\n\x13ModelSourceProvider\x12%\n!MODEL_SOURCE_PROVIDER_UNSPECIFIED\x10\x00\x12&\n\"MODEL_SOURCE_PROVIDER_HUGGING_FACE\x10\x01\x12!\n\x1dMODEL_SOURCE_PROVIDER_CIVITAI\x10\x02*\xd8\x01\n\x14ModelSourceFileState\x12\'\n#MODEL_SOURCE_FILE_STATE_UNSPECIFIED\x10\x00\x12$\n MODEL_SOURCE_FILE_STATE_ACCEPTED\x10\x01\x12\'\n#MODEL_SOURCE_FILE_STATE_DOWNLOADING\x10\x02\x12$\n MODEL_SOURCE_FILE_STATE_VERIFIED\x10\x03\x12\"\n\x1eMODEL_SOURCE_FILE_STATE_FAILED\x10\x04*\xc9\x01\n\x19ModelSourcePrepareOutcome\x12,\n(MODEL_SOURCE_PREPARE_OUTCOME_UNSPECIFIED\x10\x00\x12)\n%MODEL_SOURCE_PREPARE_OUTCOME_PREPARED\x10\x01\x12)\n%MODEL_SOURCE_PREPARE_OUTCOME_REPLAYED\x10\x02\x12(\n$MODEL_SOURCE_PREPARE_OUTCOME_REFUSED\x10\x03*\xc0\x01\n\x17PrivatePackageFileState\x12*\n&PRIVATE_PACKAGE_FILE_STATE_UNSPECIFIED\x10\x00\x12(\n$PRIVATE_PACKAGE_FILE_STATE_RECEIVING\x10\x01\x12\'\n#PRIVATE_PACKAGE_FILE_STATE_VERIFIED\x10\x02\x12&\n\"PRIVATE_PACKAGE_FILE_STATE_REFUSED\x10\x03*\xcf\x01\n\x1aPrivatePackageAbortOutcome\x12-\n)PRIVATE_PACKAGE_ABORT_OUTCOME_UNSPECIFIED\x10\x00\x12+\n\'PRIVATE_PACKAGE_ABORT_OUTCOME_ABANDONED\x10\x01\x12*\n&PRIVATE_PACKAGE_ABORT_OUTCOME_REPLAYED\x10\x02\x12)\n%PRIVATE_PACKAGE_ABORT_OUTCOME_REFUSED\x10\x03*\xd2\x01\n\x1aWeightsFinalizeDisposition\x12,\n(WEIGHTS_FINALIZE_DISPOSITION_UNSPECIFIED\x10\x00\x12&\n\"WEIGHTS_FINALIZE_DISPOSITION_ADOPT\x10\x01\x12(\n$WEIGHTS_FINALIZE_DISPOSITION_ABANDON\x10\x02\x12\x34\n0WEIGHTS_FINALIZE_DISPOSITION_ABANDON_UNCOMMITTED\x10\x03*\x90\x01\n\x16WeightsFinalizeOutcome\x12(\n$WEIGHTS_FINALIZE_OUTCOME_UNSPECIFIED\x10\x00\x12$\n WEIGHTS_FINALIZE_OUTCOME_ADOPTED\x10\x01\x12&\n\"WEIGHTS_FINALIZE_OUTCOME_ABANDONED\x10\x02\x32\xaf\x01\n\rWorkerControl\x12L\n\x07\x43ontrol\x12 .cozy.worker.v1.RecordOwnerFrame\x1a\x1b.cozy.worker.v1.WorkerFrame(\x01\x30\x01\x12P\n\rWatchProgress\x12\x1c.cozy.worker.v1.ProgressOpen\x1a\x1f.cozy.worker.v1.AttemptProgress0\x01\x32\xcb\x03\n\x12RuntimePreparation\x12\x66\n\x11PreparePackageSet\x12(.cozy.worker.v1.PreparePackageSetRequest\x1a\'.cozy.worker.v1.PreparePackageSetResult\x12i\n\x12PrepareModelSource\x12).cozy.worker.v1.PrepareModelSourceRequest\x1a(.cozy.worker.v1.PrepareModelSourceResult\x12n\n\x15PreparePrivatePackage\x12,.cozy.worker.v1.PreparePrivatePackageRequest\x1a\'.cozy.worker.v1.PreparePackageSetResult\x12r\n\x17PreparePrivatePlacement\x12..cozy.worker.v1.PreparePrivatePlacementRequest\x1a\'.cozy.worker.v1.PreparePackageSetResult2\xb7\x01\n\x0eRuntimeWeights\x12P\n\x08\x45xchange\x12\x1e.cozy.worker.v1.WeightsHostAck\x1a .cozy.worker.v1.WeightsHostEvent(\x01\x30\x01\x12S\n\x06Upload\x12$.cozy.worker.v1.WeightsUploadRequest\x1a#.cozy.worker.v1.WeightsUploadResult2\xad\x06\n\x07PodHost\x12Z\n\x11PreparePackageSet\x12%.cozy.worker.v1.PreparePackageSetCall\x1a\x1c.cozy.worker.v1.PrepareEvent0\x01\x12\x62\n\x15PreparePrivatePackage\x12).cozy.worker.v1.PreparePrivatePackageCall\x1a\x1c.cozy.worker.v1.PrepareEvent0\x01\x12\x66\n\x17PreparePrivatePlacement\x12+.cozy.worker.v1.PreparePrivatePlacementCall\x1a\x1c.cozy.worker.v1.PrepareEvent0\x01\x12_\n\x0fModelSourceFile\x12#.cozy.worker.v1.ModelSourceFileCall\x1a%.cozy.worker.v1.ModelSourceFileStatus0\x01\x12\x61\n\x12ModelSourcePrepare\x12&.cozy.worker.v1.ModelSourcePrepareCall\x1a#.cozy.worker.v1.ModelSourcePrepared\x12j\n\x13PrivatePackageFetch\x12\'.cozy.worker.v1.PrivatePackageFetchCall\x1a(.cozy.worker.v1.PrivatePackageFileStatus0\x01\x12i\n\x13PrivatePackageAbort\x12\'.cozy.worker.v1.PrivatePackageAbortCall\x1a).cozy.worker.v1.PrivatePackageAbortStatus\x12_\n\x0fWeightsTransfer\x12#.cozy.worker.v1.WeightsTransferCall\x1a%.cozy.worker.v1.WeightsTransferStatus0\x01\x42\x34\n\x0e\x63ozy.worker.v1P\x01Z cozy/workerprotov1;workerprotov1b\x06proto3')
28
+
29
+ _globals = globals()
30
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
31
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'cozy.worker.v1.worker_pb2', _globals)
32
+ if not _descriptor._USE_C_DESCRIPTORS:
33
+ _globals['DESCRIPTOR']._loaded_options = None
34
+ _globals['DESCRIPTOR']._serialized_options = b'\n\016cozy.worker.v1P\001Z cozy/workerprotov1;workerprotov1'
35
+ _globals['_LOCALDOWNLOADKIND']._serialized_start=28160
36
+ _globals['_LOCALDOWNLOADKIND']._serialized_end=28375
37
+ _globals['_POSTURE']._serialized_start=28377
38
+ _globals['_POSTURE']._serialized_end=28456
39
+ _globals['_WORKERPHASE']._serialized_start=28459
40
+ _globals['_WORKERPHASE']._serialized_end=28605
41
+ _globals['_MATERIALIZATIONSTATE']._serialized_start=28608
42
+ _globals['_MATERIALIZATIONSTATE']._serialized_end=28812
43
+ _globals['_SERVINGSTATE']._serialized_start=28815
44
+ _globals['_SERVINGSTATE']._serialized_end=28977
45
+ _globals['_ADMISSIONSTATE']._serialized_start=28979
46
+ _globals['_ADMISSIONSTATE']._serialized_end=29082
47
+ _globals['_ATTEMPTKIND']._serialized_start=29084
48
+ _globals['_ATTEMPTKIND']._serialized_end=29175
49
+ _globals['_ATTEMPTSTATE']._serialized_start=29178
50
+ _globals['_ATTEMPTSTATE']._serialized_end=29323
51
+ _globals['_OUTCOMESTATUS']._serialized_start=29326
52
+ _globals['_OUTCOMESTATUS']._serialized_end=29517
53
+ _globals['_CAUSECODE']._serialized_start=29520
54
+ _globals['_CAUSECODE']._serialized_end=30223
55
+ _globals['_CAUSEORIGIN']._serialized_start=30226
56
+ _globals['_CAUSEORIGIN']._serialized_end=30452
57
+ _globals['_CANCELREASON']._serialized_start=30455
58
+ _globals['_CANCELREASON']._serialized_end=30635
59
+ _globals['_CLAIMREJECTION']._serialized_start=30638
60
+ _globals['_CLAIMREJECTION']._serialized_end=31001
61
+ _globals['_FAULTKIND']._serialized_start=31004
62
+ _globals['_FAULTKIND']._serialized_end=31644
63
+ _globals['_BOOTFAILUREREASON']._serialized_start=31647
64
+ _globals['_BOOTFAILUREREASON']._serialized_end=31936
65
+ _globals['_CHECKPOINTOUTCOME']._serialized_start=31939
66
+ _globals['_CHECKPOINTOUTCOME']._serialized_end=32125
67
+ _globals['_CHECKPOINTFAULTCODE']._serialized_start=32128
68
+ _globals['_CHECKPOINTFAULTCODE']._serialized_end=32400
69
+ _globals['_PREPARESTAGE']._serialized_start=32403
70
+ _globals['_PREPARESTAGE']._serialized_end=32591
71
+ _globals['_WEIGHTSHOSTSTAGE']._serialized_start=32593
72
+ _globals['_WEIGHTSHOSTSTAGE']._serialized_end=32710
73
+ _globals['_WEIGHTSHOSTOUTCOME']._serialized_start=32713
74
+ _globals['_WEIGHTSHOSTOUTCOME']._serialized_end=32875
75
+ _globals['_WEIGHTSHOSTREFUSAL']._serialized_start=32878
76
+ _globals['_WEIGHTSHOSTREFUSAL']._serialized_end=33146
77
+ _globals['_WEIGHTSTRANSACTIONSTATE']._serialized_start=33149
78
+ _globals['_WEIGHTSTRANSACTIONSTATE']._serialized_end=33294
79
+ _globals['_WEIGHTSREADOUTCOME']._serialized_start=33296
80
+ _globals['_WEIGHTSREADOUTCOME']._serialized_end=33419
81
+ _globals['_WEIGHTSREADREFUSAL']._serialized_start=33422
82
+ _globals['_WEIGHTSREADREFUSAL']._serialized_end=33737
83
+ _globals['_WEIGHTSUPLOADOUTCOME']._serialized_start=33740
84
+ _globals['_WEIGHTSUPLOADOUTCOME']._serialized_end=33919
85
+ _globals['_WEIGHTSUPLOADREFUSAL']._serialized_start=33922
86
+ _globals['_WEIGHTSUPLOADREFUSAL']._serialized_end=34297
87
+ _globals['_WEIGHTSTRANSFERSTATE']._serialized_start=34300
88
+ _globals['_WEIGHTSTRANSFERSTATE']._serialized_end=34586
89
+ _globals['_MODELSOURCEPROVIDER']._serialized_start=34589
90
+ _globals['_MODELSOURCEPROVIDER']._serialized_end=34724
91
+ _globals['_MODELSOURCEFILESTATE']._serialized_start=34727
92
+ _globals['_MODELSOURCEFILESTATE']._serialized_end=34943
93
+ _globals['_MODELSOURCEPREPAREOUTCOME']._serialized_start=34946
94
+ _globals['_MODELSOURCEPREPAREOUTCOME']._serialized_end=35147
95
+ _globals['_PRIVATEPACKAGEFILESTATE']._serialized_start=35150
96
+ _globals['_PRIVATEPACKAGEFILESTATE']._serialized_end=35342
97
+ _globals['_PRIVATEPACKAGEABORTOUTCOME']._serialized_start=35345
98
+ _globals['_PRIVATEPACKAGEABORTOUTCOME']._serialized_end=35552
99
+ _globals['_WEIGHTSFINALIZEDISPOSITION']._serialized_start=35555
100
+ _globals['_WEIGHTSFINALIZEDISPOSITION']._serialized_end=35765
101
+ _globals['_WEIGHTSFINALIZEOUTCOME']._serialized_start=35768
102
+ _globals['_WEIGHTSFINALIZEOUTCOME']._serialized_end=35912
103
+ _globals['_WEIGHTSHOSTEVENT']._serialized_start=48
104
+ _globals['_WEIGHTSHOSTEVENT']._serialized_end=185
105
+ _globals['_PREPAREPACKAGESETCALL']._serialized_start=187
106
+ _globals['_PREPAREPACKAGESETCALL']._serialized_end=304
107
+ _globals['_PREPAREPRIVATEPACKAGECALL']._serialized_start=307
108
+ _globals['_PREPAREPRIVATEPACKAGECALL']._serialized_end=443
109
+ _globals['_PREPAREPRIVATEPLACEMENTCALL']._serialized_start=446
110
+ _globals['_PREPAREPRIVATEPLACEMENTCALL']._serialized_end=588
111
+ _globals['_PREPAREEVENT']._serialized_start=591
112
+ _globals['_PREPAREEVENT']._serialized_end=798
113
+ _globals['_MODELSOURCEFILECALL']._serialized_start=800
114
+ _globals['_MODELSOURCEFILECALL']._serialized_end=916
115
+ _globals['_MODELSOURCEPREPARECALL']._serialized_start=918
116
+ _globals['_MODELSOURCEPREPARECALL']._serialized_end=1040
117
+ _globals['_PRIVATEPACKAGEFETCHCALL']._serialized_start=1042
118
+ _globals['_PRIVATEPACKAGEFETCHCALL']._serialized_end=1166
119
+ _globals['_PRIVATEPACKAGEABORTCALL']._serialized_start=1168
120
+ _globals['_PRIVATEPACKAGEABORTCALL']._serialized_end=1285
121
+ _globals['_WEIGHTSTRANSFERCALL']._serialized_start=1287
122
+ _globals['_WEIGHTSTRANSFERCALL']._serialized_end=1403
123
+ _globals['_PREPAREPACKAGESETREQUEST']._serialized_start=1406
124
+ _globals['_PREPAREPACKAGESETREQUEST']._serialized_end=1537
125
+ _globals['_LOCALDOWNLOADFILE']._serialized_start=1540
126
+ _globals['_LOCALDOWNLOADFILE']._serialized_end=1672
127
+ _globals['_PREPAREPACKAGESETRESULT']._serialized_start=1674
128
+ _globals['_PREPAREPACKAGESETRESULT']._serialized_end=1759
129
+ _globals['_PREPAREPRIVATEPACKAGEREQUEST']._serialized_start=1762
130
+ _globals['_PREPAREPRIVATEPACKAGEREQUEST']._serialized_end=1943
131
+ _globals['_PREPAREPRIVATEPLACEMENTREQUEST']._serialized_start=1946
132
+ _globals['_PREPAREPRIVATEPLACEMENTREQUEST']._serialized_end=2112
133
+ _globals['_LOCALMODELSOURCEFILE']._serialized_start=2114
134
+ _globals['_LOCALMODELSOURCEFILE']._serialized_end=2201
135
+ _globals['_MODELSOURCEPROFILE']._serialized_start=2203
136
+ _globals['_MODELSOURCEPROFILE']._serialized_end=2254
137
+ _globals['_PREPAREDMODELSOURCE']._serialized_start=2257
138
+ _globals['_PREPAREDMODELSOURCE']._serialized_end=2393
139
+ _globals['_PREPAREMODELSOURCEREQUEST']._serialized_start=2396
140
+ _globals['_PREPAREMODELSOURCEREQUEST']._serialized_end=2631
141
+ _globals['_PREPAREMODELSOURCERESULT']._serialized_start=2634
142
+ _globals['_PREPAREMODELSOURCERESULT']._serialized_end=2814
143
+ _globals['_RECORDOWNERFRAME']._serialized_start=2817
144
+ _globals['_RECORDOWNERFRAME']._serialized_end=3994
145
+ _globals['_WORKERFRAME']._serialized_start=3997
146
+ _globals['_WORKERFRAME']._serialized_end=5217
147
+ _globals['_CLAIM']._serialized_start=5220
148
+ _globals['_CLAIM']._serialized_end=5420
149
+ _globals['_CLAIMPROOF']._serialized_start=5422
150
+ _globals['_CLAIMPROOF']._serialized_end=5544
151
+ _globals['_CLAIMACK']._serialized_start=5547
152
+ _globals['_CLAIMACK']._serialized_end=5938
153
+ _globals['_BOOTFAILURE']._serialized_start=5941
154
+ _globals['_BOOTFAILURE']._serialized_end=6267
155
+ _globals['_WORKERSNAPSHOT']._serialized_start=6270
156
+ _globals['_WORKERSNAPSHOT']._serialized_end=6571
157
+ _globals['_WORKERSNAPSHOTBODY']._serialized_start=6574
158
+ _globals['_WORKERSNAPSHOTBODY']._serialized_end=7072
159
+ _globals['_HOSTSNAPSHOTBODY']._serialized_start=7075
160
+ _globals['_HOSTSNAPSHOTBODY']._serialized_end=7217
161
+ _globals['_SNAPSHOTACK']._serialized_start=7220
162
+ _globals['_SNAPSHOTACK']._serialized_end=7397
163
+ _globals['_DESIREDWORKERSTATE']._serialized_start=7400
164
+ _globals['_DESIREDWORKERSTATE']._serialized_end=7959
165
+ _globals['_DESIREDPACKAGESET']._serialized_start=7961
166
+ _globals['_DESIREDPACKAGESET']._serialized_end=8048
167
+ _globals['_DESIREDPRIVATEPACKAGESET']._serialized_start=8051
168
+ _globals['_DESIREDPRIVATEPACKAGESET']._serialized_end=8206
169
+ _globals['_DESIREDPRIVATEPLACEMENTSET']._serialized_start=8209
170
+ _globals['_DESIREDPRIVATEPLACEMENTSET']._serialized_end=8360
171
+ _globals['_PRIVATEPACKAGEFILEREF']._serialized_start=8362
172
+ _globals['_PRIVATEPACKAGEFILEREF']._serialized_end=8484
173
+ _globals['_PRIVATEPACKAGEREVISION']._serialized_start=8487
174
+ _globals['_PRIVATEPACKAGEREVISION']._serialized_end=8671
175
+ _globals['_DESIREDPLACEMENTSET']._serialized_start=8673
176
+ _globals['_DESIREDPLACEMENTSET']._serialized_end=8769
177
+ _globals['_PLACEMENTSET']._serialized_start=8771
178
+ _globals['_PLACEMENTSET']._serialized_end=8832
179
+ _globals['_DOWNLOADDELEGATION']._serialized_start=8835
180
+ _globals['_DOWNLOADDELEGATION']._serialized_end=9085
181
+ _globals['_DOWNLOADMODELREF']._serialized_start=9087
182
+ _globals['_DOWNLOADMODELREF']._serialized_end=9186
183
+ _globals['_DOWNLOADPACKAGEREF']._serialized_start=9188
184
+ _globals['_DOWNLOADPACKAGEREF']._serialized_end=9266
185
+ _globals['_PLACEMENT']._serialized_start=9269
186
+ _globals['_PLACEMENT']._serialized_end=9725
187
+ _globals['_REF']._serialized_start=9727
188
+ _globals['_REF']._serialized_end=9764
189
+ _globals['_WHEELFACT']._serialized_start=9767
190
+ _globals['_WHEELFACT']._serialized_end=9905
191
+ _globals['_PACKAGESELECTION']._serialized_start=9907
192
+ _globals['_PACKAGESELECTION']._serialized_end=10033
193
+ _globals['_DEVELOPMENTPACKAGE']._serialized_start=10036
194
+ _globals['_DEVELOPMENTPACKAGE']._serialized_end=10196
195
+ _globals['_ENVIRONMENT']._serialized_start=10198
196
+ _globals['_ENVIRONMENT']._serialized_end=10281
197
+ _globals['_MODEL']._serialized_start=10283
198
+ _globals['_MODEL']._serialized_end=10386
199
+ _globals['_ENTRYPOINT']._serialized_start=10388
200
+ _globals['_ENTRYPOINT']._serialized_end=10486
201
+ _globals['_SLOT']._serialized_start=10489
202
+ _globals['_SLOT']._serialized_end=10721
203
+ _globals['_CONFIG']._serialized_start=10723
204
+ _globals['_CONFIG']._serialized_end=10809
205
+ _globals['_ASSET']._serialized_start=10811
206
+ _globals['_ASSET']._serialized_end=10884
207
+ _globals['_COMPONENT']._serialized_start=10886
208
+ _globals['_COMPONENT']._serialized_end=10934
209
+ _globals['_STAMP']._serialized_start=10936
210
+ _globals['_STAMP']._serialized_end=10991
211
+ _globals['_JOBDIRECTIVE']._serialized_start=10994
212
+ _globals['_JOBDIRECTIVE']._serialized_end=11224
213
+ _globals['_OBSERVEDWORKERSTATE']._serialized_start=11227
214
+ _globals['_OBSERVEDWORKERSTATE']._serialized_end=11998
215
+ _globals['_PLACEMENTSTATUS']._serialized_start=12001
216
+ _globals['_PLACEMENTSTATUS']._serialized_end=12604
217
+ _globals['_PLACEMENTACQUISITIONOBSERVATION']._serialized_start=12607
218
+ _globals['_PLACEMENTACQUISITIONOBSERVATION']._serialized_end=12758
219
+ _globals['_ACQUISITIONLEGOBSERVATION']._serialized_start=12761
220
+ _globals['_ACQUISITIONLEGOBSERVATION']._serialized_end=12894
221
+ _globals['_ACCELERATORQUALIFICATION']._serialized_start=12897
222
+ _globals['_ACCELERATORQUALIFICATION']._serialized_end=13123
223
+ _globals['_ACTIVITYEVENT']._serialized_start=13125
224
+ _globals['_ACTIVITYEVENT']._serialized_end=13201
225
+ _globals['_ATTEMPTOFFER']._serialized_start=13204
226
+ _globals['_ATTEMPTOFFER']._serialized_end=13517
227
+ _globals['_ATTEMPTACCEPTED']._serialized_start=13520
228
+ _globals['_ATTEMPTACCEPTED']._serialized_end=13854
229
+ _globals['_ATTEMPTPLANSUMMARY']._serialized_start=13857
230
+ _globals['_ATTEMPTPLANSUMMARY']._serialized_end=14059
231
+ _globals['_CANCELATTEMPT']._serialized_start=14062
232
+ _globals['_CANCELATTEMPT']._serialized_end=14306
233
+ _globals['_ATTEMPTOUTCOME']._serialized_start=14309
234
+ _globals['_ATTEMPTOUTCOME']._serialized_end=14589
235
+ _globals['_ATTEMPTOUTCOMEBODY']._serialized_start=14592
236
+ _globals['_ATTEMPTOUTCOMEBODY']._serialized_end=15101
237
+ _globals['_WEIGHTSRECEIPTREF']._serialized_start=15103
238
+ _globals['_WEIGHTSRECEIPTREF']._serialized_end=15195
239
+ _globals['_WEIGHTSRECEIPT']._serialized_start=15198
240
+ _globals['_WEIGHTSRECEIPT']._serialized_end=15470
241
+ _globals['_WEIGHTSOBJECTSOURCE']._serialized_start=15472
242
+ _globals['_WEIGHTSOBJECTSOURCE']._serialized_end=15548
243
+ _globals['_WEIGHTSINTENTFRAME']._serialized_start=15551
244
+ _globals['_WEIGHTSINTENTFRAME']._serialized_end=15872
245
+ _globals['_WEIGHTSHOSTACK']._serialized_start=15875
246
+ _globals['_WEIGHTSHOSTACK']._serialized_end=16422
247
+ _globals['_WEIGHTSRECEIPTFRAME']._serialized_start=16425
248
+ _globals['_WEIGHTSRECEIPTFRAME']._serialized_end=16876
249
+ _globals['_WEIGHTSTRANSACTIONSTATUS']._serialized_start=16879
250
+ _globals['_WEIGHTSTRANSACTIONSTATUS']._serialized_end=17182
251
+ _globals['_WEIGHTSREADREQUEST']._serialized_start=17185
252
+ _globals['_WEIGHTSREADREQUEST']._serialized_end=17438
253
+ _globals['_WEIGHTSREADRESULT']._serialized_start=17441
254
+ _globals['_WEIGHTSREADRESULT']._serialized_end=17836
255
+ _globals['_WEIGHTSOBJECTREF']._serialized_start=17838
256
+ _globals['_WEIGHTSOBJECTREF']._serialized_end=17891
257
+ _globals['_WEIGHTSUPLOADHEADER']._serialized_start=17893
258
+ _globals['_WEIGHTSUPLOADHEADER']._serialized_end=17943
259
+ _globals['_WEIGHTSUPLOADGRANT']._serialized_start=17946
260
+ _globals['_WEIGHTSUPLOADGRANT']._serialized_end=18102
261
+ _globals['_WEIGHTSTRANSFERREQUEST']._serialized_start=18105
262
+ _globals['_WEIGHTSTRANSFERREQUEST']._serialized_end=18547
263
+ _globals['_WEIGHTSUPLOADREQUEST']._serialized_start=18550
264
+ _globals['_WEIGHTSUPLOADREQUEST']._serialized_end=18866
265
+ _globals['_WEIGHTSUPLOADRESULT']._serialized_start=18869
266
+ _globals['_WEIGHTSUPLOADRESULT']._serialized_end=19315
267
+ _globals['_WEIGHTSTRANSFERSTATUS']._serialized_start=19318
268
+ _globals['_WEIGHTSTRANSFERSTATUS']._serialized_end=19863
269
+ _globals['_MODELSOURCEFILEREQUEST']._serialized_start=19866
270
+ _globals['_MODELSOURCEFILEREQUEST']._serialized_end=20206
271
+ _globals['_MODELSOURCEFILESTATUS']._serialized_start=20209
272
+ _globals['_MODELSOURCEFILESTATUS']._serialized_end=20593
273
+ _globals['_MODELSOURCEPREPAREREQUEST']._serialized_start=20596
274
+ _globals['_MODELSOURCEPREPAREREQUEST']._serialized_end=20866
275
+ _globals['_MODELSOURCEPREPARED']._serialized_start=20869
276
+ _globals['_MODELSOURCEPREPARED']._serialized_end=21187
277
+ _globals['_PRIVATEPACKAGEFILEGRANT']._serialized_start=21190
278
+ _globals['_PRIVATEPACKAGEFILEGRANT']._serialized_end=21327
279
+ _globals['_PRIVATEPACKAGEFETCHREQUEST']._serialized_start=21330
280
+ _globals['_PRIVATEPACKAGEFETCHREQUEST']._serialized_end=21547
281
+ _globals['_PRIVATEPACKAGEFILESTATUS']._serialized_start=21550
282
+ _globals['_PRIVATEPACKAGEFILESTATUS']._serialized_end=21928
283
+ _globals['_PRIVATEPACKAGEABORT']._serialized_start=21931
284
+ _globals['_PRIVATEPACKAGEABORT']._serialized_end=22118
285
+ _globals['_PRIVATEPACKAGEABORTSTATUS']._serialized_start=22121
286
+ _globals['_PRIVATEPACKAGEABORTSTATUS']._serialized_end=22415
287
+ _globals['_WEIGHTSFINALIZEREQUEST']._serialized_start=22418
288
+ _globals['_WEIGHTSFINALIZEREQUEST']._serialized_end=22756
289
+ _globals['_WEIGHTSFINALIZERESULT']._serialized_start=22759
290
+ _globals['_WEIGHTSFINALIZERESULT']._serialized_end=23091
291
+ _globals['_RESULTENVELOPE']._serialized_start=23094
292
+ _globals['_RESULTENVELOPE']._serialized_end=23295
293
+ _globals['_ADJUSTMENTROW']._serialized_start=23297
294
+ _globals['_ADJUSTMENTROW']._serialized_end=23379
295
+ _globals['_OUTCOMECAUSE']._serialized_start=23382
296
+ _globals['_OUTCOMECAUSE']._serialized_end=23552
297
+ _globals['_RESOURCESHORTFALL']._serialized_start=23555
298
+ _globals['_RESOURCESHORTFALL']._serialized_end=23701
299
+ _globals['_ATTEMPTOUTCOMEACK']._serialized_start=23704
300
+ _globals['_ATTEMPTOUTCOMEACK']._serialized_end=23932
301
+ _globals['_JOBCHECKPOINTREQUEST']._serialized_start=23935
302
+ _globals['_JOBCHECKPOINTREQUEST']._serialized_end=24218
303
+ _globals['_JOBCHECKPOINTRECEIPT']._serialized_start=24221
304
+ _globals['_JOBCHECKPOINTRECEIPT']._serialized_end=24564
305
+ _globals['_CHECKPOINTFAULT']._serialized_start=24566
306
+ _globals['_CHECKPOINTFAULT']._serialized_end=24683
307
+ _globals['_JOBCHECKPOINTACK']._serialized_start=24686
308
+ _globals['_JOBCHECKPOINTACK']._serialized_end=24904
309
+ _globals['_PROGRESSOPEN']._serialized_start=24906
310
+ _globals['_PROGRESSOPEN']._serialized_end=25028
311
+ _globals['_ATTEMPTPROGRESS']._serialized_start=25031
312
+ _globals['_ATTEMPTPROGRESS']._serialized_end=25252
313
+ _globals['_INVOCATIONSPEC']._serialized_start=25255
314
+ _globals['_INVOCATIONSPEC']._serialized_end=25635
315
+ _globals['_INPUTBINDING']._serialized_start=25637
316
+ _globals['_INPUTBINDING']._serialized_end=25735
317
+ _globals['_OUTPUTBINDING']._serialized_start=25737
318
+ _globals['_OUTPUTBINDING']._serialized_end=25809
319
+ _globals['_SERVINGINVOCATIONSPEC']._serialized_start=25811
320
+ _globals['_SERVINGINVOCATIONSPEC']._serialized_end=25897
321
+ _globals['_JOBINVOCATIONSPEC']._serialized_start=25900
322
+ _globals['_JOBINVOCATIONSPEC']._serialized_end=26031
323
+ _globals['_DELIVERYGRANT']._serialized_start=26034
324
+ _globals['_DELIVERYGRANT']._serialized_end=26283
325
+ _globals['_INPUTACCESS']._serialized_start=26285
326
+ _globals['_INPUTACCESS']._serialized_end=26329
327
+ _globals['_OUTPUTACCESS']._serialized_start=26331
328
+ _globals['_OUTPUTACCESS']._serialized_end=26377
329
+ _globals['_DELIVERYACCESSCREDENTIAL']._serialized_start=26379
330
+ _globals['_DELIVERYACCESSCREDENTIAL']._serialized_end=26503
331
+ _globals['_RESOURCECAPS']._serialized_start=26505
332
+ _globals['_RESOURCECAPS']._serialized_end=26624
333
+ _globals['_PUBLICATIONCONTRACT']._serialized_start=26626
334
+ _globals['_PUBLICATIONCONTRACT']._serialized_end=26713
335
+ _globals['_WORKERRESOURCES']._serialized_start=26716
336
+ _globals['_WORKERRESOURCES']._serialized_end=27108
337
+ _globals['_JOBCAPACITY']._serialized_start=27110
338
+ _globals['_JOBCAPACITY']._serialized_end=27202
339
+ _globals['_HELDATTEMPT']._serialized_start=27205
340
+ _globals['_HELDATTEMPT']._serialized_end=27473
341
+ _globals['_FAULT']._serialized_start=27475
342
+ _globals['_FAULT']._serialized_end=27572
343
+ _globals['_OUTPUTMANIFEST']._serialized_start=27574
344
+ _globals['_OUTPUTMANIFEST']._serialized_end=27678
345
+ _globals['_OUTPUTENTRY']._serialized_start=27680
346
+ _globals['_OUTPUTENTRY']._serialized_end=27763
347
+ _globals['_ATTEMPTMETRICS']._serialized_start=27766
348
+ _globals['_ATTEMPTMETRICS']._serialized_end=28066
349
+ _globals['_TRIAGEBUNDLEREF']._serialized_start=28068
350
+ _globals['_TRIAGEBUNDLEREF']._serialized_end=28157
351
+ _globals['_WORKERCONTROL']._serialized_start=35915
352
+ _globals['_WORKERCONTROL']._serialized_end=36090
353
+ _globals['_RUNTIMEPREPARATION']._serialized_start=36093
354
+ _globals['_RUNTIMEPREPARATION']._serialized_end=36552
355
+ _globals['_RUNTIMEWEIGHTS']._serialized_start=36555
356
+ _globals['_RUNTIMEWEIGHTS']._serialized_end=36738
357
+ _globals['_PODHOST']._serialized_start=36741
358
+ _globals['_PODHOST']._serialized_end=37554
359
+ # @@protoc_insertion_point(module_scope)