wandb 0.22.1__py3-none-win_arm64.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 (919) hide show
  1. package_readme.md +97 -0
  2. wandb/__init__.py +248 -0
  3. wandb/__init__.pyi +1230 -0
  4. wandb/__main__.py +3 -0
  5. wandb/_analytics.py +65 -0
  6. wandb/_iterutils.py +73 -0
  7. wandb/_pydantic/__init__.py +30 -0
  8. wandb/_pydantic/base.py +108 -0
  9. wandb/_pydantic/field_types.py +29 -0
  10. wandb/_pydantic/utils.py +80 -0
  11. wandb/_pydantic/v1_compat.py +301 -0
  12. wandb/_strutils.py +40 -0
  13. wandb/agents/__init__.py +0 -0
  14. wandb/agents/pyagent.py +386 -0
  15. wandb/analytics/__init__.py +3 -0
  16. wandb/analytics/sentry.py +267 -0
  17. wandb/apis/__init__.py +50 -0
  18. wandb/apis/attrs.py +52 -0
  19. wandb/apis/importers/__init__.py +1 -0
  20. wandb/apis/importers/internals/internal.py +375 -0
  21. wandb/apis/importers/internals/protocols.py +103 -0
  22. wandb/apis/importers/internals/util.py +78 -0
  23. wandb/apis/importers/mlflow.py +254 -0
  24. wandb/apis/importers/validation.py +108 -0
  25. wandb/apis/importers/wandb.py +1608 -0
  26. wandb/apis/internal.py +241 -0
  27. wandb/apis/normalize.py +83 -0
  28. wandb/apis/paginator.py +138 -0
  29. wandb/apis/public/__init__.py +78 -0
  30. wandb/apis/public/api.py +2513 -0
  31. wandb/apis/public/artifacts.py +1050 -0
  32. wandb/apis/public/automations.py +86 -0
  33. wandb/apis/public/const.py +6 -0
  34. wandb/apis/public/files.py +411 -0
  35. wandb/apis/public/history.py +203 -0
  36. wandb/apis/public/integrations.py +203 -0
  37. wandb/apis/public/jobs.py +744 -0
  38. wandb/apis/public/projects.py +278 -0
  39. wandb/apis/public/query_generator.py +179 -0
  40. wandb/apis/public/registries/__init__.py +7 -0
  41. wandb/apis/public/registries/_freezable_list.py +176 -0
  42. wandb/apis/public/registries/_utils.py +139 -0
  43. wandb/apis/public/registries/registries_search.py +353 -0
  44. wandb/apis/public/registries/registry.py +370 -0
  45. wandb/apis/public/reports.py +597 -0
  46. wandb/apis/public/runs.py +1438 -0
  47. wandb/apis/public/sweeps.py +441 -0
  48. wandb/apis/public/teams.py +237 -0
  49. wandb/apis/public/users.py +179 -0
  50. wandb/apis/public/utils.py +211 -0
  51. wandb/apis/reports/__init__.py +1 -0
  52. wandb/apis/reports/v1/__init__.py +8 -0
  53. wandb/apis/reports/v2/__init__.py +8 -0
  54. wandb/apis/workspaces/__init__.py +8 -0
  55. wandb/automations/__init__.py +73 -0
  56. wandb/automations/_filters/__init__.py +40 -0
  57. wandb/automations/_filters/expressions.py +182 -0
  58. wandb/automations/_filters/operators.py +259 -0
  59. wandb/automations/_filters/run_metrics.py +330 -0
  60. wandb/automations/_generated/__init__.py +104 -0
  61. wandb/automations/_generated/create_automation.py +17 -0
  62. wandb/automations/_generated/create_generic_webhook_integration.py +37 -0
  63. wandb/automations/_generated/delete_automation.py +15 -0
  64. wandb/automations/_generated/enums.py +35 -0
  65. wandb/automations/_generated/fragments.py +293 -0
  66. wandb/automations/_generated/generic_webhook_integrations_by_entity.py +22 -0
  67. wandb/automations/_generated/get_automations.py +24 -0
  68. wandb/automations/_generated/get_automations_by_entity.py +26 -0
  69. wandb/automations/_generated/input_types.py +104 -0
  70. wandb/automations/_generated/integrations_by_entity.py +22 -0
  71. wandb/automations/_generated/operations.py +647 -0
  72. wandb/automations/_generated/slack_integrations_by_entity.py +22 -0
  73. wandb/automations/_generated/update_automation.py +17 -0
  74. wandb/automations/_utils.py +235 -0
  75. wandb/automations/_validators.py +185 -0
  76. wandb/automations/actions.py +220 -0
  77. wandb/automations/automations.py +85 -0
  78. wandb/automations/events.py +284 -0
  79. wandb/automations/integrations.py +45 -0
  80. wandb/automations/scopes.py +78 -0
  81. wandb/beta/workflows.py +324 -0
  82. wandb/bin/gpu_stats.exe +0 -0
  83. wandb/bin/wandb-core +0 -0
  84. wandb/cli/__init__.py +0 -0
  85. wandb/cli/beta.py +93 -0
  86. wandb/cli/beta_sync.py +224 -0
  87. wandb/cli/cli.py +2883 -0
  88. wandb/data_types.py +66 -0
  89. wandb/docker/__init__.py +290 -0
  90. wandb/docker/names.py +40 -0
  91. wandb/docker/wandb-entrypoint.sh +33 -0
  92. wandb/env.py +535 -0
  93. wandb/errors/__init__.py +17 -0
  94. wandb/errors/errors.py +40 -0
  95. wandb/errors/links.py +73 -0
  96. wandb/errors/term.py +415 -0
  97. wandb/errors/util.py +57 -0
  98. wandb/errors/warnings.py +2 -0
  99. wandb/filesync/__init__.py +0 -0
  100. wandb/filesync/dir_watcher.py +404 -0
  101. wandb/filesync/stats.py +100 -0
  102. wandb/filesync/step_checksum.py +142 -0
  103. wandb/filesync/step_prepare.py +179 -0
  104. wandb/filesync/step_upload.py +287 -0
  105. wandb/filesync/upload_job.py +142 -0
  106. wandb/integration/__init__.py +0 -0
  107. wandb/integration/catboost/__init__.py +5 -0
  108. wandb/integration/catboost/catboost.py +182 -0
  109. wandb/integration/cohere/__init__.py +3 -0
  110. wandb/integration/cohere/cohere.py +21 -0
  111. wandb/integration/cohere/resolver.py +347 -0
  112. wandb/integration/diffusers/__init__.py +3 -0
  113. wandb/integration/diffusers/autologger.py +76 -0
  114. wandb/integration/diffusers/pipeline_resolver.py +50 -0
  115. wandb/integration/diffusers/resolvers/__init__.py +9 -0
  116. wandb/integration/diffusers/resolvers/multimodal.py +881 -0
  117. wandb/integration/diffusers/resolvers/utils.py +102 -0
  118. wandb/integration/dspy/__init__.py +5 -0
  119. wandb/integration/dspy/dspy.py +422 -0
  120. wandb/integration/fastai/__init__.py +243 -0
  121. wandb/integration/gym/__init__.py +98 -0
  122. wandb/integration/huggingface/__init__.py +3 -0
  123. wandb/integration/huggingface/huggingface.py +18 -0
  124. wandb/integration/huggingface/resolver.py +213 -0
  125. wandb/integration/keras/__init__.py +11 -0
  126. wandb/integration/keras/callbacks/__init__.py +5 -0
  127. wandb/integration/keras/callbacks/metrics_logger.py +129 -0
  128. wandb/integration/keras/callbacks/model_checkpoint.py +188 -0
  129. wandb/integration/keras/callbacks/tables_builder.py +228 -0
  130. wandb/integration/keras/keras.py +1086 -0
  131. wandb/integration/kfp/__init__.py +6 -0
  132. wandb/integration/kfp/helpers.py +28 -0
  133. wandb/integration/kfp/kfp_patch.py +335 -0
  134. wandb/integration/kfp/wandb_logging.py +182 -0
  135. wandb/integration/langchain/__init__.py +3 -0
  136. wandb/integration/langchain/wandb_tracer.py +49 -0
  137. wandb/integration/lightgbm/__init__.py +239 -0
  138. wandb/integration/lightning/__init__.py +0 -0
  139. wandb/integration/lightning/fabric/__init__.py +3 -0
  140. wandb/integration/lightning/fabric/logger.py +763 -0
  141. wandb/integration/metaflow/__init__.py +9 -0
  142. wandb/integration/metaflow/data_pandas.py +74 -0
  143. wandb/integration/metaflow/data_pytorch.py +75 -0
  144. wandb/integration/metaflow/data_sklearn.py +76 -0
  145. wandb/integration/metaflow/errors.py +13 -0
  146. wandb/integration/metaflow/metaflow.py +327 -0
  147. wandb/integration/openai/__init__.py +3 -0
  148. wandb/integration/openai/fine_tuning.py +480 -0
  149. wandb/integration/openai/openai.py +22 -0
  150. wandb/integration/openai/resolver.py +240 -0
  151. wandb/integration/prodigy/__init__.py +3 -0
  152. wandb/integration/prodigy/prodigy.py +291 -0
  153. wandb/integration/sacred/__init__.py +117 -0
  154. wandb/integration/sagemaker/__init__.py +14 -0
  155. wandb/integration/sagemaker/auth.py +29 -0
  156. wandb/integration/sagemaker/config.py +58 -0
  157. wandb/integration/sagemaker/files.py +2 -0
  158. wandb/integration/sagemaker/resources.py +63 -0
  159. wandb/integration/sb3/__init__.py +3 -0
  160. wandb/integration/sb3/sb3.py +147 -0
  161. wandb/integration/sklearn/__init__.py +37 -0
  162. wandb/integration/sklearn/calculate/__init__.py +32 -0
  163. wandb/integration/sklearn/calculate/calibration_curves.py +125 -0
  164. wandb/integration/sklearn/calculate/class_proportions.py +68 -0
  165. wandb/integration/sklearn/calculate/confusion_matrix.py +93 -0
  166. wandb/integration/sklearn/calculate/decision_boundaries.py +40 -0
  167. wandb/integration/sklearn/calculate/elbow_curve.py +55 -0
  168. wandb/integration/sklearn/calculate/feature_importances.py +67 -0
  169. wandb/integration/sklearn/calculate/learning_curve.py +64 -0
  170. wandb/integration/sklearn/calculate/outlier_candidates.py +69 -0
  171. wandb/integration/sklearn/calculate/residuals.py +86 -0
  172. wandb/integration/sklearn/calculate/silhouette.py +118 -0
  173. wandb/integration/sklearn/calculate/summary_metrics.py +62 -0
  174. wandb/integration/sklearn/plot/__init__.py +35 -0
  175. wandb/integration/sklearn/plot/classifier.py +329 -0
  176. wandb/integration/sklearn/plot/clusterer.py +146 -0
  177. wandb/integration/sklearn/plot/regressor.py +121 -0
  178. wandb/integration/sklearn/plot/shared.py +91 -0
  179. wandb/integration/sklearn/utils.py +184 -0
  180. wandb/integration/tensorboard/__init__.py +10 -0
  181. wandb/integration/tensorboard/log.py +351 -0
  182. wandb/integration/tensorboard/monkeypatch.py +186 -0
  183. wandb/integration/tensorflow/__init__.py +5 -0
  184. wandb/integration/tensorflow/estimator_hook.py +54 -0
  185. wandb/integration/torch/__init__.py +0 -0
  186. wandb/integration/torch/wandb_torch.py +554 -0
  187. wandb/integration/ultralytics/__init__.py +11 -0
  188. wandb/integration/ultralytics/bbox_utils.py +215 -0
  189. wandb/integration/ultralytics/callback.py +528 -0
  190. wandb/integration/ultralytics/classification_utils.py +83 -0
  191. wandb/integration/ultralytics/mask_utils.py +202 -0
  192. wandb/integration/ultralytics/pose_utils.py +103 -0
  193. wandb/integration/weave/__init__.py +6 -0
  194. wandb/integration/weave/interface.py +49 -0
  195. wandb/integration/weave/weave.py +118 -0
  196. wandb/integration/xgboost/__init__.py +11 -0
  197. wandb/integration/xgboost/xgboost.py +189 -0
  198. wandb/integration/yolov8/__init__.py +0 -0
  199. wandb/integration/yolov8/yolov8.py +284 -0
  200. wandb/jupyter.py +538 -0
  201. wandb/mpmain/__init__.py +0 -0
  202. wandb/mpmain/__main__.py +1 -0
  203. wandb/old/__init__.py +0 -0
  204. wandb/old/core.py +53 -0
  205. wandb/old/settings.py +176 -0
  206. wandb/old/summary.py +438 -0
  207. wandb/plot/__init__.py +30 -0
  208. wandb/plot/bar.py +71 -0
  209. wandb/plot/confusion_matrix.py +185 -0
  210. wandb/plot/custom_chart.py +147 -0
  211. wandb/plot/histogram.py +66 -0
  212. wandb/plot/line.py +75 -0
  213. wandb/plot/line_series.py +173 -0
  214. wandb/plot/pr_curve.py +186 -0
  215. wandb/plot/roc_curve.py +163 -0
  216. wandb/plot/scatter.py +66 -0
  217. wandb/plot/utils.py +184 -0
  218. wandb/plot/viz.py +41 -0
  219. wandb/proto/__init__.py +0 -0
  220. wandb/proto/v3/__init__.py +0 -0
  221. wandb/proto/v3/wandb_base_pb2.py +55 -0
  222. wandb/proto/v3/wandb_internal_pb2.py +1738 -0
  223. wandb/proto/v3/wandb_server_pb2.py +209 -0
  224. wandb/proto/v3/wandb_settings_pb2.py +122 -0
  225. wandb/proto/v3/wandb_sync_pb2.py +100 -0
  226. wandb/proto/v3/wandb_telemetry_pb2.py +106 -0
  227. wandb/proto/v4/__init__.py +0 -0
  228. wandb/proto/v4/wandb_base_pb2.py +30 -0
  229. wandb/proto/v4/wandb_internal_pb2.py +384 -0
  230. wandb/proto/v4/wandb_server_pb2.py +64 -0
  231. wandb/proto/v4/wandb_settings_pb2.py +47 -0
  232. wandb/proto/v4/wandb_sync_pb2.py +42 -0
  233. wandb/proto/v4/wandb_telemetry_pb2.py +41 -0
  234. wandb/proto/v5/wandb_base_pb2.py +31 -0
  235. wandb/proto/v5/wandb_internal_pb2.py +385 -0
  236. wandb/proto/v5/wandb_server_pb2.py +65 -0
  237. wandb/proto/v5/wandb_settings_pb2.py +48 -0
  238. wandb/proto/v5/wandb_sync_pb2.py +43 -0
  239. wandb/proto/v5/wandb_telemetry_pb2.py +42 -0
  240. wandb/proto/v6/wandb_base_pb2.py +41 -0
  241. wandb/proto/v6/wandb_internal_pb2.py +395 -0
  242. wandb/proto/v6/wandb_server_pb2.py +75 -0
  243. wandb/proto/v6/wandb_settings_pb2.py +58 -0
  244. wandb/proto/v6/wandb_sync_pb2.py +53 -0
  245. wandb/proto/v6/wandb_telemetry_pb2.py +52 -0
  246. wandb/proto/wandb_base_pb2.py +12 -0
  247. wandb/proto/wandb_deprecated.py +59 -0
  248. wandb/proto/wandb_generate_deprecated.py +30 -0
  249. wandb/proto/wandb_generate_proto.py +50 -0
  250. wandb/proto/wandb_internal_pb2.py +18 -0
  251. wandb/proto/wandb_server_pb2.py +12 -0
  252. wandb/proto/wandb_settings_pb2.py +12 -0
  253. wandb/proto/wandb_sync_pb2.py +12 -0
  254. wandb/proto/wandb_telemetry_pb2.py +12 -0
  255. wandb/py.typed +0 -0
  256. wandb/sdk/__init__.py +37 -0
  257. wandb/sdk/artifacts/__init__.py +0 -0
  258. wandb/sdk/artifacts/_factories.py +22 -0
  259. wandb/sdk/artifacts/_generated/__init__.py +208 -0
  260. wandb/sdk/artifacts/_generated/add_aliases.py +21 -0
  261. wandb/sdk/artifacts/_generated/artifact_by_id.py +17 -0
  262. wandb/sdk/artifacts/_generated/artifact_by_name.py +22 -0
  263. wandb/sdk/artifacts/_generated/artifact_collection_membership_file_urls.py +43 -0
  264. wandb/sdk/artifacts/_generated/artifact_collection_membership_files.py +43 -0
  265. wandb/sdk/artifacts/_generated/artifact_created_by.py +47 -0
  266. wandb/sdk/artifacts/_generated/artifact_file_urls.py +22 -0
  267. wandb/sdk/artifacts/_generated/artifact_type.py +31 -0
  268. wandb/sdk/artifacts/_generated/artifact_used_by.py +43 -0
  269. wandb/sdk/artifacts/_generated/artifact_version_files.py +36 -0
  270. wandb/sdk/artifacts/_generated/artifact_via_membership_by_name.py +26 -0
  271. wandb/sdk/artifacts/_generated/create_artifact_collection_tag_assignments.py +36 -0
  272. wandb/sdk/artifacts/_generated/delete_aliases.py +21 -0
  273. wandb/sdk/artifacts/_generated/delete_artifact.py +28 -0
  274. wandb/sdk/artifacts/_generated/delete_artifact_collection_tag_assignments.py +25 -0
  275. wandb/sdk/artifacts/_generated/delete_artifact_portfolio.py +35 -0
  276. wandb/sdk/artifacts/_generated/delete_artifact_sequence.py +35 -0
  277. wandb/sdk/artifacts/_generated/enums.py +22 -0
  278. wandb/sdk/artifacts/_generated/fetch_artifact_manifest.py +38 -0
  279. wandb/sdk/artifacts/_generated/fetch_linked_artifacts.py +67 -0
  280. wandb/sdk/artifacts/_generated/fetch_registries.py +32 -0
  281. wandb/sdk/artifacts/_generated/fragments.py +524 -0
  282. wandb/sdk/artifacts/_generated/input_types.py +46 -0
  283. wandb/sdk/artifacts/_generated/link_artifact.py +27 -0
  284. wandb/sdk/artifacts/_generated/move_artifact_collection.py +35 -0
  285. wandb/sdk/artifacts/_generated/operations.py +1253 -0
  286. wandb/sdk/artifacts/_generated/project_artifact_collection.py +101 -0
  287. wandb/sdk/artifacts/_generated/project_artifact_collections.py +33 -0
  288. wandb/sdk/artifacts/_generated/project_artifact_type.py +24 -0
  289. wandb/sdk/artifacts/_generated/project_artifact_types.py +24 -0
  290. wandb/sdk/artifacts/_generated/project_artifacts.py +42 -0
  291. wandb/sdk/artifacts/_generated/registry_collections.py +34 -0
  292. wandb/sdk/artifacts/_generated/registry_versions.py +34 -0
  293. wandb/sdk/artifacts/_generated/run_input_artifacts.py +31 -0
  294. wandb/sdk/artifacts/_generated/run_output_artifacts.py +31 -0
  295. wandb/sdk/artifacts/_generated/type_info.py +19 -0
  296. wandb/sdk/artifacts/_generated/unlink_artifact.py +25 -0
  297. wandb/sdk/artifacts/_generated/update_artifact.py +26 -0
  298. wandb/sdk/artifacts/_generated/update_artifact_portfolio.py +35 -0
  299. wandb/sdk/artifacts/_generated/update_artifact_sequence.py +35 -0
  300. wandb/sdk/artifacts/_gqlutils.py +47 -0
  301. wandb/sdk/artifacts/_internal_artifact.py +54 -0
  302. wandb/sdk/artifacts/_models/__init__.py +4 -0
  303. wandb/sdk/artifacts/_models/base_model.py +20 -0
  304. wandb/sdk/artifacts/_validators.py +338 -0
  305. wandb/sdk/artifacts/artifact.py +2683 -0
  306. wandb/sdk/artifacts/artifact_download_logger.py +45 -0
  307. wandb/sdk/artifacts/artifact_file_cache.py +256 -0
  308. wandb/sdk/artifacts/artifact_instance_cache.py +17 -0
  309. wandb/sdk/artifacts/artifact_manifest.py +76 -0
  310. wandb/sdk/artifacts/artifact_manifest_entry.py +315 -0
  311. wandb/sdk/artifacts/artifact_manifests/__init__.py +0 -0
  312. wandb/sdk/artifacts/artifact_manifests/artifact_manifest_v1.py +94 -0
  313. wandb/sdk/artifacts/artifact_saver.py +277 -0
  314. wandb/sdk/artifacts/artifact_state.py +13 -0
  315. wandb/sdk/artifacts/artifact_ttl.py +9 -0
  316. wandb/sdk/artifacts/exceptions.py +72 -0
  317. wandb/sdk/artifacts/staging.py +27 -0
  318. wandb/sdk/artifacts/storage_handler.py +62 -0
  319. wandb/sdk/artifacts/storage_handlers/__init__.py +0 -0
  320. wandb/sdk/artifacts/storage_handlers/azure_handler.py +214 -0
  321. wandb/sdk/artifacts/storage_handlers/gcs_handler.py +224 -0
  322. wandb/sdk/artifacts/storage_handlers/http_handler.py +112 -0
  323. wandb/sdk/artifacts/storage_handlers/local_file_handler.py +142 -0
  324. wandb/sdk/artifacts/storage_handlers/multi_handler.py +56 -0
  325. wandb/sdk/artifacts/storage_handlers/s3_handler.py +340 -0
  326. wandb/sdk/artifacts/storage_handlers/tracking_handler.py +68 -0
  327. wandb/sdk/artifacts/storage_handlers/wb_artifact_handler.py +131 -0
  328. wandb/sdk/artifacts/storage_handlers/wb_local_artifact_handler.py +74 -0
  329. wandb/sdk/artifacts/storage_layout.py +8 -0
  330. wandb/sdk/artifacts/storage_policies/__init__.py +4 -0
  331. wandb/sdk/artifacts/storage_policies/_factories.py +63 -0
  332. wandb/sdk/artifacts/storage_policies/register.py +1 -0
  333. wandb/sdk/artifacts/storage_policies/wandb_storage_policy.py +525 -0
  334. wandb/sdk/artifacts/storage_policy.py +75 -0
  335. wandb/sdk/backend/__init__.py +0 -0
  336. wandb/sdk/backend/backend.py +57 -0
  337. wandb/sdk/data_types/__init__.py +0 -0
  338. wandb/sdk/data_types/_dtypes.py +914 -0
  339. wandb/sdk/data_types/_private.py +10 -0
  340. wandb/sdk/data_types/audio.py +208 -0
  341. wandb/sdk/data_types/base_types/__init__.py +0 -0
  342. wandb/sdk/data_types/base_types/json_metadata.py +55 -0
  343. wandb/sdk/data_types/base_types/media.py +339 -0
  344. wandb/sdk/data_types/base_types/wb_value.py +295 -0
  345. wandb/sdk/data_types/bokeh.py +91 -0
  346. wandb/sdk/data_types/graph.py +439 -0
  347. wandb/sdk/data_types/helper_types/__init__.py +0 -0
  348. wandb/sdk/data_types/helper_types/bounding_boxes_2d.py +327 -0
  349. wandb/sdk/data_types/helper_types/classes.py +159 -0
  350. wandb/sdk/data_types/helper_types/image_mask.py +251 -0
  351. wandb/sdk/data_types/histogram.py +107 -0
  352. wandb/sdk/data_types/html.py +165 -0
  353. wandb/sdk/data_types/image.py +985 -0
  354. wandb/sdk/data_types/molecule.py +250 -0
  355. wandb/sdk/data_types/object_3d.py +495 -0
  356. wandb/sdk/data_types/plotly.py +95 -0
  357. wandb/sdk/data_types/saved_model.py +435 -0
  358. wandb/sdk/data_types/table.py +1468 -0
  359. wandb/sdk/data_types/table_decorators.py +108 -0
  360. wandb/sdk/data_types/trace_tree.py +440 -0
  361. wandb/sdk/data_types/utils.py +260 -0
  362. wandb/sdk/data_types/video.py +303 -0
  363. wandb/sdk/integration_utils/__init__.py +0 -0
  364. wandb/sdk/integration_utils/auto_logging.py +232 -0
  365. wandb/sdk/integration_utils/data_logging.py +475 -0
  366. wandb/sdk/interface/__init__.py +0 -0
  367. wandb/sdk/interface/constants.py +4 -0
  368. wandb/sdk/interface/interface.py +1093 -0
  369. wandb/sdk/interface/interface_queue.py +50 -0
  370. wandb/sdk/interface/interface_shared.py +473 -0
  371. wandb/sdk/interface/interface_sock.py +55 -0
  372. wandb/sdk/interface/summary_record.py +67 -0
  373. wandb/sdk/internal/__init__.py +0 -0
  374. wandb/sdk/internal/_generated/__init__.py +5 -0
  375. wandb/sdk/internal/_generated/enums.py +4 -0
  376. wandb/sdk/internal/_generated/input_types.py +4 -0
  377. wandb/sdk/internal/_generated/operations.py +15 -0
  378. wandb/sdk/internal/_generated/server_features_query.py +27 -0
  379. wandb/sdk/internal/context.py +89 -0
  380. wandb/sdk/internal/datastore.py +293 -0
  381. wandb/sdk/internal/file_pusher.py +177 -0
  382. wandb/sdk/internal/file_stream.py +686 -0
  383. wandb/sdk/internal/handler.py +854 -0
  384. wandb/sdk/internal/incremental_table_util.py +53 -0
  385. wandb/sdk/internal/internal_api.py +4723 -0
  386. wandb/sdk/internal/job_builder.py +639 -0
  387. wandb/sdk/internal/profiler.py +79 -0
  388. wandb/sdk/internal/progress.py +77 -0
  389. wandb/sdk/internal/run.py +27 -0
  390. wandb/sdk/internal/sample.py +70 -0
  391. wandb/sdk/internal/sender.py +1692 -0
  392. wandb/sdk/internal/sender_config.py +203 -0
  393. wandb/sdk/internal/settings_static.py +40 -0
  394. wandb/sdk/internal/tb_watcher.py +519 -0
  395. wandb/sdk/internal/thread_local_settings.py +18 -0
  396. wandb/sdk/launch/__init__.py +15 -0
  397. wandb/sdk/launch/_launch.py +331 -0
  398. wandb/sdk/launch/_launch_add.py +255 -0
  399. wandb/sdk/launch/_project_spec.py +565 -0
  400. wandb/sdk/launch/agent/__init__.py +5 -0
  401. wandb/sdk/launch/agent/agent.py +931 -0
  402. wandb/sdk/launch/agent/config.py +296 -0
  403. wandb/sdk/launch/agent/job_status_tracker.py +55 -0
  404. wandb/sdk/launch/agent/run_queue_item_file_saver.py +39 -0
  405. wandb/sdk/launch/builder/__init__.py +0 -0
  406. wandb/sdk/launch/builder/abstract.py +156 -0
  407. wandb/sdk/launch/builder/build.py +296 -0
  408. wandb/sdk/launch/builder/context_manager.py +235 -0
  409. wandb/sdk/launch/builder/docker_builder.py +177 -0
  410. wandb/sdk/launch/builder/kaniko_builder.py +595 -0
  411. wandb/sdk/launch/builder/noop.py +58 -0
  412. wandb/sdk/launch/builder/templates/_wandb_bootstrap.py +188 -0
  413. wandb/sdk/launch/builder/templates/dockerfile.py +92 -0
  414. wandb/sdk/launch/create_job.py +541 -0
  415. wandb/sdk/launch/environment/abstract.py +29 -0
  416. wandb/sdk/launch/environment/aws_environment.py +322 -0
  417. wandb/sdk/launch/environment/azure_environment.py +105 -0
  418. wandb/sdk/launch/environment/gcp_environment.py +334 -0
  419. wandb/sdk/launch/environment/local_environment.py +65 -0
  420. wandb/sdk/launch/errors.py +13 -0
  421. wandb/sdk/launch/git_reference.py +109 -0
  422. wandb/sdk/launch/inputs/files.py +148 -0
  423. wandb/sdk/launch/inputs/internal.py +315 -0
  424. wandb/sdk/launch/inputs/manage.py +113 -0
  425. wandb/sdk/launch/inputs/schema.py +70 -0
  426. wandb/sdk/launch/loader.py +249 -0
  427. wandb/sdk/launch/registry/abstract.py +48 -0
  428. wandb/sdk/launch/registry/anon.py +29 -0
  429. wandb/sdk/launch/registry/azure_container_registry.py +124 -0
  430. wandb/sdk/launch/registry/elastic_container_registry.py +192 -0
  431. wandb/sdk/launch/registry/google_artifact_registry.py +219 -0
  432. wandb/sdk/launch/registry/local_registry.py +65 -0
  433. wandb/sdk/launch/runner/__init__.py +0 -0
  434. wandb/sdk/launch/runner/abstract.py +185 -0
  435. wandb/sdk/launch/runner/kubernetes_monitor.py +473 -0
  436. wandb/sdk/launch/runner/kubernetes_runner.py +1290 -0
  437. wandb/sdk/launch/runner/local_container.py +301 -0
  438. wandb/sdk/launch/runner/local_process.py +78 -0
  439. wandb/sdk/launch/runner/sagemaker_runner.py +424 -0
  440. wandb/sdk/launch/runner/vertex_runner.py +225 -0
  441. wandb/sdk/launch/sweeps/__init__.py +37 -0
  442. wandb/sdk/launch/sweeps/scheduler.py +739 -0
  443. wandb/sdk/launch/sweeps/scheduler_sweep.py +90 -0
  444. wandb/sdk/launch/sweeps/utils.py +324 -0
  445. wandb/sdk/launch/utils.py +827 -0
  446. wandb/sdk/launch/wandb_reference.py +138 -0
  447. wandb/sdk/lib/__init__.py +5 -0
  448. wandb/sdk/lib/apikey.py +334 -0
  449. wandb/sdk/lib/asyncio_compat.py +278 -0
  450. wandb/sdk/lib/asyncio_manager.py +252 -0
  451. wandb/sdk/lib/capped_dict.py +26 -0
  452. wandb/sdk/lib/config_util.py +101 -0
  453. wandb/sdk/lib/console_capture.py +219 -0
  454. wandb/sdk/lib/credentials.py +141 -0
  455. wandb/sdk/lib/deprecate.py +27 -0
  456. wandb/sdk/lib/disabled.py +30 -0
  457. wandb/sdk/lib/exit_hooks.py +54 -0
  458. wandb/sdk/lib/file_stream_utils.py +118 -0
  459. wandb/sdk/lib/filenames.py +64 -0
  460. wandb/sdk/lib/filesystem.py +372 -0
  461. wandb/sdk/lib/fsm.py +165 -0
  462. wandb/sdk/lib/gitlib.py +240 -0
  463. wandb/sdk/lib/gql_request.py +76 -0
  464. wandb/sdk/lib/handler_util.py +21 -0
  465. wandb/sdk/lib/hashutil.py +106 -0
  466. wandb/sdk/lib/import_hooks.py +275 -0
  467. wandb/sdk/lib/interrupt.py +37 -0
  468. wandb/sdk/lib/ipython.py +126 -0
  469. wandb/sdk/lib/json_util.py +75 -0
  470. wandb/sdk/lib/lazyloader.py +63 -0
  471. wandb/sdk/lib/module.py +72 -0
  472. wandb/sdk/lib/paths.py +108 -0
  473. wandb/sdk/lib/preinit.py +42 -0
  474. wandb/sdk/lib/printer.py +567 -0
  475. wandb/sdk/lib/printer_asyncio.py +48 -0
  476. wandb/sdk/lib/progress.py +325 -0
  477. wandb/sdk/lib/proto_util.py +90 -0
  478. wandb/sdk/lib/redirect.py +876 -0
  479. wandb/sdk/lib/retry.py +395 -0
  480. wandb/sdk/lib/run_moment.py +82 -0
  481. wandb/sdk/lib/runid.py +12 -0
  482. wandb/sdk/lib/server.py +58 -0
  483. wandb/sdk/lib/service/ipc_support.py +13 -0
  484. wandb/sdk/lib/service/service_client.py +102 -0
  485. wandb/sdk/lib/service/service_connection.py +238 -0
  486. wandb/sdk/lib/service/service_port_file.py +105 -0
  487. wandb/sdk/lib/service/service_process.py +111 -0
  488. wandb/sdk/lib/service/service_token.py +181 -0
  489. wandb/sdk/lib/sparkline.py +44 -0
  490. wandb/sdk/lib/telemetry.py +100 -0
  491. wandb/sdk/lib/timed_input.py +133 -0
  492. wandb/sdk/lib/timer.py +19 -0
  493. wandb/sdk/lib/wb_logging.py +161 -0
  494. wandb/sdk/mailbox/__init__.py +23 -0
  495. wandb/sdk/mailbox/mailbox.py +143 -0
  496. wandb/sdk/mailbox/mailbox_handle.py +134 -0
  497. wandb/sdk/mailbox/response_handle.py +99 -0
  498. wandb/sdk/mailbox/wait_with_progress.py +100 -0
  499. wandb/sdk/projects/_generated/__init__.py +26 -0
  500. wandb/sdk/projects/_generated/delete_project.py +22 -0
  501. wandb/sdk/projects/_generated/enums.py +4 -0
  502. wandb/sdk/projects/_generated/fetch_registry.py +22 -0
  503. wandb/sdk/projects/_generated/fragments.py +41 -0
  504. wandb/sdk/projects/_generated/input_types.py +13 -0
  505. wandb/sdk/projects/_generated/operations.py +88 -0
  506. wandb/sdk/projects/_generated/rename_project.py +27 -0
  507. wandb/sdk/projects/_generated/upsert_registry_project.py +27 -0
  508. wandb/sdk/verify/__init__.py +0 -0
  509. wandb/sdk/verify/verify.py +555 -0
  510. wandb/sdk/wandb_alerts.py +12 -0
  511. wandb/sdk/wandb_config.py +323 -0
  512. wandb/sdk/wandb_helper.py +54 -0
  513. wandb/sdk/wandb_init.py +1601 -0
  514. wandb/sdk/wandb_login.py +358 -0
  515. wandb/sdk/wandb_metric.py +112 -0
  516. wandb/sdk/wandb_require.py +88 -0
  517. wandb/sdk/wandb_require_helpers.py +44 -0
  518. wandb/sdk/wandb_run.py +4102 -0
  519. wandb/sdk/wandb_settings.py +2197 -0
  520. wandb/sdk/wandb_setup.py +560 -0
  521. wandb/sdk/wandb_summary.py +150 -0
  522. wandb/sdk/wandb_sweep.py +120 -0
  523. wandb/sdk/wandb_sync.py +71 -0
  524. wandb/sdk/wandb_watch.py +146 -0
  525. wandb/sklearn.py +35 -0
  526. wandb/sync/__init__.py +3 -0
  527. wandb/sync/sync.py +457 -0
  528. wandb/trigger.py +29 -0
  529. wandb/util.py +2040 -0
  530. wandb/vendor/__init__.py +0 -0
  531. wandb/vendor/gql-0.2.0/setup.py +40 -0
  532. wandb/vendor/gql-0.2.0/tests/__init__.py +0 -0
  533. wandb/vendor/gql-0.2.0/tests/starwars/__init__.py +0 -0
  534. wandb/vendor/gql-0.2.0/tests/starwars/fixtures.py +96 -0
  535. wandb/vendor/gql-0.2.0/tests/starwars/schema.py +146 -0
  536. wandb/vendor/gql-0.2.0/tests/starwars/test_dsl.py +293 -0
  537. wandb/vendor/gql-0.2.0/tests/starwars/test_query.py +355 -0
  538. wandb/vendor/gql-0.2.0/tests/starwars/test_validation.py +171 -0
  539. wandb/vendor/gql-0.2.0/tests/test_client.py +31 -0
  540. wandb/vendor/gql-0.2.0/tests/test_transport.py +89 -0
  541. wandb/vendor/gql-0.2.0/wandb_gql/__init__.py +4 -0
  542. wandb/vendor/gql-0.2.0/wandb_gql/client.py +75 -0
  543. wandb/vendor/gql-0.2.0/wandb_gql/dsl.py +152 -0
  544. wandb/vendor/gql-0.2.0/wandb_gql/gql.py +10 -0
  545. wandb/vendor/gql-0.2.0/wandb_gql/transport/__init__.py +0 -0
  546. wandb/vendor/gql-0.2.0/wandb_gql/transport/http.py +6 -0
  547. wandb/vendor/gql-0.2.0/wandb_gql/transport/local_schema.py +15 -0
  548. wandb/vendor/gql-0.2.0/wandb_gql/transport/requests.py +46 -0
  549. wandb/vendor/gql-0.2.0/wandb_gql/utils.py +21 -0
  550. wandb/vendor/graphql-core-1.1/setup.py +86 -0
  551. wandb/vendor/graphql-core-1.1/wandb_graphql/__init__.py +287 -0
  552. wandb/vendor/graphql-core-1.1/wandb_graphql/error/__init__.py +6 -0
  553. wandb/vendor/graphql-core-1.1/wandb_graphql/error/base.py +42 -0
  554. wandb/vendor/graphql-core-1.1/wandb_graphql/error/format_error.py +11 -0
  555. wandb/vendor/graphql-core-1.1/wandb_graphql/error/located_error.py +29 -0
  556. wandb/vendor/graphql-core-1.1/wandb_graphql/error/syntax_error.py +36 -0
  557. wandb/vendor/graphql-core-1.1/wandb_graphql/execution/__init__.py +26 -0
  558. wandb/vendor/graphql-core-1.1/wandb_graphql/execution/base.py +311 -0
  559. wandb/vendor/graphql-core-1.1/wandb_graphql/execution/executor.py +398 -0
  560. wandb/vendor/graphql-core-1.1/wandb_graphql/execution/executors/__init__.py +0 -0
  561. wandb/vendor/graphql-core-1.1/wandb_graphql/execution/executors/asyncio.py +53 -0
  562. wandb/vendor/graphql-core-1.1/wandb_graphql/execution/executors/gevent.py +22 -0
  563. wandb/vendor/graphql-core-1.1/wandb_graphql/execution/executors/process.py +32 -0
  564. wandb/vendor/graphql-core-1.1/wandb_graphql/execution/executors/sync.py +7 -0
  565. wandb/vendor/graphql-core-1.1/wandb_graphql/execution/executors/thread.py +35 -0
  566. wandb/vendor/graphql-core-1.1/wandb_graphql/execution/executors/utils.py +6 -0
  567. wandb/vendor/graphql-core-1.1/wandb_graphql/execution/experimental/__init__.py +0 -0
  568. wandb/vendor/graphql-core-1.1/wandb_graphql/execution/experimental/executor.py +66 -0
  569. wandb/vendor/graphql-core-1.1/wandb_graphql/execution/experimental/fragment.py +252 -0
  570. wandb/vendor/graphql-core-1.1/wandb_graphql/execution/experimental/resolver.py +151 -0
  571. wandb/vendor/graphql-core-1.1/wandb_graphql/execution/experimental/utils.py +7 -0
  572. wandb/vendor/graphql-core-1.1/wandb_graphql/execution/middleware.py +57 -0
  573. wandb/vendor/graphql-core-1.1/wandb_graphql/execution/values.py +145 -0
  574. wandb/vendor/graphql-core-1.1/wandb_graphql/graphql.py +60 -0
  575. wandb/vendor/graphql-core-1.1/wandb_graphql/language/__init__.py +0 -0
  576. wandb/vendor/graphql-core-1.1/wandb_graphql/language/ast.py +1349 -0
  577. wandb/vendor/graphql-core-1.1/wandb_graphql/language/base.py +19 -0
  578. wandb/vendor/graphql-core-1.1/wandb_graphql/language/lexer.py +435 -0
  579. wandb/vendor/graphql-core-1.1/wandb_graphql/language/location.py +30 -0
  580. wandb/vendor/graphql-core-1.1/wandb_graphql/language/parser.py +779 -0
  581. wandb/vendor/graphql-core-1.1/wandb_graphql/language/printer.py +193 -0
  582. wandb/vendor/graphql-core-1.1/wandb_graphql/language/source.py +18 -0
  583. wandb/vendor/graphql-core-1.1/wandb_graphql/language/visitor.py +222 -0
  584. wandb/vendor/graphql-core-1.1/wandb_graphql/language/visitor_meta.py +82 -0
  585. wandb/vendor/graphql-core-1.1/wandb_graphql/pyutils/__init__.py +0 -0
  586. wandb/vendor/graphql-core-1.1/wandb_graphql/pyutils/cached_property.py +17 -0
  587. wandb/vendor/graphql-core-1.1/wandb_graphql/pyutils/contain_subset.py +28 -0
  588. wandb/vendor/graphql-core-1.1/wandb_graphql/pyutils/default_ordered_dict.py +40 -0
  589. wandb/vendor/graphql-core-1.1/wandb_graphql/pyutils/ordereddict.py +8 -0
  590. wandb/vendor/graphql-core-1.1/wandb_graphql/pyutils/pair_set.py +43 -0
  591. wandb/vendor/graphql-core-1.1/wandb_graphql/pyutils/version.py +78 -0
  592. wandb/vendor/graphql-core-1.1/wandb_graphql/type/__init__.py +67 -0
  593. wandb/vendor/graphql-core-1.1/wandb_graphql/type/definition.py +619 -0
  594. wandb/vendor/graphql-core-1.1/wandb_graphql/type/directives.py +132 -0
  595. wandb/vendor/graphql-core-1.1/wandb_graphql/type/introspection.py +440 -0
  596. wandb/vendor/graphql-core-1.1/wandb_graphql/type/scalars.py +131 -0
  597. wandb/vendor/graphql-core-1.1/wandb_graphql/type/schema.py +100 -0
  598. wandb/vendor/graphql-core-1.1/wandb_graphql/type/typemap.py +145 -0
  599. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/__init__.py +0 -0
  600. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/assert_valid_name.py +9 -0
  601. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/ast_from_value.py +65 -0
  602. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/ast_to_code.py +49 -0
  603. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/ast_to_dict.py +24 -0
  604. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/base.py +75 -0
  605. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/build_ast_schema.py +291 -0
  606. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/build_client_schema.py +250 -0
  607. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/concat_ast.py +9 -0
  608. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/extend_schema.py +357 -0
  609. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/get_field_def.py +27 -0
  610. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/get_operation_ast.py +21 -0
  611. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/introspection_query.py +90 -0
  612. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/is_valid_literal_value.py +67 -0
  613. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/is_valid_value.py +66 -0
  614. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/quoted_or_list.py +21 -0
  615. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/schema_printer.py +168 -0
  616. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/suggestion_list.py +56 -0
  617. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/type_comparators.py +69 -0
  618. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/type_from_ast.py +21 -0
  619. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/type_info.py +149 -0
  620. wandb/vendor/graphql-core-1.1/wandb_graphql/utils/value_from_ast.py +69 -0
  621. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/__init__.py +4 -0
  622. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/__init__.py +79 -0
  623. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/arguments_of_correct_type.py +24 -0
  624. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/base.py +8 -0
  625. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/default_values_of_correct_type.py +44 -0
  626. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/fields_on_correct_type.py +113 -0
  627. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/fragments_on_composite_types.py +33 -0
  628. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/known_argument_names.py +70 -0
  629. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/known_directives.py +97 -0
  630. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/known_fragment_names.py +19 -0
  631. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/known_type_names.py +43 -0
  632. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/lone_anonymous_operation.py +23 -0
  633. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/no_fragment_cycles.py +59 -0
  634. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/no_undefined_variables.py +36 -0
  635. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/no_unused_fragments.py +38 -0
  636. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/no_unused_variables.py +37 -0
  637. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/overlapping_fields_can_be_merged.py +529 -0
  638. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/possible_fragment_spreads.py +44 -0
  639. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/provided_non_null_arguments.py +46 -0
  640. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/scalar_leafs.py +33 -0
  641. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/unique_argument_names.py +32 -0
  642. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/unique_fragment_names.py +28 -0
  643. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/unique_input_field_names.py +33 -0
  644. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/unique_operation_names.py +31 -0
  645. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/unique_variable_names.py +27 -0
  646. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/variables_are_input_types.py +21 -0
  647. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/rules/variables_in_allowed_position.py +53 -0
  648. wandb/vendor/graphql-core-1.1/wandb_graphql/validation/validation.py +158 -0
  649. wandb/vendor/promise-2.3.0/conftest.py +30 -0
  650. wandb/vendor/promise-2.3.0/setup.py +64 -0
  651. wandb/vendor/promise-2.3.0/tests/__init__.py +0 -0
  652. wandb/vendor/promise-2.3.0/tests/conftest.py +8 -0
  653. wandb/vendor/promise-2.3.0/tests/test_awaitable.py +32 -0
  654. wandb/vendor/promise-2.3.0/tests/test_awaitable_35.py +47 -0
  655. wandb/vendor/promise-2.3.0/tests/test_benchmark.py +116 -0
  656. wandb/vendor/promise-2.3.0/tests/test_complex_threads.py +23 -0
  657. wandb/vendor/promise-2.3.0/tests/test_dataloader.py +452 -0
  658. wandb/vendor/promise-2.3.0/tests/test_dataloader_awaitable_35.py +99 -0
  659. wandb/vendor/promise-2.3.0/tests/test_dataloader_extra.py +65 -0
  660. wandb/vendor/promise-2.3.0/tests/test_extra.py +670 -0
  661. wandb/vendor/promise-2.3.0/tests/test_issues.py +132 -0
  662. wandb/vendor/promise-2.3.0/tests/test_promise_list.py +70 -0
  663. wandb/vendor/promise-2.3.0/tests/test_spec.py +584 -0
  664. wandb/vendor/promise-2.3.0/tests/test_thread_safety.py +115 -0
  665. wandb/vendor/promise-2.3.0/tests/utils.py +3 -0
  666. wandb/vendor/promise-2.3.0/wandb_promise/__init__.py +38 -0
  667. wandb/vendor/promise-2.3.0/wandb_promise/async_.py +135 -0
  668. wandb/vendor/promise-2.3.0/wandb_promise/compat.py +32 -0
  669. wandb/vendor/promise-2.3.0/wandb_promise/dataloader.py +326 -0
  670. wandb/vendor/promise-2.3.0/wandb_promise/iterate_promise.py +12 -0
  671. wandb/vendor/promise-2.3.0/wandb_promise/promise.py +848 -0
  672. wandb/vendor/promise-2.3.0/wandb_promise/promise_list.py +151 -0
  673. wandb/vendor/promise-2.3.0/wandb_promise/pyutils/__init__.py +0 -0
  674. wandb/vendor/promise-2.3.0/wandb_promise/pyutils/version.py +83 -0
  675. wandb/vendor/promise-2.3.0/wandb_promise/schedulers/__init__.py +0 -0
  676. wandb/vendor/promise-2.3.0/wandb_promise/schedulers/asyncio.py +22 -0
  677. wandb/vendor/promise-2.3.0/wandb_promise/schedulers/gevent.py +21 -0
  678. wandb/vendor/promise-2.3.0/wandb_promise/schedulers/immediate.py +27 -0
  679. wandb/vendor/promise-2.3.0/wandb_promise/schedulers/thread.py +18 -0
  680. wandb/vendor/promise-2.3.0/wandb_promise/utils.py +56 -0
  681. wandb/vendor/pygments/__init__.py +90 -0
  682. wandb/vendor/pygments/cmdline.py +568 -0
  683. wandb/vendor/pygments/console.py +74 -0
  684. wandb/vendor/pygments/filter.py +74 -0
  685. wandb/vendor/pygments/filters/__init__.py +350 -0
  686. wandb/vendor/pygments/formatter.py +95 -0
  687. wandb/vendor/pygments/formatters/__init__.py +153 -0
  688. wandb/vendor/pygments/formatters/_mapping.py +85 -0
  689. wandb/vendor/pygments/formatters/bbcode.py +109 -0
  690. wandb/vendor/pygments/formatters/html.py +851 -0
  691. wandb/vendor/pygments/formatters/img.py +600 -0
  692. wandb/vendor/pygments/formatters/irc.py +182 -0
  693. wandb/vendor/pygments/formatters/latex.py +482 -0
  694. wandb/vendor/pygments/formatters/other.py +160 -0
  695. wandb/vendor/pygments/formatters/rtf.py +147 -0
  696. wandb/vendor/pygments/formatters/svg.py +153 -0
  697. wandb/vendor/pygments/formatters/terminal.py +136 -0
  698. wandb/vendor/pygments/formatters/terminal256.py +309 -0
  699. wandb/vendor/pygments/lexer.py +871 -0
  700. wandb/vendor/pygments/lexers/__init__.py +329 -0
  701. wandb/vendor/pygments/lexers/_asy_builtins.py +1645 -0
  702. wandb/vendor/pygments/lexers/_cl_builtins.py +232 -0
  703. wandb/vendor/pygments/lexers/_cocoa_builtins.py +72 -0
  704. wandb/vendor/pygments/lexers/_csound_builtins.py +1346 -0
  705. wandb/vendor/pygments/lexers/_lasso_builtins.py +5327 -0
  706. wandb/vendor/pygments/lexers/_lua_builtins.py +295 -0
  707. wandb/vendor/pygments/lexers/_mapping.py +500 -0
  708. wandb/vendor/pygments/lexers/_mql_builtins.py +1172 -0
  709. wandb/vendor/pygments/lexers/_openedge_builtins.py +2547 -0
  710. wandb/vendor/pygments/lexers/_php_builtins.py +4756 -0
  711. wandb/vendor/pygments/lexers/_postgres_builtins.py +621 -0
  712. wandb/vendor/pygments/lexers/_scilab_builtins.py +3094 -0
  713. wandb/vendor/pygments/lexers/_sourcemod_builtins.py +1163 -0
  714. wandb/vendor/pygments/lexers/_stan_builtins.py +532 -0
  715. wandb/vendor/pygments/lexers/_stata_builtins.py +419 -0
  716. wandb/vendor/pygments/lexers/_tsql_builtins.py +1004 -0
  717. wandb/vendor/pygments/lexers/_vim_builtins.py +1939 -0
  718. wandb/vendor/pygments/lexers/actionscript.py +240 -0
  719. wandb/vendor/pygments/lexers/agile.py +24 -0
  720. wandb/vendor/pygments/lexers/algebra.py +221 -0
  721. wandb/vendor/pygments/lexers/ambient.py +76 -0
  722. wandb/vendor/pygments/lexers/ampl.py +87 -0
  723. wandb/vendor/pygments/lexers/apl.py +101 -0
  724. wandb/vendor/pygments/lexers/archetype.py +318 -0
  725. wandb/vendor/pygments/lexers/asm.py +641 -0
  726. wandb/vendor/pygments/lexers/automation.py +374 -0
  727. wandb/vendor/pygments/lexers/basic.py +500 -0
  728. wandb/vendor/pygments/lexers/bibtex.py +160 -0
  729. wandb/vendor/pygments/lexers/business.py +612 -0
  730. wandb/vendor/pygments/lexers/c_cpp.py +252 -0
  731. wandb/vendor/pygments/lexers/c_like.py +541 -0
  732. wandb/vendor/pygments/lexers/capnproto.py +78 -0
  733. wandb/vendor/pygments/lexers/chapel.py +102 -0
  734. wandb/vendor/pygments/lexers/clean.py +288 -0
  735. wandb/vendor/pygments/lexers/compiled.py +34 -0
  736. wandb/vendor/pygments/lexers/configs.py +833 -0
  737. wandb/vendor/pygments/lexers/console.py +114 -0
  738. wandb/vendor/pygments/lexers/crystal.py +393 -0
  739. wandb/vendor/pygments/lexers/csound.py +366 -0
  740. wandb/vendor/pygments/lexers/css.py +689 -0
  741. wandb/vendor/pygments/lexers/d.py +251 -0
  742. wandb/vendor/pygments/lexers/dalvik.py +125 -0
  743. wandb/vendor/pygments/lexers/data.py +555 -0
  744. wandb/vendor/pygments/lexers/diff.py +165 -0
  745. wandb/vendor/pygments/lexers/dotnet.py +691 -0
  746. wandb/vendor/pygments/lexers/dsls.py +878 -0
  747. wandb/vendor/pygments/lexers/dylan.py +289 -0
  748. wandb/vendor/pygments/lexers/ecl.py +125 -0
  749. wandb/vendor/pygments/lexers/eiffel.py +65 -0
  750. wandb/vendor/pygments/lexers/elm.py +121 -0
  751. wandb/vendor/pygments/lexers/erlang.py +533 -0
  752. wandb/vendor/pygments/lexers/esoteric.py +277 -0
  753. wandb/vendor/pygments/lexers/ezhil.py +69 -0
  754. wandb/vendor/pygments/lexers/factor.py +344 -0
  755. wandb/vendor/pygments/lexers/fantom.py +250 -0
  756. wandb/vendor/pygments/lexers/felix.py +273 -0
  757. wandb/vendor/pygments/lexers/forth.py +177 -0
  758. wandb/vendor/pygments/lexers/fortran.py +205 -0
  759. wandb/vendor/pygments/lexers/foxpro.py +428 -0
  760. wandb/vendor/pygments/lexers/functional.py +21 -0
  761. wandb/vendor/pygments/lexers/go.py +101 -0
  762. wandb/vendor/pygments/lexers/grammar_notation.py +213 -0
  763. wandb/vendor/pygments/lexers/graph.py +80 -0
  764. wandb/vendor/pygments/lexers/graphics.py +553 -0
  765. wandb/vendor/pygments/lexers/haskell.py +843 -0
  766. wandb/vendor/pygments/lexers/haxe.py +936 -0
  767. wandb/vendor/pygments/lexers/hdl.py +382 -0
  768. wandb/vendor/pygments/lexers/hexdump.py +103 -0
  769. wandb/vendor/pygments/lexers/html.py +602 -0
  770. wandb/vendor/pygments/lexers/idl.py +270 -0
  771. wandb/vendor/pygments/lexers/igor.py +288 -0
  772. wandb/vendor/pygments/lexers/inferno.py +96 -0
  773. wandb/vendor/pygments/lexers/installers.py +322 -0
  774. wandb/vendor/pygments/lexers/int_fiction.py +1343 -0
  775. wandb/vendor/pygments/lexers/iolang.py +63 -0
  776. wandb/vendor/pygments/lexers/j.py +146 -0
  777. wandb/vendor/pygments/lexers/javascript.py +1525 -0
  778. wandb/vendor/pygments/lexers/julia.py +333 -0
  779. wandb/vendor/pygments/lexers/jvm.py +1573 -0
  780. wandb/vendor/pygments/lexers/lisp.py +2621 -0
  781. wandb/vendor/pygments/lexers/make.py +202 -0
  782. wandb/vendor/pygments/lexers/markup.py +595 -0
  783. wandb/vendor/pygments/lexers/math.py +21 -0
  784. wandb/vendor/pygments/lexers/matlab.py +663 -0
  785. wandb/vendor/pygments/lexers/ml.py +769 -0
  786. wandb/vendor/pygments/lexers/modeling.py +358 -0
  787. wandb/vendor/pygments/lexers/modula2.py +1561 -0
  788. wandb/vendor/pygments/lexers/monte.py +204 -0
  789. wandb/vendor/pygments/lexers/ncl.py +894 -0
  790. wandb/vendor/pygments/lexers/nimrod.py +159 -0
  791. wandb/vendor/pygments/lexers/nit.py +64 -0
  792. wandb/vendor/pygments/lexers/nix.py +136 -0
  793. wandb/vendor/pygments/lexers/oberon.py +105 -0
  794. wandb/vendor/pygments/lexers/objective.py +504 -0
  795. wandb/vendor/pygments/lexers/ooc.py +85 -0
  796. wandb/vendor/pygments/lexers/other.py +41 -0
  797. wandb/vendor/pygments/lexers/parasail.py +79 -0
  798. wandb/vendor/pygments/lexers/parsers.py +835 -0
  799. wandb/vendor/pygments/lexers/pascal.py +644 -0
  800. wandb/vendor/pygments/lexers/pawn.py +199 -0
  801. wandb/vendor/pygments/lexers/perl.py +620 -0
  802. wandb/vendor/pygments/lexers/php.py +267 -0
  803. wandb/vendor/pygments/lexers/praat.py +294 -0
  804. wandb/vendor/pygments/lexers/prolog.py +306 -0
  805. wandb/vendor/pygments/lexers/python.py +939 -0
  806. wandb/vendor/pygments/lexers/qvt.py +152 -0
  807. wandb/vendor/pygments/lexers/r.py +453 -0
  808. wandb/vendor/pygments/lexers/rdf.py +270 -0
  809. wandb/vendor/pygments/lexers/rebol.py +431 -0
  810. wandb/vendor/pygments/lexers/resource.py +85 -0
  811. wandb/vendor/pygments/lexers/rnc.py +67 -0
  812. wandb/vendor/pygments/lexers/roboconf.py +82 -0
  813. wandb/vendor/pygments/lexers/robotframework.py +560 -0
  814. wandb/vendor/pygments/lexers/ruby.py +519 -0
  815. wandb/vendor/pygments/lexers/rust.py +220 -0
  816. wandb/vendor/pygments/lexers/sas.py +228 -0
  817. wandb/vendor/pygments/lexers/scripting.py +1222 -0
  818. wandb/vendor/pygments/lexers/shell.py +794 -0
  819. wandb/vendor/pygments/lexers/smalltalk.py +195 -0
  820. wandb/vendor/pygments/lexers/smv.py +79 -0
  821. wandb/vendor/pygments/lexers/snobol.py +83 -0
  822. wandb/vendor/pygments/lexers/special.py +103 -0
  823. wandb/vendor/pygments/lexers/sql.py +681 -0
  824. wandb/vendor/pygments/lexers/stata.py +108 -0
  825. wandb/vendor/pygments/lexers/supercollider.py +90 -0
  826. wandb/vendor/pygments/lexers/tcl.py +145 -0
  827. wandb/vendor/pygments/lexers/templates.py +2283 -0
  828. wandb/vendor/pygments/lexers/testing.py +207 -0
  829. wandb/vendor/pygments/lexers/text.py +25 -0
  830. wandb/vendor/pygments/lexers/textedit.py +169 -0
  831. wandb/vendor/pygments/lexers/textfmts.py +297 -0
  832. wandb/vendor/pygments/lexers/theorem.py +458 -0
  833. wandb/vendor/pygments/lexers/trafficscript.py +54 -0
  834. wandb/vendor/pygments/lexers/typoscript.py +226 -0
  835. wandb/vendor/pygments/lexers/urbi.py +133 -0
  836. wandb/vendor/pygments/lexers/varnish.py +190 -0
  837. wandb/vendor/pygments/lexers/verification.py +111 -0
  838. wandb/vendor/pygments/lexers/web.py +24 -0
  839. wandb/vendor/pygments/lexers/webmisc.py +988 -0
  840. wandb/vendor/pygments/lexers/whiley.py +116 -0
  841. wandb/vendor/pygments/lexers/x10.py +69 -0
  842. wandb/vendor/pygments/modeline.py +44 -0
  843. wandb/vendor/pygments/plugin.py +68 -0
  844. wandb/vendor/pygments/regexopt.py +92 -0
  845. wandb/vendor/pygments/scanner.py +105 -0
  846. wandb/vendor/pygments/sphinxext.py +158 -0
  847. wandb/vendor/pygments/style.py +155 -0
  848. wandb/vendor/pygments/styles/__init__.py +80 -0
  849. wandb/vendor/pygments/styles/abap.py +29 -0
  850. wandb/vendor/pygments/styles/algol.py +63 -0
  851. wandb/vendor/pygments/styles/algol_nu.py +63 -0
  852. wandb/vendor/pygments/styles/arduino.py +98 -0
  853. wandb/vendor/pygments/styles/autumn.py +65 -0
  854. wandb/vendor/pygments/styles/borland.py +51 -0
  855. wandb/vendor/pygments/styles/bw.py +49 -0
  856. wandb/vendor/pygments/styles/colorful.py +81 -0
  857. wandb/vendor/pygments/styles/default.py +73 -0
  858. wandb/vendor/pygments/styles/emacs.py +72 -0
  859. wandb/vendor/pygments/styles/friendly.py +72 -0
  860. wandb/vendor/pygments/styles/fruity.py +42 -0
  861. wandb/vendor/pygments/styles/igor.py +29 -0
  862. wandb/vendor/pygments/styles/lovelace.py +97 -0
  863. wandb/vendor/pygments/styles/manni.py +75 -0
  864. wandb/vendor/pygments/styles/monokai.py +106 -0
  865. wandb/vendor/pygments/styles/murphy.py +80 -0
  866. wandb/vendor/pygments/styles/native.py +65 -0
  867. wandb/vendor/pygments/styles/paraiso_dark.py +125 -0
  868. wandb/vendor/pygments/styles/paraiso_light.py +125 -0
  869. wandb/vendor/pygments/styles/pastie.py +75 -0
  870. wandb/vendor/pygments/styles/perldoc.py +69 -0
  871. wandb/vendor/pygments/styles/rainbow_dash.py +89 -0
  872. wandb/vendor/pygments/styles/rrt.py +33 -0
  873. wandb/vendor/pygments/styles/sas.py +44 -0
  874. wandb/vendor/pygments/styles/stata.py +40 -0
  875. wandb/vendor/pygments/styles/tango.py +141 -0
  876. wandb/vendor/pygments/styles/trac.py +63 -0
  877. wandb/vendor/pygments/styles/vim.py +63 -0
  878. wandb/vendor/pygments/styles/vs.py +38 -0
  879. wandb/vendor/pygments/styles/xcode.py +51 -0
  880. wandb/vendor/pygments/token.py +213 -0
  881. wandb/vendor/pygments/unistring.py +217 -0
  882. wandb/vendor/pygments/util.py +388 -0
  883. wandb/vendor/watchdog_0_9_0/wandb_watchdog/__init__.py +17 -0
  884. wandb/vendor/watchdog_0_9_0/wandb_watchdog/events.py +615 -0
  885. wandb/vendor/watchdog_0_9_0/wandb_watchdog/observers/__init__.py +98 -0
  886. wandb/vendor/watchdog_0_9_0/wandb_watchdog/observers/api.py +369 -0
  887. wandb/vendor/watchdog_0_9_0/wandb_watchdog/observers/fsevents.py +172 -0
  888. wandb/vendor/watchdog_0_9_0/wandb_watchdog/observers/fsevents2.py +239 -0
  889. wandb/vendor/watchdog_0_9_0/wandb_watchdog/observers/inotify.py +218 -0
  890. wandb/vendor/watchdog_0_9_0/wandb_watchdog/observers/inotify_buffer.py +81 -0
  891. wandb/vendor/watchdog_0_9_0/wandb_watchdog/observers/inotify_c.py +575 -0
  892. wandb/vendor/watchdog_0_9_0/wandb_watchdog/observers/kqueue.py +730 -0
  893. wandb/vendor/watchdog_0_9_0/wandb_watchdog/observers/polling.py +145 -0
  894. wandb/vendor/watchdog_0_9_0/wandb_watchdog/observers/read_directory_changes.py +133 -0
  895. wandb/vendor/watchdog_0_9_0/wandb_watchdog/observers/winapi.py +348 -0
  896. wandb/vendor/watchdog_0_9_0/wandb_watchdog/patterns.py +265 -0
  897. wandb/vendor/watchdog_0_9_0/wandb_watchdog/tricks/__init__.py +174 -0
  898. wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/__init__.py +151 -0
  899. wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/bricks.py +249 -0
  900. wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/compat.py +29 -0
  901. wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/decorators.py +198 -0
  902. wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/delayed_queue.py +88 -0
  903. wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/dirsnapshot.py +293 -0
  904. wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/echo.py +157 -0
  905. wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/event_backport.py +41 -0
  906. wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/importlib2.py +40 -0
  907. wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/platform.py +57 -0
  908. wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/unicode_paths.py +64 -0
  909. wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/win32stat.py +123 -0
  910. wandb/vendor/watchdog_0_9_0/wandb_watchdog/version.py +28 -0
  911. wandb/vendor/watchdog_0_9_0/wandb_watchdog/watchmedo.py +577 -0
  912. wandb/wandb_agent.py +611 -0
  913. wandb/wandb_controller.py +719 -0
  914. wandb/wandb_run.py +8 -0
  915. wandb-0.22.1.dist-info/METADATA +223 -0
  916. wandb-0.22.1.dist-info/RECORD +919 -0
  917. wandb-0.22.1.dist-info/WHEEL +4 -0
  918. wandb-0.22.1.dist-info/entry_points.txt +3 -0
  919. wandb-0.22.1.dist-info/licenses/LICENSE +21 -0
@@ -0,0 +1,1738 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # source: wandb/proto/wandb_internal.proto
4
+ """Generated protocol buffer code."""
5
+ from google.protobuf.internal import enum_type_wrapper
6
+ from google.protobuf import descriptor as _descriptor
7
+ from google.protobuf import descriptor_pool as _descriptor_pool
8
+ from google.protobuf import message as _message
9
+ from google.protobuf import reflection as _reflection
10
+ from google.protobuf import symbol_database as _symbol_database
11
+ # @@protoc_insertion_point(imports)
12
+
13
+ _sym_db = _symbol_database.Default()
14
+
15
+
16
+ from google.protobuf import empty_pb2 as google_dot_protobuf_dot_empty__pb2
17
+ from google.protobuf import timestamp_pb2 as google_dot_protobuf_dot_timestamp__pb2
18
+ from wandb.proto import wandb_base_pb2 as wandb_dot_proto_dot_wandb__base__pb2
19
+ from wandb.proto import wandb_telemetry_pb2 as wandb_dot_proto_dot_wandb__telemetry__pb2
20
+
21
+
22
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n wandb/proto/wandb_internal.proto\x12\x0ewandb_internal\x1a\x1bgoogle/protobuf/empty.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1cwandb/proto/wandb_base.proto\x1a!wandb/proto/wandb_telemetry.proto\"\xcf\t\n\x06Record\x12\x0b\n\x03num\x18\x01 \x01(\x03\x12\x30\n\x07history\x18\x02 \x01(\x0b\x32\x1d.wandb_internal.HistoryRecordH\x00\x12\x30\n\x07summary\x18\x03 \x01(\x0b\x32\x1d.wandb_internal.SummaryRecordH\x00\x12.\n\x06output\x18\x04 \x01(\x0b\x32\x1c.wandb_internal.OutputRecordH\x00\x12.\n\x06\x63onfig\x18\x05 \x01(\x0b\x32\x1c.wandb_internal.ConfigRecordH\x00\x12,\n\x05\x66iles\x18\x06 \x01(\x0b\x32\x1b.wandb_internal.FilesRecordH\x00\x12,\n\x05stats\x18\x07 \x01(\x0b\x32\x1b.wandb_internal.StatsRecordH\x00\x12\x32\n\x08\x61rtifact\x18\x08 \x01(\x0b\x32\x1e.wandb_internal.ArtifactRecordH\x00\x12,\n\x08tbrecord\x18\t \x01(\x0b\x32\x18.wandb_internal.TBRecordH\x00\x12,\n\x05\x61lert\x18\n \x01(\x0b\x32\x1b.wandb_internal.AlertRecordH\x00\x12\x34\n\ttelemetry\x18\x0b \x01(\x0b\x32\x1f.wandb_internal.TelemetryRecordH\x00\x12.\n\x06metric\x18\x0c \x01(\x0b\x32\x1c.wandb_internal.MetricRecordH\x00\x12\x35\n\noutput_raw\x18\r \x01(\x0b\x32\x1f.wandb_internal.OutputRawRecordH\x00\x12(\n\x03run\x18\x11 \x01(\x0b\x32\x19.wandb_internal.RunRecordH\x00\x12-\n\x04\x65xit\x18\x12 \x01(\x0b\x32\x1d.wandb_internal.RunExitRecordH\x00\x12,\n\x05\x66inal\x18\x14 \x01(\x0b\x32\x1b.wandb_internal.FinalRecordH\x00\x12.\n\x06header\x18\x15 \x01(\x0b\x32\x1c.wandb_internal.HeaderRecordH\x00\x12.\n\x06\x66ooter\x18\x16 \x01(\x0b\x32\x1c.wandb_internal.FooterRecordH\x00\x12\x39\n\npreempting\x18\x17 \x01(\x0b\x32#.wandb_internal.RunPreemptingRecordH\x00\x12\x34\n\x12noop_link_artifact\x18\x18 \x01(\x0b\x32\x16.google.protobuf.EmptyH\x00\x12\x39\n\x0cuse_artifact\x18\x19 \x01(\x0b\x32!.wandb_internal.UseArtifactRecordH\x00\x12\x38\n\x0b\x65nvironment\x18\x1a \x01(\x0b\x32!.wandb_internal.EnvironmentRecordH\x00\x12*\n\x07request\x18\x64 \x01(\x0b\x32\x17.wandb_internal.RequestH\x00\x12(\n\x07\x63ontrol\x18\x10 \x01(\x0b\x32\x17.wandb_internal.Control\x12\x0c\n\x04uuid\x18\x13 \x01(\t\x12+\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1b.wandb_internal._RecordInfoB\r\n\x0brecord_type\"\xa8\x01\n\x07\x43ontrol\x12\x10\n\x08req_resp\x18\x01 \x01(\x08\x12\r\n\x05local\x18\x02 \x01(\x08\x12\x10\n\x08relay_id\x18\x03 \x01(\t\x12\x14\n\x0cmailbox_slot\x18\x04 \x01(\t\x12\x13\n\x0b\x61lways_send\x18\x05 \x01(\x08\x12\x14\n\x0c\x66low_control\x18\x06 \x01(\x08\x12\x12\n\nend_offset\x18\x07 \x01(\x03\x12\x15\n\rconnection_id\x18\x08 \x01(\t\"\xf3\x03\n\x06Result\x12\x35\n\nrun_result\x18\x11 \x01(\x0b\x32\x1f.wandb_internal.RunUpdateResultH\x00\x12\x34\n\x0b\x65xit_result\x18\x12 \x01(\x0b\x32\x1d.wandb_internal.RunExitResultH\x00\x12\x33\n\nlog_result\x18\x14 \x01(\x0b\x32\x1d.wandb_internal.HistoryResultH\x00\x12\x37\n\x0esummary_result\x18\x15 \x01(\x0b\x32\x1d.wandb_internal.SummaryResultH\x00\x12\x35\n\routput_result\x18\x16 \x01(\x0b\x32\x1c.wandb_internal.OutputResultH\x00\x12\x35\n\rconfig_result\x18\x17 \x01(\x0b\x32\x1c.wandb_internal.ConfigResultH\x00\x12,\n\x08response\x18\x64 \x01(\x0b\x32\x18.wandb_internal.ResponseH\x00\x12(\n\x07\x63ontrol\x18\x10 \x01(\x0b\x32\x17.wandb_internal.Control\x12\x0c\n\x04uuid\x18\x18 \x01(\t\x12+\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1b.wandb_internal._ResultInfoB\r\n\x0bresult_type\":\n\x0b\x46inalRecord\x12+\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1b.wandb_internal._RecordInfo\"b\n\x0bVersionInfo\x12\x10\n\x08producer\x18\x01 \x01(\t\x12\x14\n\x0cmin_consumer\x18\x02 \x01(\t\x12+\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1b.wandb_internal._RecordInfo\"n\n\x0cHeaderRecord\x12\x31\n\x0cversion_info\x18\x01 \x01(\x0b\x32\x1b.wandb_internal.VersionInfo\x12+\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1b.wandb_internal._RecordInfo\";\n\x0c\x46ooterRecord\x12+\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1b.wandb_internal._RecordInfo\"9\n\x0b\x42ranchPoint\x12\x0b\n\x03run\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\x01\x12\x0e\n\x06metric\x18\x03 \x01(\t\"\x91\x05\n\tRunRecord\x12\x0e\n\x06run_id\x18\x01 \x01(\t\x12\x0e\n\x06\x65ntity\x18\x02 \x01(\t\x12\x0f\n\x07project\x18\x03 \x01(\t\x12,\n\x06\x63onfig\x18\x04 \x01(\x0b\x32\x1c.wandb_internal.ConfigRecord\x12.\n\x07summary\x18\x05 \x01(\x0b\x32\x1d.wandb_internal.SummaryRecord\x12\x11\n\trun_group\x18\x06 \x01(\t\x12\x10\n\x08job_type\x18\x07 \x01(\t\x12\x14\n\x0c\x64isplay_name\x18\x08 \x01(\t\x12\r\n\x05notes\x18\t \x01(\t\x12\x0c\n\x04tags\x18\n \x03(\t\x12\x30\n\x08settings\x18\x0b \x01(\x0b\x32\x1e.wandb_internal.SettingsRecord\x12\x10\n\x08sweep_id\x18\x0c \x01(\t\x12\x0c\n\x04host\x18\r \x01(\t\x12\x15\n\rstarting_step\x18\x0e \x01(\x03\x12\x12\n\nstorage_id\x18\x10 \x01(\t\x12.\n\nstart_time\x18\x11 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x0f\n\x07resumed\x18\x12 \x01(\x08\x12\x32\n\ttelemetry\x18\x13 \x01(\x0b\x32\x1f.wandb_internal.TelemetryRecord\x12\x0f\n\x07runtime\x18\x14 \x01(\x05\x12*\n\x03git\x18\x15 \x01(\x0b\x32\x1d.wandb_internal.GitRepoRecord\x12\x0e\n\x06\x66orked\x18\x16 \x01(\x08\x12\x31\n\x0c\x62ranch_point\x18\x17 \x01(\x0b\x32\x1b.wandb_internal.BranchPoint\x12+\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1b.wandb_internal._RecordInfo\";\n\rGitRepoRecord\x12\x1a\n\nremote_url\x18\x01 \x01(\tR\x06remote\x12\x0e\n\x06\x63ommit\x18\x02 \x01(\t\"c\n\x0fRunUpdateResult\x12&\n\x03run\x18\x01 \x01(\x0b\x32\x19.wandb_internal.RunRecord\x12(\n\x05\x65rror\x18\x02 \x01(\x0b\x32\x19.wandb_internal.ErrorInfo\"\xac\x01\n\tErrorInfo\x12\x0f\n\x07message\x18\x01 \x01(\t\x12\x31\n\x04\x63ode\x18\x02 \x01(\x0e\x32#.wandb_internal.ErrorInfo.ErrorCode\"[\n\tErrorCode\x12\x0b\n\x07UNKNOWN\x10\x00\x12\x11\n\rCOMMUNICATION\x10\x01\x12\x12\n\x0e\x41UTHENTICATION\x10\x02\x12\t\n\x05USAGE\x10\x03\x12\x0f\n\x0bUNSUPPORTED\x10\x04\"`\n\rRunExitRecord\x12\x11\n\texit_code\x18\x01 \x01(\x05\x12\x0f\n\x07runtime\x18\x02 \x01(\x05\x12+\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1b.wandb_internal._RecordInfo\"\x0f\n\rRunExitResult\"B\n\x13RunPreemptingRecord\x12+\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1b.wandb_internal._RecordInfo\"\x15\n\x13RunPreemptingResult\"i\n\x0eSettingsRecord\x12*\n\x04item\x18\x01 \x03(\x0b\x32\x1c.wandb_internal.SettingsItem\x12+\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1b.wandb_internal._RecordInfo\"/\n\x0cSettingsItem\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x12\n\nvalue_json\x18\x10 \x01(\t\"\x1a\n\x0bHistoryStep\x12\x0b\n\x03num\x18\x01 \x01(\x03\"\x92\x01\n\rHistoryRecord\x12)\n\x04item\x18\x01 \x03(\x0b\x32\x1b.wandb_internal.HistoryItem\x12)\n\x04step\x18\x02 \x01(\x0b\x32\x1b.wandb_internal.HistoryStep\x12+\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1b.wandb_internal._RecordInfo\"B\n\x0bHistoryItem\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x12\n\nnested_key\x18\x02 \x03(\t\x12\x12\n\nvalue_json\x18\x10 \x01(\t\"\x0f\n\rHistoryResult\"\xdc\x01\n\x0cOutputRecord\x12<\n\x0boutput_type\x18\x01 \x01(\x0e\x32\'.wandb_internal.OutputRecord.OutputType\x12-\n\ttimestamp\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x0c\n\x04line\x18\x03 \x01(\t\x12+\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1b.wandb_internal._RecordInfo\"$\n\nOutputType\x12\n\n\x06STDERR\x10\x00\x12\n\n\x06STDOUT\x10\x01\"\x0e\n\x0cOutputResult\"\xe2\x01\n\x0fOutputRawRecord\x12?\n\x0boutput_type\x18\x01 \x01(\x0e\x32*.wandb_internal.OutputRawRecord.OutputType\x12-\n\ttimestamp\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x0c\n\x04line\x18\x03 \x01(\t\x12+\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1b.wandb_internal._RecordInfo\"$\n\nOutputType\x12\n\n\x06STDERR\x10\x00\x12\n\n\x06STDOUT\x10\x01\"\x11\n\x0fOutputRawResult\"\xb4\x03\n\x0cMetricRecord\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x11\n\tglob_name\x18\x02 \x01(\t\x12\x13\n\x0bstep_metric\x18\x04 \x01(\t\x12\x19\n\x11step_metric_index\x18\x05 \x01(\x05\x12.\n\x07options\x18\x06 \x01(\x0b\x32\x1d.wandb_internal.MetricOptions\x12.\n\x07summary\x18\x07 \x01(\x0b\x32\x1d.wandb_internal.MetricSummary\x12\x35\n\x04goal\x18\x08 \x01(\x0e\x32\'.wandb_internal.MetricRecord.MetricGoal\x12/\n\x08_control\x18\t \x01(\x0b\x32\x1d.wandb_internal.MetricControl\x12\x1a\n\x12\x65xpanded_from_glob\x18\n \x01(\x08\x12+\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1b.wandb_internal._RecordInfo\"B\n\nMetricGoal\x12\x0e\n\nGOAL_UNSET\x10\x00\x12\x11\n\rGOAL_MINIMIZE\x10\x01\x12\x11\n\rGOAL_MAXIMIZE\x10\x02\"\x0e\n\x0cMetricResult\"C\n\rMetricOptions\x12\x11\n\tstep_sync\x18\x01 \x01(\x08\x12\x0e\n\x06hidden\x18\x02 \x01(\x08\x12\x0f\n\x07\x64\x65\x66ined\x18\x03 \x01(\x08\"\"\n\rMetricControl\x12\x11\n\toverwrite\x18\x01 \x01(\x08\"~\n\rMetricSummary\x12\x0b\n\x03min\x18\x01 \x01(\x08\x12\x0b\n\x03max\x18\x02 \x01(\x08\x12\x0c\n\x04mean\x18\x03 \x01(\x08\x12\x0c\n\x04\x62\x65st\x18\x04 \x01(\x08\x12\x0c\n\x04last\x18\x05 \x01(\x08\x12\x0c\n\x04none\x18\x06 \x01(\x08\x12\x0c\n\x04\x63opy\x18\x07 \x01(\x08\x12\r\n\x05\x66irst\x18\x08 \x01(\x08\"\x93\x01\n\x0c\x43onfigRecord\x12*\n\x06update\x18\x01 \x03(\x0b\x32\x1a.wandb_internal.ConfigItem\x12*\n\x06remove\x18\x02 \x03(\x0b\x32\x1a.wandb_internal.ConfigItem\x12+\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1b.wandb_internal._RecordInfo\"A\n\nConfigItem\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x12\n\nnested_key\x18\x02 \x03(\t\x12\x12\n\nvalue_json\x18\x10 \x01(\t\"\x0e\n\x0c\x43onfigResult\"\x96\x01\n\rSummaryRecord\x12+\n\x06update\x18\x01 \x03(\x0b\x32\x1b.wandb_internal.SummaryItem\x12+\n\x06remove\x18\x02 \x03(\x0b\x32\x1b.wandb_internal.SummaryItem\x12+\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1b.wandb_internal._RecordInfo\"B\n\x0bSummaryItem\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x12\n\nnested_key\x18\x02 \x03(\t\x12\x12\n\nvalue_json\x18\x10 \x01(\t\"\x0f\n\rSummaryResult\"d\n\x0b\x46ilesRecord\x12(\n\x05\x66iles\x18\x01 \x03(\x0b\x32\x19.wandb_internal.FilesItem\x12+\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1b.wandb_internal._RecordInfo\"\xec\x01\n\tFilesItem\x12\x0c\n\x04path\x18\x01 \x01(\t\x12\x34\n\x06policy\x18\x02 \x01(\x0e\x32$.wandb_internal.FilesItem.PolicyType\x12\x30\n\x04type\x18\x03 \x01(\x0e\x32\".wandb_internal.FilesItem.FileType\"(\n\nPolicyType\x12\x07\n\x03NOW\x10\x00\x12\x07\n\x03\x45ND\x10\x01\x12\x08\n\x04LIVE\x10\x02\"9\n\x08\x46ileType\x12\t\n\x05OTHER\x10\x00\x12\t\n\x05WANDB\x10\x01\x12\t\n\x05MEDIA\x10\x02\x12\x0c\n\x08\x41RTIFACT\x10\x03J\x04\x08\x10\x10\x11\"\r\n\x0b\x46ilesResult\"\xe6\x01\n\x0bStatsRecord\x12\x39\n\nstats_type\x18\x01 \x01(\x0e\x32%.wandb_internal.StatsRecord.StatsType\x12-\n\ttimestamp\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\'\n\x04item\x18\x03 \x03(\x0b\x32\x19.wandb_internal.StatsItem\x12+\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1b.wandb_internal._RecordInfo\"\x17\n\tStatsType\x12\n\n\x06SYSTEM\x10\x00\",\n\tStatsItem\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x12\n\nvalue_json\x18\x10 \x01(\t\"\xe7\x03\n\x0e\x41rtifactRecord\x12\x0e\n\x06run_id\x18\x01 \x01(\t\x12\x0f\n\x07project\x18\x02 \x01(\t\x12\x0e\n\x06\x65ntity\x18\x03 \x01(\t\x12\x0c\n\x04type\x18\x04 \x01(\t\x12\x0c\n\x04name\x18\x05 \x01(\t\x12\x0e\n\x06\x64igest\x18\x06 \x01(\t\x12\x13\n\x0b\x64\x65scription\x18\x07 \x01(\t\x12\x10\n\x08metadata\x18\x08 \x01(\t\x12\x14\n\x0cuser_created\x18\t \x01(\x08\x12\x18\n\x10use_after_commit\x18\n \x01(\x08\x12\x0f\n\x07\x61liases\x18\x0b \x03(\t\x12\x32\n\x08manifest\x18\x0c \x01(\x0b\x32 .wandb_internal.ArtifactManifest\x12\x16\n\x0e\x64istributed_id\x18\r \x01(\t\x12\x10\n\x08\x66inalize\x18\x0e \x01(\x08\x12\x11\n\tclient_id\x18\x0f \x01(\t\x12\x1a\n\x12sequence_client_id\x18\x10 \x01(\t\x12\x0f\n\x07\x62\x61se_id\x18\x11 \x01(\t\x12\x1c\n\x14ttl_duration_seconds\x18\x12 \x01(\x03\x12\x0c\n\x04tags\x18\x13 \x03(\t\x12\x19\n\x11incremental_beta1\x18\x64 \x01(\x08\x12+\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1b.wandb_internal._RecordInfo\"\xd8\x01\n\x10\x41rtifactManifest\x12\x0f\n\x07version\x18\x01 \x01(\x05\x12\x16\n\x0estorage_policy\x18\x02 \x01(\t\x12\x46\n\x15storage_policy_config\x18\x03 \x03(\x0b\x32\'.wandb_internal.StoragePolicyConfigItem\x12\x37\n\x08\x63ontents\x18\x04 \x03(\x0b\x32%.wandb_internal.ArtifactManifestEntry\x12\x1a\n\x12manifest_file_path\x18\x05 \x01(\t\"\xcf\x01\n\x15\x41rtifactManifestEntry\x12\x0c\n\x04path\x18\x01 \x01(\t\x12\x0e\n\x06\x64igest\x18\x02 \x01(\t\x12\x0b\n\x03ref\x18\x03 \x01(\t\x12\x0c\n\x04size\x18\x04 \x01(\x03\x12\x10\n\x08mimetype\x18\x05 \x01(\t\x12\x12\n\nlocal_path\x18\x06 \x01(\t\x12\x19\n\x11\x62irth_artifact_id\x18\x07 \x01(\t\x12\x12\n\nskip_cache\x18\x08 \x01(\x08\x12(\n\x05\x65xtra\x18\x10 \x03(\x0b\x32\x19.wandb_internal.ExtraItem\",\n\tExtraItem\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x12\n\nvalue_json\x18\x02 \x01(\t\":\n\x17StoragePolicyConfigItem\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x12\n\nvalue_json\x18\x02 \x01(\t\"\x10\n\x0e\x41rtifactResult\"\x14\n\x12LinkArtifactResult\"\xf0\x01\n\x13LinkArtifactRequest\x12\x11\n\tclient_id\x18\x01 \x01(\t\x12\x11\n\tserver_id\x18\x02 \x01(\t\x12\x16\n\x0eportfolio_name\x18\x03 \x01(\t\x12\x18\n\x10portfolio_entity\x18\x04 \x01(\t\x12\x19\n\x11portfolio_project\x18\x05 \x01(\t\x12\x19\n\x11portfolio_aliases\x18\x06 \x03(\t\x12\x1e\n\x16portfolio_organization\x18\x07 \x01(\t\x12+\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1b.wandb_internal._RecordInfo\"[\n\x14LinkArtifactResponse\x12\x15\n\rerror_message\x18\x01 \x01(\t\x12\x1a\n\rversion_index\x18\x02 \x01(\x05H\x00\x88\x01\x01\x42\x10\n\x0e_version_index\"h\n\x08TBRecord\x12+\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1b.wandb_internal._RecordInfo\x12\x0f\n\x07log_dir\x18\x01 \x01(\t\x12\x10\n\x08root_dir\x18\x03 \x01(\t\x12\x0c\n\x04save\x18\x02 \x01(\x08\"\n\n\x08TBResult\"}\n\x0b\x41lertRecord\x12\r\n\x05title\x18\x01 \x01(\t\x12\x0c\n\x04text\x18\x02 \x01(\t\x12\r\n\x05level\x18\x03 \x01(\t\x12\x15\n\rwait_duration\x18\x04 \x01(\x03\x12+\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1b.wandb_internal._RecordInfo\"\r\n\x0b\x41lertResult\"\xf8\x11\n\x07Request\x12\x38\n\x0bstop_status\x18\x01 \x01(\x0b\x32!.wandb_internal.StopStatusRequestH\x00\x12>\n\x0enetwork_status\x18\x02 \x01(\x0b\x32$.wandb_internal.NetworkStatusRequestH\x00\x12-\n\x05\x64\x65\x66\x65r\x18\x03 \x01(\x0b\x32\x1c.wandb_internal.DeferRequestH\x00\x12\x38\n\x0bget_summary\x18\x04 \x01(\x0b\x32!.wandb_internal.GetSummaryRequestH\x00\x12-\n\x05login\x18\x05 \x01(\x0b\x32\x1c.wandb_internal.LoginRequestH\x00\x12-\n\x05pause\x18\x06 \x01(\x0b\x32\x1c.wandb_internal.PauseRequestH\x00\x12/\n\x06resume\x18\x07 \x01(\x0b\x32\x1d.wandb_internal.ResumeRequestH\x00\x12\x34\n\tpoll_exit\x18\x08 \x01(\x0b\x32\x1f.wandb_internal.PollExitRequestH\x00\x12@\n\x0fsampled_history\x18\t \x01(\x0b\x32%.wandb_internal.SampledHistoryRequestH\x00\x12@\n\x0fpartial_history\x18\n \x01(\x0b\x32%.wandb_internal.PartialHistoryRequestH\x00\x12\x34\n\trun_start\x18\x0b \x01(\x0b\x32\x1f.wandb_internal.RunStartRequestH\x00\x12<\n\rcheck_version\x18\x0c \x01(\x0b\x32#.wandb_internal.CheckVersionRequestH\x00\x12:\n\x0clog_artifact\x18\r \x01(\x0b\x32\".wandb_internal.LogArtifactRequestH\x00\x12\x44\n\x11\x64ownload_artifact\x18\x0e \x01(\x0b\x32\'.wandb_internal.DownloadArtifactRequestH\x00\x12\x35\n\tkeepalive\x18\x11 \x01(\x0b\x32 .wandb_internal.KeepaliveRequestH\x00\x12>\n\x0eserver_feature\x18\x12 \x01(\x0b\x32$.wandb_internal.ServerFeatureRequestH\x00\x12\x36\n\nrun_status\x18\x14 \x01(\x0b\x32 .wandb_internal.RunStatusRequestH\x00\x12/\n\x06\x63\x61ncel\x18\x15 \x01(\x0b\x32\x1d.wandb_internal.CancelRequestH\x00\x12\x44\n\x11internal_messages\x18\x17 \x01(\x0b\x32\'.wandb_internal.InternalMessagesRequestH\x00\x12@\n\x0fpython_packages\x18\x18 \x01(\x0b\x32%.wandb_internal.PythonPackagesRequestH\x00\x12\x33\n\x08shutdown\x18@ \x01(\x0b\x32\x1f.wandb_internal.ShutdownRequestH\x00\x12/\n\x06\x61ttach\x18\x41 \x01(\x0b\x32\x1d.wandb_internal.AttachRequestH\x00\x12/\n\x06status\x18\x42 \x01(\x0b\x32\x1d.wandb_internal.StatusRequestH\x00\x12\x38\n\x0bserver_info\x18\x43 \x01(\x0b\x32!.wandb_internal.ServerInfoRequestH\x00\x12\x38\n\x0bsender_mark\x18\x44 \x01(\x0b\x32!.wandb_internal.SenderMarkRequestH\x00\x12\x38\n\x0bsender_read\x18\x45 \x01(\x0b\x32!.wandb_internal.SenderReadRequestH\x00\x12<\n\rstatus_report\x18\x46 \x01(\x0b\x32#.wandb_internal.StatusReportRequestH\x00\x12>\n\x0esummary_record\x18G \x01(\x0b\x32$.wandb_internal.SummaryRecordRequestH\x00\x12\x42\n\x10telemetry_record\x18H \x01(\x0b\x32&.wandb_internal.TelemetryRecordRequestH\x00\x12\x32\n\x08job_info\x18I \x01(\x0b\x32\x1e.wandb_internal.JobInfoRequestH\x00\x12\x45\n\x12get_system_metrics\x18J \x01(\x0b\x32\'.wandb_internal.GetSystemMetricsRequestH\x00\x12\x34\n\tjob_input\x18M \x01(\x0b\x32\x1f.wandb_internal.JobInputRequestH\x00\x12<\n\rlink_artifact\x18N \x01(\x0b\x32#.wandb_internal.LinkArtifactRequestH\x00\x12N\n\x17run_finish_without_exit\x18O \x01(\x0b\x32+.wandb_internal.RunFinishWithoutExitRequestH\x00\x12\x38\n\x0bsync_finish\x18Q \x01(\x0b\x32!.wandb_internal.SyncFinishRequestH\x00\x12;\n\noperations\x18R \x01(\x0b\x32%.wandb_internal.OperationStatsRequestH\x00\x12\x43\n\x11probe_system_info\x18S \x01(\x0b\x32&.wandb_internal.ProbeSystemInfoRequestH\x00\x12\x39\n\x0btest_inject\x18\xe8\x07 \x01(\x0b\x32!.wandb_internal.TestInjectRequestH\x00\x42\x0e\n\x0crequest_typeJ\x04\x08\x16\x10\x17J\x04\x08K\x10LJ\x04\x08L\x10MJ\x04\x08P\x10Q\"\x9b\x0e\n\x08Response\x12?\n\x12keepalive_response\x18\x12 \x01(\x0b\x32!.wandb_internal.KeepaliveResponseH\x00\x12\x42\n\x14stop_status_response\x18\x13 \x01(\x0b\x32\".wandb_internal.StopStatusResponseH\x00\x12H\n\x17network_status_response\x18\x14 \x01(\x0b\x32%.wandb_internal.NetworkStatusResponseH\x00\x12\x37\n\x0elogin_response\x18\x18 \x01(\x0b\x32\x1d.wandb_internal.LoginResponseH\x00\x12\x42\n\x14get_summary_response\x18\x19 \x01(\x0b\x32\".wandb_internal.GetSummaryResponseH\x00\x12>\n\x12poll_exit_response\x18\x1a \x01(\x0b\x32 .wandb_internal.PollExitResponseH\x00\x12J\n\x18sampled_history_response\x18\x1b \x01(\x0b\x32&.wandb_internal.SampledHistoryResponseH\x00\x12>\n\x12run_start_response\x18\x1c \x01(\x0b\x32 .wandb_internal.RunStartResponseH\x00\x12\x46\n\x16\x63heck_version_response\x18\x1d \x01(\x0b\x32$.wandb_internal.CheckVersionResponseH\x00\x12\x44\n\x15log_artifact_response\x18\x1e \x01(\x0b\x32#.wandb_internal.LogArtifactResponseH\x00\x12N\n\x1a\x64ownload_artifact_response\x18\x1f \x01(\x0b\x32(.wandb_internal.DownloadArtifactResponseH\x00\x12H\n\x17server_feature_response\x18 \x01(\x0b\x32%.wandb_internal.ServerFeatureResponseH\x00\x12@\n\x13run_status_response\x18# \x01(\x0b\x32!.wandb_internal.RunStatusResponseH\x00\x12\x39\n\x0f\x63\x61ncel_response\x18$ \x01(\x0b\x32\x1e.wandb_internal.CancelResponseH\x00\x12N\n\x1ainternal_messages_response\x18% \x01(\x0b\x32(.wandb_internal.InternalMessagesResponseH\x00\x12=\n\x11shutdown_response\x18@ \x01(\x0b\x32 .wandb_internal.ShutdownResponseH\x00\x12\x39\n\x0f\x61ttach_response\x18\x41 \x01(\x0b\x32\x1e.wandb_internal.AttachResponseH\x00\x12\x39\n\x0fstatus_response\x18\x42 \x01(\x0b\x32\x1e.wandb_internal.StatusResponseH\x00\x12\x42\n\x14server_info_response\x18\x43 \x01(\x0b\x32\".wandb_internal.ServerInfoResponseH\x00\x12<\n\x11job_info_response\x18\x44 \x01(\x0b\x32\x1f.wandb_internal.JobInfoResponseH\x00\x12O\n\x1bget_system_metrics_response\x18\x45 \x01(\x0b\x32(.wandb_internal.GetSystemMetricsResponseH\x00\x12\x46\n\x16link_artifact_response\x18G \x01(\x0b\x32$.wandb_internal.LinkArtifactResponseH\x00\x12\x35\n\rsync_response\x18\x46 \x01(\x0b\x32\x1c.wandb_internal.SyncResponseH\x00\x12X\n run_finish_without_exit_response\x18H \x01(\x0b\x32,.wandb_internal.RunFinishWithoutExitResponseH\x00\x12\x45\n\x13operations_response\x18J \x01(\x0b\x32&.wandb_internal.OperationStatsResponseH\x00\x12\x43\n\x14test_inject_response\x18\xe8\x07 \x01(\x0b\x32\".wandb_internal.TestInjectResponseH\x00\x42\x0f\n\rresponse_typeJ\x04\x08I\x10J\"\xc0\x02\n\x0c\x44\x65\x66\x65rRequest\x12\x36\n\x05state\x18\x01 \x01(\x0e\x32\'.wandb_internal.DeferRequest.DeferState\"\xf7\x01\n\nDeferState\x12\t\n\x05\x42\x45GIN\x10\x00\x12\r\n\tFLUSH_RUN\x10\x01\x12\x0f\n\x0b\x46LUSH_STATS\x10\x02\x12\x19\n\x15\x46LUSH_PARTIAL_HISTORY\x10\x03\x12\x0c\n\x08\x46LUSH_TB\x10\x04\x12\r\n\tFLUSH_SUM\x10\x05\x12\x13\n\x0f\x46LUSH_DEBOUNCER\x10\x06\x12\x10\n\x0c\x46LUSH_OUTPUT\x10\x07\x12\r\n\tFLUSH_JOB\x10\x08\x12\r\n\tFLUSH_DIR\x10\t\x12\x0c\n\x08\x46LUSH_FP\x10\n\x12\x0b\n\x07JOIN_FP\x10\x0b\x12\x0c\n\x08\x46LUSH_FS\x10\x0c\x12\x0f\n\x0b\x46LUSH_FINAL\x10\r\x12\x07\n\x03\x45ND\x10\x0e\"<\n\x0cPauseRequest\x12,\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1c.wandb_internal._RequestInfo\"\x0f\n\rPauseResponse\"=\n\rResumeRequest\x12,\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1c.wandb_internal._RequestInfo\"\x10\n\x0eResumeResponse\"M\n\x0cLoginRequest\x12\x0f\n\x07\x61pi_key\x18\x01 \x01(\t\x12,\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1c.wandb_internal._RequestInfo\"&\n\rLoginResponse\x12\x15\n\ractive_entity\x18\x01 \x01(\t\"A\n\x11GetSummaryRequest\x12,\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1c.wandb_internal._RequestInfo\"?\n\x12GetSummaryResponse\x12)\n\x04item\x18\x01 \x03(\x0b\x32\x1b.wandb_internal.SummaryItem\"G\n\x17GetSystemMetricsRequest\x12,\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1c.wandb_internal._RequestInfo\"R\n\x12SystemMetricSample\x12-\n\ttimestamp\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\r\n\x05value\x18\x02 \x01(\x02\"I\n\x13SystemMetricsBuffer\x12\x32\n\x06record\x18\x01 \x03(\x0b\x32\".wandb_internal.SystemMetricSample\"\xca\x01\n\x18GetSystemMetricsResponse\x12S\n\x0esystem_metrics\x18\x01 \x03(\x0b\x32;.wandb_internal.GetSystemMetricsResponse.SystemMetricsEntry\x1aY\n\x12SystemMetricsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x32\n\x05value\x18\x02 \x01(\x0b\x32#.wandb_internal.SystemMetricsBuffer:\x02\x38\x01\"=\n\rStatusRequest\x12,\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1c.wandb_internal._RequestInfo\")\n\x0eStatusResponse\x12\x17\n\x0frun_should_stop\x18\x01 \x01(\x08\"A\n\x11StopStatusRequest\x12,\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1c.wandb_internal._RequestInfo\"-\n\x12StopStatusResponse\x12\x17\n\x0frun_should_stop\x18\x01 \x01(\x08\"D\n\x14NetworkStatusRequest\x12,\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1c.wandb_internal._RequestInfo\"P\n\x15NetworkStatusResponse\x12\x37\n\x11network_responses\x18\x01 \x03(\x0b\x32\x1c.wandb_internal.HttpResponse\"D\n\x0cHttpResponse\x12\x18\n\x10http_status_code\x18\x01 \x01(\x05\x12\x1a\n\x12http_response_text\x18\x02 \x01(\t\"G\n\x17InternalMessagesRequest\x12,\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1c.wandb_internal._RequestInfo\"N\n\x18InternalMessagesResponse\x12\x32\n\x08messages\x18\x01 \x01(\x0b\x32 .wandb_internal.InternalMessages\"#\n\x10InternalMessages\x12\x0f\n\x07warning\x18\x01 \x03(\t\"?\n\x0fPollExitRequest\x12,\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1c.wandb_internal._RequestInfo\"\xf5\x01\n\x10PollExitResponse\x12\x0c\n\x04\x64one\x18\x01 \x01(\x08\x12\x32\n\x0b\x65xit_result\x18\x02 \x01(\x0b\x32\x1d.wandb_internal.RunExitResult\x12\x35\n\x0cpusher_stats\x18\x03 \x01(\x0b\x32\x1f.wandb_internal.FilePusherStats\x12/\n\x0b\x66ile_counts\x18\x04 \x01(\x0b\x32\x1a.wandb_internal.FileCounts\x12\x37\n\x0foperation_stats\x18\x05 \x01(\x0b\x32\x1e.wandb_internal.OperationStats\"E\n\x15OperationStatsRequest\x12,\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1c.wandb_internal._RequestInfo\"Q\n\x16OperationStatsResponse\x12\x37\n\x0foperation_stats\x18\x01 \x01(\x0b\x32\x1e.wandb_internal.OperationStats\"Y\n\x0eOperationStats\x12-\n\noperations\x18\x01 \x03(\x0b\x32\x19.wandb_internal.Operation\x12\x18\n\x10total_operations\x18\x02 \x01(\x03\"\x87\x01\n\tOperation\x12\x0c\n\x04\x64\x65sc\x18\x01 \x01(\t\x12\x17\n\x0fruntime_seconds\x18\x02 \x01(\x01\x12\x10\n\x08progress\x18\x03 \x01(\t\x12\x14\n\x0c\x65rror_status\x18\x04 \x01(\t\x12+\n\x08subtasks\x18\x05 \x03(\x0b\x32\x19.wandb_internal.Operation\"\x13\n\x11SenderMarkRequest\"\x13\n\x11SyncFinishRequest\"E\n\x0cSyncResponse\x12\x0b\n\x03url\x18\x01 \x01(\t\x12(\n\x05\x65rror\x18\x02 \x01(\x0b\x32\x19.wandb_internal.ErrorInfo\"?\n\x11SenderReadRequest\x12\x14\n\x0cstart_offset\x18\x01 \x01(\x03\x12\x14\n\x0c\x66inal_offset\x18\x02 \x01(\x03\"m\n\x13StatusReportRequest\x12\x12\n\nrecord_num\x18\x01 \x01(\x03\x12\x13\n\x0bsent_offset\x18\x02 \x01(\x03\x12-\n\tsync_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"F\n\x14SummaryRecordRequest\x12.\n\x07summary\x18\x01 \x01(\x0b\x32\x1d.wandb_internal.SummaryRecord\"L\n\x16TelemetryRecordRequest\x12\x32\n\ttelemetry\x18\x01 \x01(\x0b\x32\x1f.wandb_internal.TelemetryRecord\"A\n\x11ServerInfoRequest\x12,\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1c.wandb_internal._RequestInfo\"|\n\x12ServerInfoResponse\x12-\n\nlocal_info\x18\x01 \x01(\x0b\x32\x19.wandb_internal.LocalInfo\x12\x37\n\x0fserver_messages\x18\x02 \x01(\x0b\x32\x1e.wandb_internal.ServerMessages\"=\n\x0eServerMessages\x12+\n\x04item\x18\x01 \x03(\x0b\x32\x1d.wandb_internal.ServerMessage\"e\n\rServerMessage\x12\x12\n\nplain_text\x18\x01 \x01(\t\x12\x10\n\x08utf_text\x18\x02 \x01(\t\x12\x11\n\thtml_text\x18\x03 \x01(\t\x12\x0c\n\x04type\x18\x04 \x01(\t\x12\r\n\x05level\x18\x05 \x01(\x05\"c\n\nFileCounts\x12\x13\n\x0bwandb_count\x18\x01 \x01(\x05\x12\x13\n\x0bmedia_count\x18\x02 \x01(\x05\x12\x16\n\x0e\x61rtifact_count\x18\x03 \x01(\x05\x12\x13\n\x0bother_count\x18\x04 \x01(\x05\"U\n\x0f\x46ilePusherStats\x12\x16\n\x0euploaded_bytes\x18\x01 \x01(\x03\x12\x13\n\x0btotal_bytes\x18\x02 \x01(\x03\x12\x15\n\rdeduped_bytes\x18\x03 \x01(\x03\"\x1e\n\rFilesUploaded\x12\r\n\x05\x66iles\x18\x01 \x03(\t\"\xf4\x01\n\x17\x46ileTransferInfoRequest\x12\x42\n\x04type\x18\x01 \x01(\x0e\x32\x34.wandb_internal.FileTransferInfoRequest.TransferType\x12\x0c\n\x04path\x18\x02 \x01(\t\x12\x0b\n\x03url\x18\x03 \x01(\t\x12\x0c\n\x04size\x18\x04 \x01(\x03\x12\x11\n\tprocessed\x18\x05 \x01(\x03\x12/\n\x0b\x66ile_counts\x18\x06 \x01(\x0b\x32\x1a.wandb_internal.FileCounts\"(\n\x0cTransferType\x12\n\n\x06Upload\x10\x00\x12\x0c\n\x08\x44ownload\x10\x01\"1\n\tLocalInfo\x12\x0f\n\x07version\x18\x01 \x01(\t\x12\x13\n\x0bout_of_date\x18\x02 \x01(\x08\"?\n\x0fShutdownRequest\x12,\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1c.wandb_internal._RequestInfo\"\x12\n\x10ShutdownResponse\"P\n\rAttachRequest\x12\x11\n\tattach_id\x18\x14 \x01(\t\x12,\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1c.wandb_internal._RequestInfo\"b\n\x0e\x41ttachResponse\x12&\n\x03run\x18\x01 \x01(\x0b\x32\x19.wandb_internal.RunRecord\x12(\n\x05\x65rror\x18\x02 \x01(\x0b\x32\x19.wandb_internal.ErrorInfo\"\xd5\x02\n\x11TestInjectRequest\x12\x13\n\x0bhandler_exc\x18\x01 \x01(\x08\x12\x14\n\x0chandler_exit\x18\x02 \x01(\x08\x12\x15\n\rhandler_abort\x18\x03 \x01(\x08\x12\x12\n\nsender_exc\x18\x04 \x01(\x08\x12\x13\n\x0bsender_exit\x18\x05 \x01(\x08\x12\x14\n\x0csender_abort\x18\x06 \x01(\x08\x12\x0f\n\x07req_exc\x18\x07 \x01(\x08\x12\x10\n\x08req_exit\x18\x08 \x01(\x08\x12\x11\n\treq_abort\x18\t \x01(\x08\x12\x10\n\x08resp_exc\x18\n \x01(\x08\x12\x11\n\tresp_exit\x18\x0b \x01(\x08\x12\x12\n\nresp_abort\x18\x0c \x01(\x08\x12\x10\n\x08msg_drop\x18\r \x01(\x08\x12\x10\n\x08msg_hang\x18\x0e \x01(\x08\x12,\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1c.wandb_internal._RequestInfo\"\x14\n\x12TestInjectResponse\"\x1e\n\rHistoryAction\x12\r\n\x05\x66lush\x18\x01 \x01(\x08\"\xca\x01\n\x15PartialHistoryRequest\x12)\n\x04item\x18\x01 \x03(\x0b\x32\x1b.wandb_internal.HistoryItem\x12)\n\x04step\x18\x02 \x01(\x0b\x32\x1b.wandb_internal.HistoryStep\x12-\n\x06\x61\x63tion\x18\x03 \x01(\x0b\x32\x1d.wandb_internal.HistoryAction\x12,\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1c.wandb_internal._RequestInfo\"\x18\n\x16PartialHistoryResponse\"E\n\x15SampledHistoryRequest\x12,\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1c.wandb_internal._RequestInfo\"_\n\x12SampledHistoryItem\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x12\n\nnested_key\x18\x02 \x03(\t\x12\x14\n\x0cvalues_float\x18\x03 \x03(\x02\x12\x12\n\nvalues_int\x18\x04 \x03(\x03\"J\n\x16SampledHistoryResponse\x12\x30\n\x04item\x18\x01 \x03(\x0b\x32\".wandb_internal.SampledHistoryItem\"@\n\x10RunStatusRequest\x12,\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1c.wandb_internal._RequestInfo\"x\n\x11RunStatusResponse\x12\x18\n\x10sync_items_total\x18\x01 \x01(\x03\x12\x1a\n\x12sync_items_pending\x18\x02 \x01(\x03\x12-\n\tsync_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"g\n\x0fRunStartRequest\x12&\n\x03run\x18\x01 \x01(\x0b\x32\x19.wandb_internal.RunRecord\x12,\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1c.wandb_internal._RequestInfo\"\x12\n\x10RunStartResponse\"K\n\x1bRunFinishWithoutExitRequest\x12,\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1c.wandb_internal._RequestInfo\"\x1e\n\x1cRunFinishWithoutExitResponse\"\\\n\x13\x43heckVersionRequest\x12\x17\n\x0f\x63urrent_version\x18\x01 \x01(\t\x12,\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1c.wandb_internal._RequestInfo\"]\n\x14\x43heckVersionResponse\x12\x17\n\x0fupgrade_message\x18\x01 \x01(\t\x12\x14\n\x0cyank_message\x18\x02 \x01(\t\x12\x16\n\x0e\x64\x65lete_message\x18\x03 \x01(\t\">\n\x0eJobInfoRequest\x12,\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1c.wandb_internal._RequestInfo\"6\n\x0fJobInfoResponse\x12\x12\n\nsequenceId\x18\x01 \x01(\t\x12\x0f\n\x07version\x18\x02 \x01(\t\"\x9f\x01\n\x12LogArtifactRequest\x12\x30\n\x08\x61rtifact\x18\x01 \x01(\x0b\x32\x1e.wandb_internal.ArtifactRecord\x12\x14\n\x0chistory_step\x18\x02 \x01(\x03\x12\x13\n\x0bstaging_dir\x18\x03 \x01(\t\x12,\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1c.wandb_internal._RequestInfo\"A\n\x13LogArtifactResponse\x12\x13\n\x0b\x61rtifact_id\x18\x01 \x01(\t\x12\x15\n\rerror_message\x18\x02 \x01(\t\"\xbe\x01\n\x17\x44ownloadArtifactRequest\x12\x13\n\x0b\x61rtifact_id\x18\x01 \x01(\t\x12\x15\n\rdownload_root\x18\x02 \x01(\t\x12 \n\x18\x61llow_missing_references\x18\x04 \x01(\x08\x12\x12\n\nskip_cache\x18\x05 \x01(\x08\x12\x13\n\x0bpath_prefix\x18\x06 \x01(\t\x12,\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1c.wandb_internal._RequestInfo\"1\n\x18\x44ownloadArtifactResponse\x12\x15\n\rerror_message\x18\x01 \x01(\t\"@\n\x10KeepaliveRequest\x12,\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1c.wandb_internal._RequestInfo\"\x13\n\x11KeepaliveResponse\"q\n\x0c\x41rtifactInfo\x12\x10\n\x08\x61rtifact\x18\x01 \x01(\t\x12\x12\n\nentrypoint\x18\x02 \x03(\t\x12\x10\n\x08notebook\x18\x03 \x01(\x08\x12\x15\n\rbuild_context\x18\x04 \x01(\t\x12\x12\n\ndockerfile\x18\x05 \x01(\t\")\n\x07GitInfo\x12\x0e\n\x06remote\x18\x01 \x01(\t\x12\x0e\n\x06\x63ommit\x18\x02 \x01(\t\"\x87\x01\n\tGitSource\x12)\n\x08git_info\x18\x01 \x01(\x0b\x32\x17.wandb_internal.GitInfo\x12\x12\n\nentrypoint\x18\x02 \x03(\t\x12\x10\n\x08notebook\x18\x03 \x01(\x08\x12\x15\n\rbuild_context\x18\x04 \x01(\t\x12\x12\n\ndockerfile\x18\x05 \x01(\t\"\x1c\n\x0bImageSource\x12\r\n\x05image\x18\x01 \x01(\t\"\x8c\x01\n\x06Source\x12&\n\x03git\x18\x01 \x01(\x0b\x32\x19.wandb_internal.GitSource\x12.\n\x08\x61rtifact\x18\x02 \x01(\x0b\x32\x1c.wandb_internal.ArtifactInfo\x12*\n\x05image\x18\x03 \x01(\x0b\x32\x1b.wandb_internal.ImageSource\"k\n\tJobSource\x12\x10\n\x08_version\x18\x01 \x01(\t\x12\x13\n\x0bsource_type\x18\x02 \x01(\t\x12&\n\x06source\x18\x03 \x01(\x0b\x32\x16.wandb_internal.Source\x12\x0f\n\x07runtime\x18\x04 \x01(\t\"V\n\x12PartialJobArtifact\x12\x10\n\x08job_name\x18\x01 \x01(\t\x12.\n\x0bsource_info\x18\x02 \x01(\x0b\x32\x19.wandb_internal.JobSource\"\x9d\x01\n\x11UseArtifactRecord\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04type\x18\x02 \x01(\t\x12\x0c\n\x04name\x18\x03 \x01(\t\x12\x33\n\x07partial\x18\x04 \x01(\x0b\x32\".wandb_internal.PartialJobArtifact\x12+\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1b.wandb_internal._RecordInfo\"\x13\n\x11UseArtifactResult\"R\n\rCancelRequest\x12\x13\n\x0b\x63\x61ncel_slot\x18\x01 \x01(\t\x12,\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1c.wandb_internal._RequestInfo\"\x10\n\x0e\x43\x61ncelResponse\"\x18\n\x16ProbeSystemInfoRequest\"\'\n\x08\x44iskInfo\x12\r\n\x05total\x18\x01 \x01(\x04\x12\x0c\n\x04used\x18\x02 \x01(\x04\"\x1b\n\nMemoryInfo\x12\r\n\x05total\x18\x01 \x01(\x04\"/\n\x07\x43puInfo\x12\r\n\x05\x63ount\x18\x01 \x01(\r\x12\x15\n\rcount_logical\x18\x02 \x01(\r\"\x9a\x01\n\tAppleInfo\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x12\n\necpu_cores\x18\x02 \x01(\r\x12\x12\n\npcpu_cores\x18\x03 \x01(\r\x12\x11\n\tgpu_cores\x18\x04 \x01(\r\x12\x11\n\tmemory_gb\x18\x05 \x01(\r\x12\x18\n\x10swap_total_bytes\x18\x06 \x01(\x04\x12\x17\n\x0fram_total_bytes\x18\x07 \x01(\x04\"k\n\rGpuNvidiaInfo\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x14\n\x0cmemory_total\x18\x02 \x01(\x04\x12\x12\n\ncuda_cores\x18\x03 \x01(\r\x12\x14\n\x0c\x61rchitecture\x18\x04 \x01(\t\x12\x0c\n\x04uuid\x18\x05 \x01(\t\"\x89\x02\n\nGpuAmdInfo\x12\n\n\x02id\x18\x01 \x01(\t\x12\x11\n\tunique_id\x18\x02 \x01(\t\x12\x15\n\rvbios_version\x18\x03 \x01(\t\x12\x19\n\x11performance_level\x18\x04 \x01(\t\x12\x15\n\rgpu_overdrive\x18\x05 \x01(\t\x12\x1c\n\x14gpu_memory_overdrive\x18\x06 \x01(\t\x12\x11\n\tmax_power\x18\x07 \x01(\t\x12\x0e\n\x06series\x18\x08 \x01(\t\x12\r\n\x05model\x18\t \x01(\t\x12\x0e\n\x06vendor\x18\n \x01(\t\x12\x0b\n\x03sku\x18\x0b \x01(\t\x12\x12\n\nsclk_range\x18\x0c \x01(\t\x12\x12\n\nmclk_range\x18\r \x01(\t\"n\n\x0cTrainiumInfo\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x0e\n\x06vendor\x18\x02 \x01(\t\x12\x1b\n\x13neuron_device_count\x18\x03 \x01(\r\x12#\n\x1bneuroncore_per_device_count\x18\x04 \x01(\r\"Q\n\x07TPUInfo\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x0f\n\x07hbm_gib\x18\x02 \x01(\r\x12\x18\n\x10\x64\x65vices_per_chip\x18\x03 \x01(\r\x12\r\n\x05\x63ount\x18\x04 \x01(\r\"E\n\rCoreWeaveInfo\x12\x14\n\x0c\x63luster_name\x18\x01 \x01(\t\x12\x0e\n\x06org_id\x18\x02 \x01(\t\x12\x0e\n\x06region\x18\x03 \x01(\t\"\xa8\t\n\x11\x45nvironmentRecord\x12\n\n\x02os\x18\x01 \x01(\t\x12\x0e\n\x06python\x18\x02 \x01(\t\x12\x39\n\nstarted_at\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tstartedAt\x12\x0e\n\x06\x64ocker\x18\x04 \x01(\t\x12\x0c\n\x04\x61rgs\x18\x05 \x03(\t\x12\x0f\n\x07program\x18\x06 \x01(\t\x12\x1b\n\tcode_path\x18\x07 \x01(\tR\x08\x63odePath\x12&\n\x0f\x63ode_path_local\x18\x08 \x01(\tR\rcodePathLocal\x12*\n\x03git\x18\t \x01(\x0b\x32\x1d.wandb_internal.GitRepoRecord\x12\r\n\x05\x65mail\x18\n \x01(\t\x12\x0c\n\x04root\x18\x0b \x01(\t\x12\x0c\n\x04host\x18\x0c \x01(\t\x12\x10\n\x08username\x18\r \x01(\t\x12\x12\n\nexecutable\x18\x0e \x01(\t\x12\r\n\x05\x63olab\x18\x0f \x01(\t\x12\x1c\n\tcpu_count\x18\x10 \x01(\rR\tcpu_count\x12,\n\x11\x63pu_count_logical\x18\x11 \x01(\rR\x11\x63pu_count_logical\x12\x15\n\x08gpu_type\x18\x12 \x01(\tR\x03gpu\x12\x1c\n\tgpu_count\x18\x13 \x01(\rR\tgpu_count\x12\x39\n\x04\x64isk\x18\x14 \x03(\x0b\x32+.wandb_internal.EnvironmentRecord.DiskEntry\x12*\n\x06memory\x18\x15 \x01(\x0b\x32\x1a.wandb_internal.MemoryInfo\x12$\n\x03\x63pu\x18\x16 \x01(\x0b\x32\x17.wandb_internal.CpuInfo\x12(\n\x05\x61pple\x18\x17 \x01(\x0b\x32\x19.wandb_internal.AppleInfo\x12=\n\ngpu_nvidia\x18\x18 \x03(\x0b\x32\x1d.wandb_internal.GpuNvidiaInfoR\ngpu_nvidia\x12\x14\n\x0c\x63uda_version\x18\x19 \x01(\t\x12\x34\n\x07gpu_amd\x18\x1a \x03(\x0b\x32\x1a.wandb_internal.GpuAmdInfoR\x07gpu_amd\x12;\n\x05slurm\x18\x1b \x03(\x0b\x32,.wandb_internal.EnvironmentRecord.SlurmEntry\x12.\n\x08trainium\x18\x1c \x01(\x0b\x32\x1c.wandb_internal.TrainiumInfo\x12$\n\x03tpu\x18\x1d \x01(\x0b\x32\x17.wandb_internal.TPUInfo\x12\x30\n\tcoreweave\x18\x1e \x01(\x0b\x32\x1d.wandb_internal.CoreWeaveInfo\x12\x12\n\twriter_id\x18\xc7\x01 \x01(\t\x12+\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1b.wandb_internal._RecordInfo\x1a\x45\n\tDiskEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\'\n\x05value\x18\x02 \x01(\x0b\x32\x18.wandb_internal.DiskInfo:\x02\x38\x01\x1a,\n\nSlurmEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\x8d\x01\n\x15PythonPackagesRequest\x12\x44\n\x07package\x18\x01 \x03(\x0b\x32\x33.wandb_internal.PythonPackagesRequest.PythonPackage\x1a.\n\rPythonPackage\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x0f\n\x07version\x18\x02 \x01(\t\"\x1c\n\x0cJobInputPath\x12\x0c\n\x04path\x18\x01 \x03(\t\"\xd6\x01\n\x0eJobInputSource\x12\x44\n\nrun_config\x18\x01 \x01(\x0b\x32..wandb_internal.JobInputSource.RunConfigSourceH\x00\x12?\n\x04\x66ile\x18\x02 \x01(\x0b\x32/.wandb_internal.JobInputSource.ConfigFileSourceH\x00\x1a\x11\n\x0fRunConfigSource\x1a \n\x10\x43onfigFileSource\x12\x0c\n\x04path\x18\x01 \x01(\tB\x08\n\x06source\"\xc7\x01\n\x0fJobInputRequest\x12\x34\n\x0cinput_source\x18\x01 \x01(\x0b\x32\x1e.wandb_internal.JobInputSource\x12\x33\n\rinclude_paths\x18\x02 \x03(\x0b\x32\x1c.wandb_internal.JobInputPath\x12\x33\n\rexclude_paths\x18\x03 \x03(\x0b\x32\x1c.wandb_internal.JobInputPath\x12\x14\n\x0cinput_schema\x18\x04 \x01(\t\"t\n\x14ServerFeatureRequest\x12.\n\x07\x66\x65\x61ture\x18\x01 \x01(\x0e\x32\x1d.wandb_internal.ServerFeature\x12,\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1c.wandb_internal._RequestInfo\"K\n\x15ServerFeatureResponse\x12\x32\n\x07\x66\x65\x61ture\x18\x01 \x01(\x0b\x32!.wandb_internal.ServerFeatureItem\"2\n\x11ServerFeatureItem\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x0f\n\x07\x65nabled\x18\x02 \x01(\x08*\xb3\x04\n\rServerFeature\x12\x13\n\x0fLARGE_FILENAMES\x10\x00\x12\x11\n\rARTIFACT_TAGS\x10\x01\x12\x0e\n\nCLIENT_IDS\x10\x02\x12\x1c\n\x18\x41RTIFACT_REGISTRY_SEARCH\x10\x03\x12\x1b\n\x17STRUCTURED_CONSOLE_LOGS\x10\x04\x12(\n$ARTIFACT_COLLECTION_MEMBERSHIP_FILES\x10\x05\x12\x38\n4ARTIFACT_COLLECTION_MEMBERSHIP_FILE_DOWNLOAD_HANDLER\x10\x06\x12\x34\n0USE_ARTIFACT_WITH_ENTITY_AND_PROJECT_INFORMATION\x10\x07\x12\x1f\n\x1b\x45XPAND_DEFINED_METRIC_GLOBS\x10\x08\x12\x1f\n\x1b\x41UTOMATION_EVENT_RUN_METRIC\x10\t\x12&\n\"AUTOMATION_EVENT_RUN_METRIC_CHANGE\x10\n\x12\x1b\n\x17\x41UTOMATION_ACTION_NO_OP\x10\x0b\x12/\n+INCLUDE_ARTIFACT_TYPES_IN_REGISTRY_CREATION\x10\x0c\x12*\n&PROJECT_ARTIFACT_COLLECTION_MEMBERSHIP\x10\r\x12\x31\n-ARTIFACT_MEMBERSHIP_IN_LINK_ARTIFACT_RESPONSE\x10\x0e\x42\x1bZ\x19\x63ore/pkg/service_go_protob\x06proto3')
23
+
24
+ _SERVERFEATURE = DESCRIPTOR.enum_types_by_name['ServerFeature']
25
+ ServerFeature = enum_type_wrapper.EnumTypeWrapper(_SERVERFEATURE)
26
+ LARGE_FILENAMES = 0
27
+ ARTIFACT_TAGS = 1
28
+ CLIENT_IDS = 2
29
+ ARTIFACT_REGISTRY_SEARCH = 3
30
+ STRUCTURED_CONSOLE_LOGS = 4
31
+ ARTIFACT_COLLECTION_MEMBERSHIP_FILES = 5
32
+ ARTIFACT_COLLECTION_MEMBERSHIP_FILE_DOWNLOAD_HANDLER = 6
33
+ USE_ARTIFACT_WITH_ENTITY_AND_PROJECT_INFORMATION = 7
34
+ EXPAND_DEFINED_METRIC_GLOBS = 8
35
+ AUTOMATION_EVENT_RUN_METRIC = 9
36
+ AUTOMATION_EVENT_RUN_METRIC_CHANGE = 10
37
+ AUTOMATION_ACTION_NO_OP = 11
38
+ INCLUDE_ARTIFACT_TYPES_IN_REGISTRY_CREATION = 12
39
+ PROJECT_ARTIFACT_COLLECTION_MEMBERSHIP = 13
40
+ ARTIFACT_MEMBERSHIP_IN_LINK_ARTIFACT_RESPONSE = 14
41
+
42
+
43
+ _RECORD = DESCRIPTOR.message_types_by_name['Record']
44
+ _CONTROL = DESCRIPTOR.message_types_by_name['Control']
45
+ _RESULT = DESCRIPTOR.message_types_by_name['Result']
46
+ _FINALRECORD = DESCRIPTOR.message_types_by_name['FinalRecord']
47
+ _VERSIONINFO = DESCRIPTOR.message_types_by_name['VersionInfo']
48
+ _HEADERRECORD = DESCRIPTOR.message_types_by_name['HeaderRecord']
49
+ _FOOTERRECORD = DESCRIPTOR.message_types_by_name['FooterRecord']
50
+ _BRANCHPOINT = DESCRIPTOR.message_types_by_name['BranchPoint']
51
+ _RUNRECORD = DESCRIPTOR.message_types_by_name['RunRecord']
52
+ _GITREPORECORD = DESCRIPTOR.message_types_by_name['GitRepoRecord']
53
+ _RUNUPDATERESULT = DESCRIPTOR.message_types_by_name['RunUpdateResult']
54
+ _ERRORINFO = DESCRIPTOR.message_types_by_name['ErrorInfo']
55
+ _RUNEXITRECORD = DESCRIPTOR.message_types_by_name['RunExitRecord']
56
+ _RUNEXITRESULT = DESCRIPTOR.message_types_by_name['RunExitResult']
57
+ _RUNPREEMPTINGRECORD = DESCRIPTOR.message_types_by_name['RunPreemptingRecord']
58
+ _RUNPREEMPTINGRESULT = DESCRIPTOR.message_types_by_name['RunPreemptingResult']
59
+ _SETTINGSRECORD = DESCRIPTOR.message_types_by_name['SettingsRecord']
60
+ _SETTINGSITEM = DESCRIPTOR.message_types_by_name['SettingsItem']
61
+ _HISTORYSTEP = DESCRIPTOR.message_types_by_name['HistoryStep']
62
+ _HISTORYRECORD = DESCRIPTOR.message_types_by_name['HistoryRecord']
63
+ _HISTORYITEM = DESCRIPTOR.message_types_by_name['HistoryItem']
64
+ _HISTORYRESULT = DESCRIPTOR.message_types_by_name['HistoryResult']
65
+ _OUTPUTRECORD = DESCRIPTOR.message_types_by_name['OutputRecord']
66
+ _OUTPUTRESULT = DESCRIPTOR.message_types_by_name['OutputResult']
67
+ _OUTPUTRAWRECORD = DESCRIPTOR.message_types_by_name['OutputRawRecord']
68
+ _OUTPUTRAWRESULT = DESCRIPTOR.message_types_by_name['OutputRawResult']
69
+ _METRICRECORD = DESCRIPTOR.message_types_by_name['MetricRecord']
70
+ _METRICRESULT = DESCRIPTOR.message_types_by_name['MetricResult']
71
+ _METRICOPTIONS = DESCRIPTOR.message_types_by_name['MetricOptions']
72
+ _METRICCONTROL = DESCRIPTOR.message_types_by_name['MetricControl']
73
+ _METRICSUMMARY = DESCRIPTOR.message_types_by_name['MetricSummary']
74
+ _CONFIGRECORD = DESCRIPTOR.message_types_by_name['ConfigRecord']
75
+ _CONFIGITEM = DESCRIPTOR.message_types_by_name['ConfigItem']
76
+ _CONFIGRESULT = DESCRIPTOR.message_types_by_name['ConfigResult']
77
+ _SUMMARYRECORD = DESCRIPTOR.message_types_by_name['SummaryRecord']
78
+ _SUMMARYITEM = DESCRIPTOR.message_types_by_name['SummaryItem']
79
+ _SUMMARYRESULT = DESCRIPTOR.message_types_by_name['SummaryResult']
80
+ _FILESRECORD = DESCRIPTOR.message_types_by_name['FilesRecord']
81
+ _FILESITEM = DESCRIPTOR.message_types_by_name['FilesItem']
82
+ _FILESRESULT = DESCRIPTOR.message_types_by_name['FilesResult']
83
+ _STATSRECORD = DESCRIPTOR.message_types_by_name['StatsRecord']
84
+ _STATSITEM = DESCRIPTOR.message_types_by_name['StatsItem']
85
+ _ARTIFACTRECORD = DESCRIPTOR.message_types_by_name['ArtifactRecord']
86
+ _ARTIFACTMANIFEST = DESCRIPTOR.message_types_by_name['ArtifactManifest']
87
+ _ARTIFACTMANIFESTENTRY = DESCRIPTOR.message_types_by_name['ArtifactManifestEntry']
88
+ _EXTRAITEM = DESCRIPTOR.message_types_by_name['ExtraItem']
89
+ _STORAGEPOLICYCONFIGITEM = DESCRIPTOR.message_types_by_name['StoragePolicyConfigItem']
90
+ _ARTIFACTRESULT = DESCRIPTOR.message_types_by_name['ArtifactResult']
91
+ _LINKARTIFACTRESULT = DESCRIPTOR.message_types_by_name['LinkArtifactResult']
92
+ _LINKARTIFACTREQUEST = DESCRIPTOR.message_types_by_name['LinkArtifactRequest']
93
+ _LINKARTIFACTRESPONSE = DESCRIPTOR.message_types_by_name['LinkArtifactResponse']
94
+ _TBRECORD = DESCRIPTOR.message_types_by_name['TBRecord']
95
+ _TBRESULT = DESCRIPTOR.message_types_by_name['TBResult']
96
+ _ALERTRECORD = DESCRIPTOR.message_types_by_name['AlertRecord']
97
+ _ALERTRESULT = DESCRIPTOR.message_types_by_name['AlertResult']
98
+ _REQUEST = DESCRIPTOR.message_types_by_name['Request']
99
+ _RESPONSE = DESCRIPTOR.message_types_by_name['Response']
100
+ _DEFERREQUEST = DESCRIPTOR.message_types_by_name['DeferRequest']
101
+ _PAUSEREQUEST = DESCRIPTOR.message_types_by_name['PauseRequest']
102
+ _PAUSERESPONSE = DESCRIPTOR.message_types_by_name['PauseResponse']
103
+ _RESUMEREQUEST = DESCRIPTOR.message_types_by_name['ResumeRequest']
104
+ _RESUMERESPONSE = DESCRIPTOR.message_types_by_name['ResumeResponse']
105
+ _LOGINREQUEST = DESCRIPTOR.message_types_by_name['LoginRequest']
106
+ _LOGINRESPONSE = DESCRIPTOR.message_types_by_name['LoginResponse']
107
+ _GETSUMMARYREQUEST = DESCRIPTOR.message_types_by_name['GetSummaryRequest']
108
+ _GETSUMMARYRESPONSE = DESCRIPTOR.message_types_by_name['GetSummaryResponse']
109
+ _GETSYSTEMMETRICSREQUEST = DESCRIPTOR.message_types_by_name['GetSystemMetricsRequest']
110
+ _SYSTEMMETRICSAMPLE = DESCRIPTOR.message_types_by_name['SystemMetricSample']
111
+ _SYSTEMMETRICSBUFFER = DESCRIPTOR.message_types_by_name['SystemMetricsBuffer']
112
+ _GETSYSTEMMETRICSRESPONSE = DESCRIPTOR.message_types_by_name['GetSystemMetricsResponse']
113
+ _GETSYSTEMMETRICSRESPONSE_SYSTEMMETRICSENTRY = _GETSYSTEMMETRICSRESPONSE.nested_types_by_name['SystemMetricsEntry']
114
+ _STATUSREQUEST = DESCRIPTOR.message_types_by_name['StatusRequest']
115
+ _STATUSRESPONSE = DESCRIPTOR.message_types_by_name['StatusResponse']
116
+ _STOPSTATUSREQUEST = DESCRIPTOR.message_types_by_name['StopStatusRequest']
117
+ _STOPSTATUSRESPONSE = DESCRIPTOR.message_types_by_name['StopStatusResponse']
118
+ _NETWORKSTATUSREQUEST = DESCRIPTOR.message_types_by_name['NetworkStatusRequest']
119
+ _NETWORKSTATUSRESPONSE = DESCRIPTOR.message_types_by_name['NetworkStatusResponse']
120
+ _HTTPRESPONSE = DESCRIPTOR.message_types_by_name['HttpResponse']
121
+ _INTERNALMESSAGESREQUEST = DESCRIPTOR.message_types_by_name['InternalMessagesRequest']
122
+ _INTERNALMESSAGESRESPONSE = DESCRIPTOR.message_types_by_name['InternalMessagesResponse']
123
+ _INTERNALMESSAGES = DESCRIPTOR.message_types_by_name['InternalMessages']
124
+ _POLLEXITREQUEST = DESCRIPTOR.message_types_by_name['PollExitRequest']
125
+ _POLLEXITRESPONSE = DESCRIPTOR.message_types_by_name['PollExitResponse']
126
+ _OPERATIONSTATSREQUEST = DESCRIPTOR.message_types_by_name['OperationStatsRequest']
127
+ _OPERATIONSTATSRESPONSE = DESCRIPTOR.message_types_by_name['OperationStatsResponse']
128
+ _OPERATIONSTATS = DESCRIPTOR.message_types_by_name['OperationStats']
129
+ _OPERATION = DESCRIPTOR.message_types_by_name['Operation']
130
+ _SENDERMARKREQUEST = DESCRIPTOR.message_types_by_name['SenderMarkRequest']
131
+ _SYNCFINISHREQUEST = DESCRIPTOR.message_types_by_name['SyncFinishRequest']
132
+ _SYNCRESPONSE = DESCRIPTOR.message_types_by_name['SyncResponse']
133
+ _SENDERREADREQUEST = DESCRIPTOR.message_types_by_name['SenderReadRequest']
134
+ _STATUSREPORTREQUEST = DESCRIPTOR.message_types_by_name['StatusReportRequest']
135
+ _SUMMARYRECORDREQUEST = DESCRIPTOR.message_types_by_name['SummaryRecordRequest']
136
+ _TELEMETRYRECORDREQUEST = DESCRIPTOR.message_types_by_name['TelemetryRecordRequest']
137
+ _SERVERINFOREQUEST = DESCRIPTOR.message_types_by_name['ServerInfoRequest']
138
+ _SERVERINFORESPONSE = DESCRIPTOR.message_types_by_name['ServerInfoResponse']
139
+ _SERVERMESSAGES = DESCRIPTOR.message_types_by_name['ServerMessages']
140
+ _SERVERMESSAGE = DESCRIPTOR.message_types_by_name['ServerMessage']
141
+ _FILECOUNTS = DESCRIPTOR.message_types_by_name['FileCounts']
142
+ _FILEPUSHERSTATS = DESCRIPTOR.message_types_by_name['FilePusherStats']
143
+ _FILESUPLOADED = DESCRIPTOR.message_types_by_name['FilesUploaded']
144
+ _FILETRANSFERINFOREQUEST = DESCRIPTOR.message_types_by_name['FileTransferInfoRequest']
145
+ _LOCALINFO = DESCRIPTOR.message_types_by_name['LocalInfo']
146
+ _SHUTDOWNREQUEST = DESCRIPTOR.message_types_by_name['ShutdownRequest']
147
+ _SHUTDOWNRESPONSE = DESCRIPTOR.message_types_by_name['ShutdownResponse']
148
+ _ATTACHREQUEST = DESCRIPTOR.message_types_by_name['AttachRequest']
149
+ _ATTACHRESPONSE = DESCRIPTOR.message_types_by_name['AttachResponse']
150
+ _TESTINJECTREQUEST = DESCRIPTOR.message_types_by_name['TestInjectRequest']
151
+ _TESTINJECTRESPONSE = DESCRIPTOR.message_types_by_name['TestInjectResponse']
152
+ _HISTORYACTION = DESCRIPTOR.message_types_by_name['HistoryAction']
153
+ _PARTIALHISTORYREQUEST = DESCRIPTOR.message_types_by_name['PartialHistoryRequest']
154
+ _PARTIALHISTORYRESPONSE = DESCRIPTOR.message_types_by_name['PartialHistoryResponse']
155
+ _SAMPLEDHISTORYREQUEST = DESCRIPTOR.message_types_by_name['SampledHistoryRequest']
156
+ _SAMPLEDHISTORYITEM = DESCRIPTOR.message_types_by_name['SampledHistoryItem']
157
+ _SAMPLEDHISTORYRESPONSE = DESCRIPTOR.message_types_by_name['SampledHistoryResponse']
158
+ _RUNSTATUSREQUEST = DESCRIPTOR.message_types_by_name['RunStatusRequest']
159
+ _RUNSTATUSRESPONSE = DESCRIPTOR.message_types_by_name['RunStatusResponse']
160
+ _RUNSTARTREQUEST = DESCRIPTOR.message_types_by_name['RunStartRequest']
161
+ _RUNSTARTRESPONSE = DESCRIPTOR.message_types_by_name['RunStartResponse']
162
+ _RUNFINISHWITHOUTEXITREQUEST = DESCRIPTOR.message_types_by_name['RunFinishWithoutExitRequest']
163
+ _RUNFINISHWITHOUTEXITRESPONSE = DESCRIPTOR.message_types_by_name['RunFinishWithoutExitResponse']
164
+ _CHECKVERSIONREQUEST = DESCRIPTOR.message_types_by_name['CheckVersionRequest']
165
+ _CHECKVERSIONRESPONSE = DESCRIPTOR.message_types_by_name['CheckVersionResponse']
166
+ _JOBINFOREQUEST = DESCRIPTOR.message_types_by_name['JobInfoRequest']
167
+ _JOBINFORESPONSE = DESCRIPTOR.message_types_by_name['JobInfoResponse']
168
+ _LOGARTIFACTREQUEST = DESCRIPTOR.message_types_by_name['LogArtifactRequest']
169
+ _LOGARTIFACTRESPONSE = DESCRIPTOR.message_types_by_name['LogArtifactResponse']
170
+ _DOWNLOADARTIFACTREQUEST = DESCRIPTOR.message_types_by_name['DownloadArtifactRequest']
171
+ _DOWNLOADARTIFACTRESPONSE = DESCRIPTOR.message_types_by_name['DownloadArtifactResponse']
172
+ _KEEPALIVEREQUEST = DESCRIPTOR.message_types_by_name['KeepaliveRequest']
173
+ _KEEPALIVERESPONSE = DESCRIPTOR.message_types_by_name['KeepaliveResponse']
174
+ _ARTIFACTINFO = DESCRIPTOR.message_types_by_name['ArtifactInfo']
175
+ _GITINFO = DESCRIPTOR.message_types_by_name['GitInfo']
176
+ _GITSOURCE = DESCRIPTOR.message_types_by_name['GitSource']
177
+ _IMAGESOURCE = DESCRIPTOR.message_types_by_name['ImageSource']
178
+ _SOURCE = DESCRIPTOR.message_types_by_name['Source']
179
+ _JOBSOURCE = DESCRIPTOR.message_types_by_name['JobSource']
180
+ _PARTIALJOBARTIFACT = DESCRIPTOR.message_types_by_name['PartialJobArtifact']
181
+ _USEARTIFACTRECORD = DESCRIPTOR.message_types_by_name['UseArtifactRecord']
182
+ _USEARTIFACTRESULT = DESCRIPTOR.message_types_by_name['UseArtifactResult']
183
+ _CANCELREQUEST = DESCRIPTOR.message_types_by_name['CancelRequest']
184
+ _CANCELRESPONSE = DESCRIPTOR.message_types_by_name['CancelResponse']
185
+ _PROBESYSTEMINFOREQUEST = DESCRIPTOR.message_types_by_name['ProbeSystemInfoRequest']
186
+ _DISKINFO = DESCRIPTOR.message_types_by_name['DiskInfo']
187
+ _MEMORYINFO = DESCRIPTOR.message_types_by_name['MemoryInfo']
188
+ _CPUINFO = DESCRIPTOR.message_types_by_name['CpuInfo']
189
+ _APPLEINFO = DESCRIPTOR.message_types_by_name['AppleInfo']
190
+ _GPUNVIDIAINFO = DESCRIPTOR.message_types_by_name['GpuNvidiaInfo']
191
+ _GPUAMDINFO = DESCRIPTOR.message_types_by_name['GpuAmdInfo']
192
+ _TRAINIUMINFO = DESCRIPTOR.message_types_by_name['TrainiumInfo']
193
+ _TPUINFO = DESCRIPTOR.message_types_by_name['TPUInfo']
194
+ _COREWEAVEINFO = DESCRIPTOR.message_types_by_name['CoreWeaveInfo']
195
+ _ENVIRONMENTRECORD = DESCRIPTOR.message_types_by_name['EnvironmentRecord']
196
+ _ENVIRONMENTRECORD_DISKENTRY = _ENVIRONMENTRECORD.nested_types_by_name['DiskEntry']
197
+ _ENVIRONMENTRECORD_SLURMENTRY = _ENVIRONMENTRECORD.nested_types_by_name['SlurmEntry']
198
+ _PYTHONPACKAGESREQUEST = DESCRIPTOR.message_types_by_name['PythonPackagesRequest']
199
+ _PYTHONPACKAGESREQUEST_PYTHONPACKAGE = _PYTHONPACKAGESREQUEST.nested_types_by_name['PythonPackage']
200
+ _JOBINPUTPATH = DESCRIPTOR.message_types_by_name['JobInputPath']
201
+ _JOBINPUTSOURCE = DESCRIPTOR.message_types_by_name['JobInputSource']
202
+ _JOBINPUTSOURCE_RUNCONFIGSOURCE = _JOBINPUTSOURCE.nested_types_by_name['RunConfigSource']
203
+ _JOBINPUTSOURCE_CONFIGFILESOURCE = _JOBINPUTSOURCE.nested_types_by_name['ConfigFileSource']
204
+ _JOBINPUTREQUEST = DESCRIPTOR.message_types_by_name['JobInputRequest']
205
+ _SERVERFEATUREREQUEST = DESCRIPTOR.message_types_by_name['ServerFeatureRequest']
206
+ _SERVERFEATURERESPONSE = DESCRIPTOR.message_types_by_name['ServerFeatureResponse']
207
+ _SERVERFEATUREITEM = DESCRIPTOR.message_types_by_name['ServerFeatureItem']
208
+ _ERRORINFO_ERRORCODE = _ERRORINFO.enum_types_by_name['ErrorCode']
209
+ _OUTPUTRECORD_OUTPUTTYPE = _OUTPUTRECORD.enum_types_by_name['OutputType']
210
+ _OUTPUTRAWRECORD_OUTPUTTYPE = _OUTPUTRAWRECORD.enum_types_by_name['OutputType']
211
+ _METRICRECORD_METRICGOAL = _METRICRECORD.enum_types_by_name['MetricGoal']
212
+ _FILESITEM_POLICYTYPE = _FILESITEM.enum_types_by_name['PolicyType']
213
+ _FILESITEM_FILETYPE = _FILESITEM.enum_types_by_name['FileType']
214
+ _STATSRECORD_STATSTYPE = _STATSRECORD.enum_types_by_name['StatsType']
215
+ _DEFERREQUEST_DEFERSTATE = _DEFERREQUEST.enum_types_by_name['DeferState']
216
+ _FILETRANSFERINFOREQUEST_TRANSFERTYPE = _FILETRANSFERINFOREQUEST.enum_types_by_name['TransferType']
217
+ Record = _reflection.GeneratedProtocolMessageType('Record', (_message.Message,), {
218
+ 'DESCRIPTOR' : _RECORD,
219
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
220
+ # @@protoc_insertion_point(class_scope:wandb_internal.Record)
221
+ })
222
+ _sym_db.RegisterMessage(Record)
223
+
224
+ Control = _reflection.GeneratedProtocolMessageType('Control', (_message.Message,), {
225
+ 'DESCRIPTOR' : _CONTROL,
226
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
227
+ # @@protoc_insertion_point(class_scope:wandb_internal.Control)
228
+ })
229
+ _sym_db.RegisterMessage(Control)
230
+
231
+ Result = _reflection.GeneratedProtocolMessageType('Result', (_message.Message,), {
232
+ 'DESCRIPTOR' : _RESULT,
233
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
234
+ # @@protoc_insertion_point(class_scope:wandb_internal.Result)
235
+ })
236
+ _sym_db.RegisterMessage(Result)
237
+
238
+ FinalRecord = _reflection.GeneratedProtocolMessageType('FinalRecord', (_message.Message,), {
239
+ 'DESCRIPTOR' : _FINALRECORD,
240
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
241
+ # @@protoc_insertion_point(class_scope:wandb_internal.FinalRecord)
242
+ })
243
+ _sym_db.RegisterMessage(FinalRecord)
244
+
245
+ VersionInfo = _reflection.GeneratedProtocolMessageType('VersionInfo', (_message.Message,), {
246
+ 'DESCRIPTOR' : _VERSIONINFO,
247
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
248
+ # @@protoc_insertion_point(class_scope:wandb_internal.VersionInfo)
249
+ })
250
+ _sym_db.RegisterMessage(VersionInfo)
251
+
252
+ HeaderRecord = _reflection.GeneratedProtocolMessageType('HeaderRecord', (_message.Message,), {
253
+ 'DESCRIPTOR' : _HEADERRECORD,
254
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
255
+ # @@protoc_insertion_point(class_scope:wandb_internal.HeaderRecord)
256
+ })
257
+ _sym_db.RegisterMessage(HeaderRecord)
258
+
259
+ FooterRecord = _reflection.GeneratedProtocolMessageType('FooterRecord', (_message.Message,), {
260
+ 'DESCRIPTOR' : _FOOTERRECORD,
261
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
262
+ # @@protoc_insertion_point(class_scope:wandb_internal.FooterRecord)
263
+ })
264
+ _sym_db.RegisterMessage(FooterRecord)
265
+
266
+ BranchPoint = _reflection.GeneratedProtocolMessageType('BranchPoint', (_message.Message,), {
267
+ 'DESCRIPTOR' : _BRANCHPOINT,
268
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
269
+ # @@protoc_insertion_point(class_scope:wandb_internal.BranchPoint)
270
+ })
271
+ _sym_db.RegisterMessage(BranchPoint)
272
+
273
+ RunRecord = _reflection.GeneratedProtocolMessageType('RunRecord', (_message.Message,), {
274
+ 'DESCRIPTOR' : _RUNRECORD,
275
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
276
+ # @@protoc_insertion_point(class_scope:wandb_internal.RunRecord)
277
+ })
278
+ _sym_db.RegisterMessage(RunRecord)
279
+
280
+ GitRepoRecord = _reflection.GeneratedProtocolMessageType('GitRepoRecord', (_message.Message,), {
281
+ 'DESCRIPTOR' : _GITREPORECORD,
282
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
283
+ # @@protoc_insertion_point(class_scope:wandb_internal.GitRepoRecord)
284
+ })
285
+ _sym_db.RegisterMessage(GitRepoRecord)
286
+
287
+ RunUpdateResult = _reflection.GeneratedProtocolMessageType('RunUpdateResult', (_message.Message,), {
288
+ 'DESCRIPTOR' : _RUNUPDATERESULT,
289
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
290
+ # @@protoc_insertion_point(class_scope:wandb_internal.RunUpdateResult)
291
+ })
292
+ _sym_db.RegisterMessage(RunUpdateResult)
293
+
294
+ ErrorInfo = _reflection.GeneratedProtocolMessageType('ErrorInfo', (_message.Message,), {
295
+ 'DESCRIPTOR' : _ERRORINFO,
296
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
297
+ # @@protoc_insertion_point(class_scope:wandb_internal.ErrorInfo)
298
+ })
299
+ _sym_db.RegisterMessage(ErrorInfo)
300
+
301
+ RunExitRecord = _reflection.GeneratedProtocolMessageType('RunExitRecord', (_message.Message,), {
302
+ 'DESCRIPTOR' : _RUNEXITRECORD,
303
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
304
+ # @@protoc_insertion_point(class_scope:wandb_internal.RunExitRecord)
305
+ })
306
+ _sym_db.RegisterMessage(RunExitRecord)
307
+
308
+ RunExitResult = _reflection.GeneratedProtocolMessageType('RunExitResult', (_message.Message,), {
309
+ 'DESCRIPTOR' : _RUNEXITRESULT,
310
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
311
+ # @@protoc_insertion_point(class_scope:wandb_internal.RunExitResult)
312
+ })
313
+ _sym_db.RegisterMessage(RunExitResult)
314
+
315
+ RunPreemptingRecord = _reflection.GeneratedProtocolMessageType('RunPreemptingRecord', (_message.Message,), {
316
+ 'DESCRIPTOR' : _RUNPREEMPTINGRECORD,
317
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
318
+ # @@protoc_insertion_point(class_scope:wandb_internal.RunPreemptingRecord)
319
+ })
320
+ _sym_db.RegisterMessage(RunPreemptingRecord)
321
+
322
+ RunPreemptingResult = _reflection.GeneratedProtocolMessageType('RunPreemptingResult', (_message.Message,), {
323
+ 'DESCRIPTOR' : _RUNPREEMPTINGRESULT,
324
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
325
+ # @@protoc_insertion_point(class_scope:wandb_internal.RunPreemptingResult)
326
+ })
327
+ _sym_db.RegisterMessage(RunPreemptingResult)
328
+
329
+ SettingsRecord = _reflection.GeneratedProtocolMessageType('SettingsRecord', (_message.Message,), {
330
+ 'DESCRIPTOR' : _SETTINGSRECORD,
331
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
332
+ # @@protoc_insertion_point(class_scope:wandb_internal.SettingsRecord)
333
+ })
334
+ _sym_db.RegisterMessage(SettingsRecord)
335
+
336
+ SettingsItem = _reflection.GeneratedProtocolMessageType('SettingsItem', (_message.Message,), {
337
+ 'DESCRIPTOR' : _SETTINGSITEM,
338
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
339
+ # @@protoc_insertion_point(class_scope:wandb_internal.SettingsItem)
340
+ })
341
+ _sym_db.RegisterMessage(SettingsItem)
342
+
343
+ HistoryStep = _reflection.GeneratedProtocolMessageType('HistoryStep', (_message.Message,), {
344
+ 'DESCRIPTOR' : _HISTORYSTEP,
345
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
346
+ # @@protoc_insertion_point(class_scope:wandb_internal.HistoryStep)
347
+ })
348
+ _sym_db.RegisterMessage(HistoryStep)
349
+
350
+ HistoryRecord = _reflection.GeneratedProtocolMessageType('HistoryRecord', (_message.Message,), {
351
+ 'DESCRIPTOR' : _HISTORYRECORD,
352
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
353
+ # @@protoc_insertion_point(class_scope:wandb_internal.HistoryRecord)
354
+ })
355
+ _sym_db.RegisterMessage(HistoryRecord)
356
+
357
+ HistoryItem = _reflection.GeneratedProtocolMessageType('HistoryItem', (_message.Message,), {
358
+ 'DESCRIPTOR' : _HISTORYITEM,
359
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
360
+ # @@protoc_insertion_point(class_scope:wandb_internal.HistoryItem)
361
+ })
362
+ _sym_db.RegisterMessage(HistoryItem)
363
+
364
+ HistoryResult = _reflection.GeneratedProtocolMessageType('HistoryResult', (_message.Message,), {
365
+ 'DESCRIPTOR' : _HISTORYRESULT,
366
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
367
+ # @@protoc_insertion_point(class_scope:wandb_internal.HistoryResult)
368
+ })
369
+ _sym_db.RegisterMessage(HistoryResult)
370
+
371
+ OutputRecord = _reflection.GeneratedProtocolMessageType('OutputRecord', (_message.Message,), {
372
+ 'DESCRIPTOR' : _OUTPUTRECORD,
373
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
374
+ # @@protoc_insertion_point(class_scope:wandb_internal.OutputRecord)
375
+ })
376
+ _sym_db.RegisterMessage(OutputRecord)
377
+
378
+ OutputResult = _reflection.GeneratedProtocolMessageType('OutputResult', (_message.Message,), {
379
+ 'DESCRIPTOR' : _OUTPUTRESULT,
380
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
381
+ # @@protoc_insertion_point(class_scope:wandb_internal.OutputResult)
382
+ })
383
+ _sym_db.RegisterMessage(OutputResult)
384
+
385
+ OutputRawRecord = _reflection.GeneratedProtocolMessageType('OutputRawRecord', (_message.Message,), {
386
+ 'DESCRIPTOR' : _OUTPUTRAWRECORD,
387
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
388
+ # @@protoc_insertion_point(class_scope:wandb_internal.OutputRawRecord)
389
+ })
390
+ _sym_db.RegisterMessage(OutputRawRecord)
391
+
392
+ OutputRawResult = _reflection.GeneratedProtocolMessageType('OutputRawResult', (_message.Message,), {
393
+ 'DESCRIPTOR' : _OUTPUTRAWRESULT,
394
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
395
+ # @@protoc_insertion_point(class_scope:wandb_internal.OutputRawResult)
396
+ })
397
+ _sym_db.RegisterMessage(OutputRawResult)
398
+
399
+ MetricRecord = _reflection.GeneratedProtocolMessageType('MetricRecord', (_message.Message,), {
400
+ 'DESCRIPTOR' : _METRICRECORD,
401
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
402
+ # @@protoc_insertion_point(class_scope:wandb_internal.MetricRecord)
403
+ })
404
+ _sym_db.RegisterMessage(MetricRecord)
405
+
406
+ MetricResult = _reflection.GeneratedProtocolMessageType('MetricResult', (_message.Message,), {
407
+ 'DESCRIPTOR' : _METRICRESULT,
408
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
409
+ # @@protoc_insertion_point(class_scope:wandb_internal.MetricResult)
410
+ })
411
+ _sym_db.RegisterMessage(MetricResult)
412
+
413
+ MetricOptions = _reflection.GeneratedProtocolMessageType('MetricOptions', (_message.Message,), {
414
+ 'DESCRIPTOR' : _METRICOPTIONS,
415
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
416
+ # @@protoc_insertion_point(class_scope:wandb_internal.MetricOptions)
417
+ })
418
+ _sym_db.RegisterMessage(MetricOptions)
419
+
420
+ MetricControl = _reflection.GeneratedProtocolMessageType('MetricControl', (_message.Message,), {
421
+ 'DESCRIPTOR' : _METRICCONTROL,
422
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
423
+ # @@protoc_insertion_point(class_scope:wandb_internal.MetricControl)
424
+ })
425
+ _sym_db.RegisterMessage(MetricControl)
426
+
427
+ MetricSummary = _reflection.GeneratedProtocolMessageType('MetricSummary', (_message.Message,), {
428
+ 'DESCRIPTOR' : _METRICSUMMARY,
429
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
430
+ # @@protoc_insertion_point(class_scope:wandb_internal.MetricSummary)
431
+ })
432
+ _sym_db.RegisterMessage(MetricSummary)
433
+
434
+ ConfigRecord = _reflection.GeneratedProtocolMessageType('ConfigRecord', (_message.Message,), {
435
+ 'DESCRIPTOR' : _CONFIGRECORD,
436
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
437
+ # @@protoc_insertion_point(class_scope:wandb_internal.ConfigRecord)
438
+ })
439
+ _sym_db.RegisterMessage(ConfigRecord)
440
+
441
+ ConfigItem = _reflection.GeneratedProtocolMessageType('ConfigItem', (_message.Message,), {
442
+ 'DESCRIPTOR' : _CONFIGITEM,
443
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
444
+ # @@protoc_insertion_point(class_scope:wandb_internal.ConfigItem)
445
+ })
446
+ _sym_db.RegisterMessage(ConfigItem)
447
+
448
+ ConfigResult = _reflection.GeneratedProtocolMessageType('ConfigResult', (_message.Message,), {
449
+ 'DESCRIPTOR' : _CONFIGRESULT,
450
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
451
+ # @@protoc_insertion_point(class_scope:wandb_internal.ConfigResult)
452
+ })
453
+ _sym_db.RegisterMessage(ConfigResult)
454
+
455
+ SummaryRecord = _reflection.GeneratedProtocolMessageType('SummaryRecord', (_message.Message,), {
456
+ 'DESCRIPTOR' : _SUMMARYRECORD,
457
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
458
+ # @@protoc_insertion_point(class_scope:wandb_internal.SummaryRecord)
459
+ })
460
+ _sym_db.RegisterMessage(SummaryRecord)
461
+
462
+ SummaryItem = _reflection.GeneratedProtocolMessageType('SummaryItem', (_message.Message,), {
463
+ 'DESCRIPTOR' : _SUMMARYITEM,
464
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
465
+ # @@protoc_insertion_point(class_scope:wandb_internal.SummaryItem)
466
+ })
467
+ _sym_db.RegisterMessage(SummaryItem)
468
+
469
+ SummaryResult = _reflection.GeneratedProtocolMessageType('SummaryResult', (_message.Message,), {
470
+ 'DESCRIPTOR' : _SUMMARYRESULT,
471
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
472
+ # @@protoc_insertion_point(class_scope:wandb_internal.SummaryResult)
473
+ })
474
+ _sym_db.RegisterMessage(SummaryResult)
475
+
476
+ FilesRecord = _reflection.GeneratedProtocolMessageType('FilesRecord', (_message.Message,), {
477
+ 'DESCRIPTOR' : _FILESRECORD,
478
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
479
+ # @@protoc_insertion_point(class_scope:wandb_internal.FilesRecord)
480
+ })
481
+ _sym_db.RegisterMessage(FilesRecord)
482
+
483
+ FilesItem = _reflection.GeneratedProtocolMessageType('FilesItem', (_message.Message,), {
484
+ 'DESCRIPTOR' : _FILESITEM,
485
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
486
+ # @@protoc_insertion_point(class_scope:wandb_internal.FilesItem)
487
+ })
488
+ _sym_db.RegisterMessage(FilesItem)
489
+
490
+ FilesResult = _reflection.GeneratedProtocolMessageType('FilesResult', (_message.Message,), {
491
+ 'DESCRIPTOR' : _FILESRESULT,
492
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
493
+ # @@protoc_insertion_point(class_scope:wandb_internal.FilesResult)
494
+ })
495
+ _sym_db.RegisterMessage(FilesResult)
496
+
497
+ StatsRecord = _reflection.GeneratedProtocolMessageType('StatsRecord', (_message.Message,), {
498
+ 'DESCRIPTOR' : _STATSRECORD,
499
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
500
+ # @@protoc_insertion_point(class_scope:wandb_internal.StatsRecord)
501
+ })
502
+ _sym_db.RegisterMessage(StatsRecord)
503
+
504
+ StatsItem = _reflection.GeneratedProtocolMessageType('StatsItem', (_message.Message,), {
505
+ 'DESCRIPTOR' : _STATSITEM,
506
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
507
+ # @@protoc_insertion_point(class_scope:wandb_internal.StatsItem)
508
+ })
509
+ _sym_db.RegisterMessage(StatsItem)
510
+
511
+ ArtifactRecord = _reflection.GeneratedProtocolMessageType('ArtifactRecord', (_message.Message,), {
512
+ 'DESCRIPTOR' : _ARTIFACTRECORD,
513
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
514
+ # @@protoc_insertion_point(class_scope:wandb_internal.ArtifactRecord)
515
+ })
516
+ _sym_db.RegisterMessage(ArtifactRecord)
517
+
518
+ ArtifactManifest = _reflection.GeneratedProtocolMessageType('ArtifactManifest', (_message.Message,), {
519
+ 'DESCRIPTOR' : _ARTIFACTMANIFEST,
520
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
521
+ # @@protoc_insertion_point(class_scope:wandb_internal.ArtifactManifest)
522
+ })
523
+ _sym_db.RegisterMessage(ArtifactManifest)
524
+
525
+ ArtifactManifestEntry = _reflection.GeneratedProtocolMessageType('ArtifactManifestEntry', (_message.Message,), {
526
+ 'DESCRIPTOR' : _ARTIFACTMANIFESTENTRY,
527
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
528
+ # @@protoc_insertion_point(class_scope:wandb_internal.ArtifactManifestEntry)
529
+ })
530
+ _sym_db.RegisterMessage(ArtifactManifestEntry)
531
+
532
+ ExtraItem = _reflection.GeneratedProtocolMessageType('ExtraItem', (_message.Message,), {
533
+ 'DESCRIPTOR' : _EXTRAITEM,
534
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
535
+ # @@protoc_insertion_point(class_scope:wandb_internal.ExtraItem)
536
+ })
537
+ _sym_db.RegisterMessage(ExtraItem)
538
+
539
+ StoragePolicyConfigItem = _reflection.GeneratedProtocolMessageType('StoragePolicyConfigItem', (_message.Message,), {
540
+ 'DESCRIPTOR' : _STORAGEPOLICYCONFIGITEM,
541
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
542
+ # @@protoc_insertion_point(class_scope:wandb_internal.StoragePolicyConfigItem)
543
+ })
544
+ _sym_db.RegisterMessage(StoragePolicyConfigItem)
545
+
546
+ ArtifactResult = _reflection.GeneratedProtocolMessageType('ArtifactResult', (_message.Message,), {
547
+ 'DESCRIPTOR' : _ARTIFACTRESULT,
548
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
549
+ # @@protoc_insertion_point(class_scope:wandb_internal.ArtifactResult)
550
+ })
551
+ _sym_db.RegisterMessage(ArtifactResult)
552
+
553
+ LinkArtifactResult = _reflection.GeneratedProtocolMessageType('LinkArtifactResult', (_message.Message,), {
554
+ 'DESCRIPTOR' : _LINKARTIFACTRESULT,
555
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
556
+ # @@protoc_insertion_point(class_scope:wandb_internal.LinkArtifactResult)
557
+ })
558
+ _sym_db.RegisterMessage(LinkArtifactResult)
559
+
560
+ LinkArtifactRequest = _reflection.GeneratedProtocolMessageType('LinkArtifactRequest', (_message.Message,), {
561
+ 'DESCRIPTOR' : _LINKARTIFACTREQUEST,
562
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
563
+ # @@protoc_insertion_point(class_scope:wandb_internal.LinkArtifactRequest)
564
+ })
565
+ _sym_db.RegisterMessage(LinkArtifactRequest)
566
+
567
+ LinkArtifactResponse = _reflection.GeneratedProtocolMessageType('LinkArtifactResponse', (_message.Message,), {
568
+ 'DESCRIPTOR' : _LINKARTIFACTRESPONSE,
569
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
570
+ # @@protoc_insertion_point(class_scope:wandb_internal.LinkArtifactResponse)
571
+ })
572
+ _sym_db.RegisterMessage(LinkArtifactResponse)
573
+
574
+ TBRecord = _reflection.GeneratedProtocolMessageType('TBRecord', (_message.Message,), {
575
+ 'DESCRIPTOR' : _TBRECORD,
576
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
577
+ # @@protoc_insertion_point(class_scope:wandb_internal.TBRecord)
578
+ })
579
+ _sym_db.RegisterMessage(TBRecord)
580
+
581
+ TBResult = _reflection.GeneratedProtocolMessageType('TBResult', (_message.Message,), {
582
+ 'DESCRIPTOR' : _TBRESULT,
583
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
584
+ # @@protoc_insertion_point(class_scope:wandb_internal.TBResult)
585
+ })
586
+ _sym_db.RegisterMessage(TBResult)
587
+
588
+ AlertRecord = _reflection.GeneratedProtocolMessageType('AlertRecord', (_message.Message,), {
589
+ 'DESCRIPTOR' : _ALERTRECORD,
590
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
591
+ # @@protoc_insertion_point(class_scope:wandb_internal.AlertRecord)
592
+ })
593
+ _sym_db.RegisterMessage(AlertRecord)
594
+
595
+ AlertResult = _reflection.GeneratedProtocolMessageType('AlertResult', (_message.Message,), {
596
+ 'DESCRIPTOR' : _ALERTRESULT,
597
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
598
+ # @@protoc_insertion_point(class_scope:wandb_internal.AlertResult)
599
+ })
600
+ _sym_db.RegisterMessage(AlertResult)
601
+
602
+ Request = _reflection.GeneratedProtocolMessageType('Request', (_message.Message,), {
603
+ 'DESCRIPTOR' : _REQUEST,
604
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
605
+ # @@protoc_insertion_point(class_scope:wandb_internal.Request)
606
+ })
607
+ _sym_db.RegisterMessage(Request)
608
+
609
+ Response = _reflection.GeneratedProtocolMessageType('Response', (_message.Message,), {
610
+ 'DESCRIPTOR' : _RESPONSE,
611
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
612
+ # @@protoc_insertion_point(class_scope:wandb_internal.Response)
613
+ })
614
+ _sym_db.RegisterMessage(Response)
615
+
616
+ DeferRequest = _reflection.GeneratedProtocolMessageType('DeferRequest', (_message.Message,), {
617
+ 'DESCRIPTOR' : _DEFERREQUEST,
618
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
619
+ # @@protoc_insertion_point(class_scope:wandb_internal.DeferRequest)
620
+ })
621
+ _sym_db.RegisterMessage(DeferRequest)
622
+
623
+ PauseRequest = _reflection.GeneratedProtocolMessageType('PauseRequest', (_message.Message,), {
624
+ 'DESCRIPTOR' : _PAUSEREQUEST,
625
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
626
+ # @@protoc_insertion_point(class_scope:wandb_internal.PauseRequest)
627
+ })
628
+ _sym_db.RegisterMessage(PauseRequest)
629
+
630
+ PauseResponse = _reflection.GeneratedProtocolMessageType('PauseResponse', (_message.Message,), {
631
+ 'DESCRIPTOR' : _PAUSERESPONSE,
632
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
633
+ # @@protoc_insertion_point(class_scope:wandb_internal.PauseResponse)
634
+ })
635
+ _sym_db.RegisterMessage(PauseResponse)
636
+
637
+ ResumeRequest = _reflection.GeneratedProtocolMessageType('ResumeRequest', (_message.Message,), {
638
+ 'DESCRIPTOR' : _RESUMEREQUEST,
639
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
640
+ # @@protoc_insertion_point(class_scope:wandb_internal.ResumeRequest)
641
+ })
642
+ _sym_db.RegisterMessage(ResumeRequest)
643
+
644
+ ResumeResponse = _reflection.GeneratedProtocolMessageType('ResumeResponse', (_message.Message,), {
645
+ 'DESCRIPTOR' : _RESUMERESPONSE,
646
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
647
+ # @@protoc_insertion_point(class_scope:wandb_internal.ResumeResponse)
648
+ })
649
+ _sym_db.RegisterMessage(ResumeResponse)
650
+
651
+ LoginRequest = _reflection.GeneratedProtocolMessageType('LoginRequest', (_message.Message,), {
652
+ 'DESCRIPTOR' : _LOGINREQUEST,
653
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
654
+ # @@protoc_insertion_point(class_scope:wandb_internal.LoginRequest)
655
+ })
656
+ _sym_db.RegisterMessage(LoginRequest)
657
+
658
+ LoginResponse = _reflection.GeneratedProtocolMessageType('LoginResponse', (_message.Message,), {
659
+ 'DESCRIPTOR' : _LOGINRESPONSE,
660
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
661
+ # @@protoc_insertion_point(class_scope:wandb_internal.LoginResponse)
662
+ })
663
+ _sym_db.RegisterMessage(LoginResponse)
664
+
665
+ GetSummaryRequest = _reflection.GeneratedProtocolMessageType('GetSummaryRequest', (_message.Message,), {
666
+ 'DESCRIPTOR' : _GETSUMMARYREQUEST,
667
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
668
+ # @@protoc_insertion_point(class_scope:wandb_internal.GetSummaryRequest)
669
+ })
670
+ _sym_db.RegisterMessage(GetSummaryRequest)
671
+
672
+ GetSummaryResponse = _reflection.GeneratedProtocolMessageType('GetSummaryResponse', (_message.Message,), {
673
+ 'DESCRIPTOR' : _GETSUMMARYRESPONSE,
674
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
675
+ # @@protoc_insertion_point(class_scope:wandb_internal.GetSummaryResponse)
676
+ })
677
+ _sym_db.RegisterMessage(GetSummaryResponse)
678
+
679
+ GetSystemMetricsRequest = _reflection.GeneratedProtocolMessageType('GetSystemMetricsRequest', (_message.Message,), {
680
+ 'DESCRIPTOR' : _GETSYSTEMMETRICSREQUEST,
681
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
682
+ # @@protoc_insertion_point(class_scope:wandb_internal.GetSystemMetricsRequest)
683
+ })
684
+ _sym_db.RegisterMessage(GetSystemMetricsRequest)
685
+
686
+ SystemMetricSample = _reflection.GeneratedProtocolMessageType('SystemMetricSample', (_message.Message,), {
687
+ 'DESCRIPTOR' : _SYSTEMMETRICSAMPLE,
688
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
689
+ # @@protoc_insertion_point(class_scope:wandb_internal.SystemMetricSample)
690
+ })
691
+ _sym_db.RegisterMessage(SystemMetricSample)
692
+
693
+ SystemMetricsBuffer = _reflection.GeneratedProtocolMessageType('SystemMetricsBuffer', (_message.Message,), {
694
+ 'DESCRIPTOR' : _SYSTEMMETRICSBUFFER,
695
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
696
+ # @@protoc_insertion_point(class_scope:wandb_internal.SystemMetricsBuffer)
697
+ })
698
+ _sym_db.RegisterMessage(SystemMetricsBuffer)
699
+
700
+ GetSystemMetricsResponse = _reflection.GeneratedProtocolMessageType('GetSystemMetricsResponse', (_message.Message,), {
701
+
702
+ 'SystemMetricsEntry' : _reflection.GeneratedProtocolMessageType('SystemMetricsEntry', (_message.Message,), {
703
+ 'DESCRIPTOR' : _GETSYSTEMMETRICSRESPONSE_SYSTEMMETRICSENTRY,
704
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
705
+ # @@protoc_insertion_point(class_scope:wandb_internal.GetSystemMetricsResponse.SystemMetricsEntry)
706
+ })
707
+ ,
708
+ 'DESCRIPTOR' : _GETSYSTEMMETRICSRESPONSE,
709
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
710
+ # @@protoc_insertion_point(class_scope:wandb_internal.GetSystemMetricsResponse)
711
+ })
712
+ _sym_db.RegisterMessage(GetSystemMetricsResponse)
713
+ _sym_db.RegisterMessage(GetSystemMetricsResponse.SystemMetricsEntry)
714
+
715
+ StatusRequest = _reflection.GeneratedProtocolMessageType('StatusRequest', (_message.Message,), {
716
+ 'DESCRIPTOR' : _STATUSREQUEST,
717
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
718
+ # @@protoc_insertion_point(class_scope:wandb_internal.StatusRequest)
719
+ })
720
+ _sym_db.RegisterMessage(StatusRequest)
721
+
722
+ StatusResponse = _reflection.GeneratedProtocolMessageType('StatusResponse', (_message.Message,), {
723
+ 'DESCRIPTOR' : _STATUSRESPONSE,
724
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
725
+ # @@protoc_insertion_point(class_scope:wandb_internal.StatusResponse)
726
+ })
727
+ _sym_db.RegisterMessage(StatusResponse)
728
+
729
+ StopStatusRequest = _reflection.GeneratedProtocolMessageType('StopStatusRequest', (_message.Message,), {
730
+ 'DESCRIPTOR' : _STOPSTATUSREQUEST,
731
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
732
+ # @@protoc_insertion_point(class_scope:wandb_internal.StopStatusRequest)
733
+ })
734
+ _sym_db.RegisterMessage(StopStatusRequest)
735
+
736
+ StopStatusResponse = _reflection.GeneratedProtocolMessageType('StopStatusResponse', (_message.Message,), {
737
+ 'DESCRIPTOR' : _STOPSTATUSRESPONSE,
738
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
739
+ # @@protoc_insertion_point(class_scope:wandb_internal.StopStatusResponse)
740
+ })
741
+ _sym_db.RegisterMessage(StopStatusResponse)
742
+
743
+ NetworkStatusRequest = _reflection.GeneratedProtocolMessageType('NetworkStatusRequest', (_message.Message,), {
744
+ 'DESCRIPTOR' : _NETWORKSTATUSREQUEST,
745
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
746
+ # @@protoc_insertion_point(class_scope:wandb_internal.NetworkStatusRequest)
747
+ })
748
+ _sym_db.RegisterMessage(NetworkStatusRequest)
749
+
750
+ NetworkStatusResponse = _reflection.GeneratedProtocolMessageType('NetworkStatusResponse', (_message.Message,), {
751
+ 'DESCRIPTOR' : _NETWORKSTATUSRESPONSE,
752
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
753
+ # @@protoc_insertion_point(class_scope:wandb_internal.NetworkStatusResponse)
754
+ })
755
+ _sym_db.RegisterMessage(NetworkStatusResponse)
756
+
757
+ HttpResponse = _reflection.GeneratedProtocolMessageType('HttpResponse', (_message.Message,), {
758
+ 'DESCRIPTOR' : _HTTPRESPONSE,
759
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
760
+ # @@protoc_insertion_point(class_scope:wandb_internal.HttpResponse)
761
+ })
762
+ _sym_db.RegisterMessage(HttpResponse)
763
+
764
+ InternalMessagesRequest = _reflection.GeneratedProtocolMessageType('InternalMessagesRequest', (_message.Message,), {
765
+ 'DESCRIPTOR' : _INTERNALMESSAGESREQUEST,
766
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
767
+ # @@protoc_insertion_point(class_scope:wandb_internal.InternalMessagesRequest)
768
+ })
769
+ _sym_db.RegisterMessage(InternalMessagesRequest)
770
+
771
+ InternalMessagesResponse = _reflection.GeneratedProtocolMessageType('InternalMessagesResponse', (_message.Message,), {
772
+ 'DESCRIPTOR' : _INTERNALMESSAGESRESPONSE,
773
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
774
+ # @@protoc_insertion_point(class_scope:wandb_internal.InternalMessagesResponse)
775
+ })
776
+ _sym_db.RegisterMessage(InternalMessagesResponse)
777
+
778
+ InternalMessages = _reflection.GeneratedProtocolMessageType('InternalMessages', (_message.Message,), {
779
+ 'DESCRIPTOR' : _INTERNALMESSAGES,
780
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
781
+ # @@protoc_insertion_point(class_scope:wandb_internal.InternalMessages)
782
+ })
783
+ _sym_db.RegisterMessage(InternalMessages)
784
+
785
+ PollExitRequest = _reflection.GeneratedProtocolMessageType('PollExitRequest', (_message.Message,), {
786
+ 'DESCRIPTOR' : _POLLEXITREQUEST,
787
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
788
+ # @@protoc_insertion_point(class_scope:wandb_internal.PollExitRequest)
789
+ })
790
+ _sym_db.RegisterMessage(PollExitRequest)
791
+
792
+ PollExitResponse = _reflection.GeneratedProtocolMessageType('PollExitResponse', (_message.Message,), {
793
+ 'DESCRIPTOR' : _POLLEXITRESPONSE,
794
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
795
+ # @@protoc_insertion_point(class_scope:wandb_internal.PollExitResponse)
796
+ })
797
+ _sym_db.RegisterMessage(PollExitResponse)
798
+
799
+ OperationStatsRequest = _reflection.GeneratedProtocolMessageType('OperationStatsRequest', (_message.Message,), {
800
+ 'DESCRIPTOR' : _OPERATIONSTATSREQUEST,
801
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
802
+ # @@protoc_insertion_point(class_scope:wandb_internal.OperationStatsRequest)
803
+ })
804
+ _sym_db.RegisterMessage(OperationStatsRequest)
805
+
806
+ OperationStatsResponse = _reflection.GeneratedProtocolMessageType('OperationStatsResponse', (_message.Message,), {
807
+ 'DESCRIPTOR' : _OPERATIONSTATSRESPONSE,
808
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
809
+ # @@protoc_insertion_point(class_scope:wandb_internal.OperationStatsResponse)
810
+ })
811
+ _sym_db.RegisterMessage(OperationStatsResponse)
812
+
813
+ OperationStats = _reflection.GeneratedProtocolMessageType('OperationStats', (_message.Message,), {
814
+ 'DESCRIPTOR' : _OPERATIONSTATS,
815
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
816
+ # @@protoc_insertion_point(class_scope:wandb_internal.OperationStats)
817
+ })
818
+ _sym_db.RegisterMessage(OperationStats)
819
+
820
+ Operation = _reflection.GeneratedProtocolMessageType('Operation', (_message.Message,), {
821
+ 'DESCRIPTOR' : _OPERATION,
822
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
823
+ # @@protoc_insertion_point(class_scope:wandb_internal.Operation)
824
+ })
825
+ _sym_db.RegisterMessage(Operation)
826
+
827
+ SenderMarkRequest = _reflection.GeneratedProtocolMessageType('SenderMarkRequest', (_message.Message,), {
828
+ 'DESCRIPTOR' : _SENDERMARKREQUEST,
829
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
830
+ # @@protoc_insertion_point(class_scope:wandb_internal.SenderMarkRequest)
831
+ })
832
+ _sym_db.RegisterMessage(SenderMarkRequest)
833
+
834
+ SyncFinishRequest = _reflection.GeneratedProtocolMessageType('SyncFinishRequest', (_message.Message,), {
835
+ 'DESCRIPTOR' : _SYNCFINISHREQUEST,
836
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
837
+ # @@protoc_insertion_point(class_scope:wandb_internal.SyncFinishRequest)
838
+ })
839
+ _sym_db.RegisterMessage(SyncFinishRequest)
840
+
841
+ SyncResponse = _reflection.GeneratedProtocolMessageType('SyncResponse', (_message.Message,), {
842
+ 'DESCRIPTOR' : _SYNCRESPONSE,
843
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
844
+ # @@protoc_insertion_point(class_scope:wandb_internal.SyncResponse)
845
+ })
846
+ _sym_db.RegisterMessage(SyncResponse)
847
+
848
+ SenderReadRequest = _reflection.GeneratedProtocolMessageType('SenderReadRequest', (_message.Message,), {
849
+ 'DESCRIPTOR' : _SENDERREADREQUEST,
850
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
851
+ # @@protoc_insertion_point(class_scope:wandb_internal.SenderReadRequest)
852
+ })
853
+ _sym_db.RegisterMessage(SenderReadRequest)
854
+
855
+ StatusReportRequest = _reflection.GeneratedProtocolMessageType('StatusReportRequest', (_message.Message,), {
856
+ 'DESCRIPTOR' : _STATUSREPORTREQUEST,
857
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
858
+ # @@protoc_insertion_point(class_scope:wandb_internal.StatusReportRequest)
859
+ })
860
+ _sym_db.RegisterMessage(StatusReportRequest)
861
+
862
+ SummaryRecordRequest = _reflection.GeneratedProtocolMessageType('SummaryRecordRequest', (_message.Message,), {
863
+ 'DESCRIPTOR' : _SUMMARYRECORDREQUEST,
864
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
865
+ # @@protoc_insertion_point(class_scope:wandb_internal.SummaryRecordRequest)
866
+ })
867
+ _sym_db.RegisterMessage(SummaryRecordRequest)
868
+
869
+ TelemetryRecordRequest = _reflection.GeneratedProtocolMessageType('TelemetryRecordRequest', (_message.Message,), {
870
+ 'DESCRIPTOR' : _TELEMETRYRECORDREQUEST,
871
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
872
+ # @@protoc_insertion_point(class_scope:wandb_internal.TelemetryRecordRequest)
873
+ })
874
+ _sym_db.RegisterMessage(TelemetryRecordRequest)
875
+
876
+ ServerInfoRequest = _reflection.GeneratedProtocolMessageType('ServerInfoRequest', (_message.Message,), {
877
+ 'DESCRIPTOR' : _SERVERINFOREQUEST,
878
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
879
+ # @@protoc_insertion_point(class_scope:wandb_internal.ServerInfoRequest)
880
+ })
881
+ _sym_db.RegisterMessage(ServerInfoRequest)
882
+
883
+ ServerInfoResponse = _reflection.GeneratedProtocolMessageType('ServerInfoResponse', (_message.Message,), {
884
+ 'DESCRIPTOR' : _SERVERINFORESPONSE,
885
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
886
+ # @@protoc_insertion_point(class_scope:wandb_internal.ServerInfoResponse)
887
+ })
888
+ _sym_db.RegisterMessage(ServerInfoResponse)
889
+
890
+ ServerMessages = _reflection.GeneratedProtocolMessageType('ServerMessages', (_message.Message,), {
891
+ 'DESCRIPTOR' : _SERVERMESSAGES,
892
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
893
+ # @@protoc_insertion_point(class_scope:wandb_internal.ServerMessages)
894
+ })
895
+ _sym_db.RegisterMessage(ServerMessages)
896
+
897
+ ServerMessage = _reflection.GeneratedProtocolMessageType('ServerMessage', (_message.Message,), {
898
+ 'DESCRIPTOR' : _SERVERMESSAGE,
899
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
900
+ # @@protoc_insertion_point(class_scope:wandb_internal.ServerMessage)
901
+ })
902
+ _sym_db.RegisterMessage(ServerMessage)
903
+
904
+ FileCounts = _reflection.GeneratedProtocolMessageType('FileCounts', (_message.Message,), {
905
+ 'DESCRIPTOR' : _FILECOUNTS,
906
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
907
+ # @@protoc_insertion_point(class_scope:wandb_internal.FileCounts)
908
+ })
909
+ _sym_db.RegisterMessage(FileCounts)
910
+
911
+ FilePusherStats = _reflection.GeneratedProtocolMessageType('FilePusherStats', (_message.Message,), {
912
+ 'DESCRIPTOR' : _FILEPUSHERSTATS,
913
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
914
+ # @@protoc_insertion_point(class_scope:wandb_internal.FilePusherStats)
915
+ })
916
+ _sym_db.RegisterMessage(FilePusherStats)
917
+
918
+ FilesUploaded = _reflection.GeneratedProtocolMessageType('FilesUploaded', (_message.Message,), {
919
+ 'DESCRIPTOR' : _FILESUPLOADED,
920
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
921
+ # @@protoc_insertion_point(class_scope:wandb_internal.FilesUploaded)
922
+ })
923
+ _sym_db.RegisterMessage(FilesUploaded)
924
+
925
+ FileTransferInfoRequest = _reflection.GeneratedProtocolMessageType('FileTransferInfoRequest', (_message.Message,), {
926
+ 'DESCRIPTOR' : _FILETRANSFERINFOREQUEST,
927
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
928
+ # @@protoc_insertion_point(class_scope:wandb_internal.FileTransferInfoRequest)
929
+ })
930
+ _sym_db.RegisterMessage(FileTransferInfoRequest)
931
+
932
+ LocalInfo = _reflection.GeneratedProtocolMessageType('LocalInfo', (_message.Message,), {
933
+ 'DESCRIPTOR' : _LOCALINFO,
934
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
935
+ # @@protoc_insertion_point(class_scope:wandb_internal.LocalInfo)
936
+ })
937
+ _sym_db.RegisterMessage(LocalInfo)
938
+
939
+ ShutdownRequest = _reflection.GeneratedProtocolMessageType('ShutdownRequest', (_message.Message,), {
940
+ 'DESCRIPTOR' : _SHUTDOWNREQUEST,
941
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
942
+ # @@protoc_insertion_point(class_scope:wandb_internal.ShutdownRequest)
943
+ })
944
+ _sym_db.RegisterMessage(ShutdownRequest)
945
+
946
+ ShutdownResponse = _reflection.GeneratedProtocolMessageType('ShutdownResponse', (_message.Message,), {
947
+ 'DESCRIPTOR' : _SHUTDOWNRESPONSE,
948
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
949
+ # @@protoc_insertion_point(class_scope:wandb_internal.ShutdownResponse)
950
+ })
951
+ _sym_db.RegisterMessage(ShutdownResponse)
952
+
953
+ AttachRequest = _reflection.GeneratedProtocolMessageType('AttachRequest', (_message.Message,), {
954
+ 'DESCRIPTOR' : _ATTACHREQUEST,
955
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
956
+ # @@protoc_insertion_point(class_scope:wandb_internal.AttachRequest)
957
+ })
958
+ _sym_db.RegisterMessage(AttachRequest)
959
+
960
+ AttachResponse = _reflection.GeneratedProtocolMessageType('AttachResponse', (_message.Message,), {
961
+ 'DESCRIPTOR' : _ATTACHRESPONSE,
962
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
963
+ # @@protoc_insertion_point(class_scope:wandb_internal.AttachResponse)
964
+ })
965
+ _sym_db.RegisterMessage(AttachResponse)
966
+
967
+ TestInjectRequest = _reflection.GeneratedProtocolMessageType('TestInjectRequest', (_message.Message,), {
968
+ 'DESCRIPTOR' : _TESTINJECTREQUEST,
969
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
970
+ # @@protoc_insertion_point(class_scope:wandb_internal.TestInjectRequest)
971
+ })
972
+ _sym_db.RegisterMessage(TestInjectRequest)
973
+
974
+ TestInjectResponse = _reflection.GeneratedProtocolMessageType('TestInjectResponse', (_message.Message,), {
975
+ 'DESCRIPTOR' : _TESTINJECTRESPONSE,
976
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
977
+ # @@protoc_insertion_point(class_scope:wandb_internal.TestInjectResponse)
978
+ })
979
+ _sym_db.RegisterMessage(TestInjectResponse)
980
+
981
+ HistoryAction = _reflection.GeneratedProtocolMessageType('HistoryAction', (_message.Message,), {
982
+ 'DESCRIPTOR' : _HISTORYACTION,
983
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
984
+ # @@protoc_insertion_point(class_scope:wandb_internal.HistoryAction)
985
+ })
986
+ _sym_db.RegisterMessage(HistoryAction)
987
+
988
+ PartialHistoryRequest = _reflection.GeneratedProtocolMessageType('PartialHistoryRequest', (_message.Message,), {
989
+ 'DESCRIPTOR' : _PARTIALHISTORYREQUEST,
990
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
991
+ # @@protoc_insertion_point(class_scope:wandb_internal.PartialHistoryRequest)
992
+ })
993
+ _sym_db.RegisterMessage(PartialHistoryRequest)
994
+
995
+ PartialHistoryResponse = _reflection.GeneratedProtocolMessageType('PartialHistoryResponse', (_message.Message,), {
996
+ 'DESCRIPTOR' : _PARTIALHISTORYRESPONSE,
997
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
998
+ # @@protoc_insertion_point(class_scope:wandb_internal.PartialHistoryResponse)
999
+ })
1000
+ _sym_db.RegisterMessage(PartialHistoryResponse)
1001
+
1002
+ SampledHistoryRequest = _reflection.GeneratedProtocolMessageType('SampledHistoryRequest', (_message.Message,), {
1003
+ 'DESCRIPTOR' : _SAMPLEDHISTORYREQUEST,
1004
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1005
+ # @@protoc_insertion_point(class_scope:wandb_internal.SampledHistoryRequest)
1006
+ })
1007
+ _sym_db.RegisterMessage(SampledHistoryRequest)
1008
+
1009
+ SampledHistoryItem = _reflection.GeneratedProtocolMessageType('SampledHistoryItem', (_message.Message,), {
1010
+ 'DESCRIPTOR' : _SAMPLEDHISTORYITEM,
1011
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1012
+ # @@protoc_insertion_point(class_scope:wandb_internal.SampledHistoryItem)
1013
+ })
1014
+ _sym_db.RegisterMessage(SampledHistoryItem)
1015
+
1016
+ SampledHistoryResponse = _reflection.GeneratedProtocolMessageType('SampledHistoryResponse', (_message.Message,), {
1017
+ 'DESCRIPTOR' : _SAMPLEDHISTORYRESPONSE,
1018
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1019
+ # @@protoc_insertion_point(class_scope:wandb_internal.SampledHistoryResponse)
1020
+ })
1021
+ _sym_db.RegisterMessage(SampledHistoryResponse)
1022
+
1023
+ RunStatusRequest = _reflection.GeneratedProtocolMessageType('RunStatusRequest', (_message.Message,), {
1024
+ 'DESCRIPTOR' : _RUNSTATUSREQUEST,
1025
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1026
+ # @@protoc_insertion_point(class_scope:wandb_internal.RunStatusRequest)
1027
+ })
1028
+ _sym_db.RegisterMessage(RunStatusRequest)
1029
+
1030
+ RunStatusResponse = _reflection.GeneratedProtocolMessageType('RunStatusResponse', (_message.Message,), {
1031
+ 'DESCRIPTOR' : _RUNSTATUSRESPONSE,
1032
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1033
+ # @@protoc_insertion_point(class_scope:wandb_internal.RunStatusResponse)
1034
+ })
1035
+ _sym_db.RegisterMessage(RunStatusResponse)
1036
+
1037
+ RunStartRequest = _reflection.GeneratedProtocolMessageType('RunStartRequest', (_message.Message,), {
1038
+ 'DESCRIPTOR' : _RUNSTARTREQUEST,
1039
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1040
+ # @@protoc_insertion_point(class_scope:wandb_internal.RunStartRequest)
1041
+ })
1042
+ _sym_db.RegisterMessage(RunStartRequest)
1043
+
1044
+ RunStartResponse = _reflection.GeneratedProtocolMessageType('RunStartResponse', (_message.Message,), {
1045
+ 'DESCRIPTOR' : _RUNSTARTRESPONSE,
1046
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1047
+ # @@protoc_insertion_point(class_scope:wandb_internal.RunStartResponse)
1048
+ })
1049
+ _sym_db.RegisterMessage(RunStartResponse)
1050
+
1051
+ RunFinishWithoutExitRequest = _reflection.GeneratedProtocolMessageType('RunFinishWithoutExitRequest', (_message.Message,), {
1052
+ 'DESCRIPTOR' : _RUNFINISHWITHOUTEXITREQUEST,
1053
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1054
+ # @@protoc_insertion_point(class_scope:wandb_internal.RunFinishWithoutExitRequest)
1055
+ })
1056
+ _sym_db.RegisterMessage(RunFinishWithoutExitRequest)
1057
+
1058
+ RunFinishWithoutExitResponse = _reflection.GeneratedProtocolMessageType('RunFinishWithoutExitResponse', (_message.Message,), {
1059
+ 'DESCRIPTOR' : _RUNFINISHWITHOUTEXITRESPONSE,
1060
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1061
+ # @@protoc_insertion_point(class_scope:wandb_internal.RunFinishWithoutExitResponse)
1062
+ })
1063
+ _sym_db.RegisterMessage(RunFinishWithoutExitResponse)
1064
+
1065
+ CheckVersionRequest = _reflection.GeneratedProtocolMessageType('CheckVersionRequest', (_message.Message,), {
1066
+ 'DESCRIPTOR' : _CHECKVERSIONREQUEST,
1067
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1068
+ # @@protoc_insertion_point(class_scope:wandb_internal.CheckVersionRequest)
1069
+ })
1070
+ _sym_db.RegisterMessage(CheckVersionRequest)
1071
+
1072
+ CheckVersionResponse = _reflection.GeneratedProtocolMessageType('CheckVersionResponse', (_message.Message,), {
1073
+ 'DESCRIPTOR' : _CHECKVERSIONRESPONSE,
1074
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1075
+ # @@protoc_insertion_point(class_scope:wandb_internal.CheckVersionResponse)
1076
+ })
1077
+ _sym_db.RegisterMessage(CheckVersionResponse)
1078
+
1079
+ JobInfoRequest = _reflection.GeneratedProtocolMessageType('JobInfoRequest', (_message.Message,), {
1080
+ 'DESCRIPTOR' : _JOBINFOREQUEST,
1081
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1082
+ # @@protoc_insertion_point(class_scope:wandb_internal.JobInfoRequest)
1083
+ })
1084
+ _sym_db.RegisterMessage(JobInfoRequest)
1085
+
1086
+ JobInfoResponse = _reflection.GeneratedProtocolMessageType('JobInfoResponse', (_message.Message,), {
1087
+ 'DESCRIPTOR' : _JOBINFORESPONSE,
1088
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1089
+ # @@protoc_insertion_point(class_scope:wandb_internal.JobInfoResponse)
1090
+ })
1091
+ _sym_db.RegisterMessage(JobInfoResponse)
1092
+
1093
+ LogArtifactRequest = _reflection.GeneratedProtocolMessageType('LogArtifactRequest', (_message.Message,), {
1094
+ 'DESCRIPTOR' : _LOGARTIFACTREQUEST,
1095
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1096
+ # @@protoc_insertion_point(class_scope:wandb_internal.LogArtifactRequest)
1097
+ })
1098
+ _sym_db.RegisterMessage(LogArtifactRequest)
1099
+
1100
+ LogArtifactResponse = _reflection.GeneratedProtocolMessageType('LogArtifactResponse', (_message.Message,), {
1101
+ 'DESCRIPTOR' : _LOGARTIFACTRESPONSE,
1102
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1103
+ # @@protoc_insertion_point(class_scope:wandb_internal.LogArtifactResponse)
1104
+ })
1105
+ _sym_db.RegisterMessage(LogArtifactResponse)
1106
+
1107
+ DownloadArtifactRequest = _reflection.GeneratedProtocolMessageType('DownloadArtifactRequest', (_message.Message,), {
1108
+ 'DESCRIPTOR' : _DOWNLOADARTIFACTREQUEST,
1109
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1110
+ # @@protoc_insertion_point(class_scope:wandb_internal.DownloadArtifactRequest)
1111
+ })
1112
+ _sym_db.RegisterMessage(DownloadArtifactRequest)
1113
+
1114
+ DownloadArtifactResponse = _reflection.GeneratedProtocolMessageType('DownloadArtifactResponse', (_message.Message,), {
1115
+ 'DESCRIPTOR' : _DOWNLOADARTIFACTRESPONSE,
1116
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1117
+ # @@protoc_insertion_point(class_scope:wandb_internal.DownloadArtifactResponse)
1118
+ })
1119
+ _sym_db.RegisterMessage(DownloadArtifactResponse)
1120
+
1121
+ KeepaliveRequest = _reflection.GeneratedProtocolMessageType('KeepaliveRequest', (_message.Message,), {
1122
+ 'DESCRIPTOR' : _KEEPALIVEREQUEST,
1123
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1124
+ # @@protoc_insertion_point(class_scope:wandb_internal.KeepaliveRequest)
1125
+ })
1126
+ _sym_db.RegisterMessage(KeepaliveRequest)
1127
+
1128
+ KeepaliveResponse = _reflection.GeneratedProtocolMessageType('KeepaliveResponse', (_message.Message,), {
1129
+ 'DESCRIPTOR' : _KEEPALIVERESPONSE,
1130
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1131
+ # @@protoc_insertion_point(class_scope:wandb_internal.KeepaliveResponse)
1132
+ })
1133
+ _sym_db.RegisterMessage(KeepaliveResponse)
1134
+
1135
+ ArtifactInfo = _reflection.GeneratedProtocolMessageType('ArtifactInfo', (_message.Message,), {
1136
+ 'DESCRIPTOR' : _ARTIFACTINFO,
1137
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1138
+ # @@protoc_insertion_point(class_scope:wandb_internal.ArtifactInfo)
1139
+ })
1140
+ _sym_db.RegisterMessage(ArtifactInfo)
1141
+
1142
+ GitInfo = _reflection.GeneratedProtocolMessageType('GitInfo', (_message.Message,), {
1143
+ 'DESCRIPTOR' : _GITINFO,
1144
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1145
+ # @@protoc_insertion_point(class_scope:wandb_internal.GitInfo)
1146
+ })
1147
+ _sym_db.RegisterMessage(GitInfo)
1148
+
1149
+ GitSource = _reflection.GeneratedProtocolMessageType('GitSource', (_message.Message,), {
1150
+ 'DESCRIPTOR' : _GITSOURCE,
1151
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1152
+ # @@protoc_insertion_point(class_scope:wandb_internal.GitSource)
1153
+ })
1154
+ _sym_db.RegisterMessage(GitSource)
1155
+
1156
+ ImageSource = _reflection.GeneratedProtocolMessageType('ImageSource', (_message.Message,), {
1157
+ 'DESCRIPTOR' : _IMAGESOURCE,
1158
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1159
+ # @@protoc_insertion_point(class_scope:wandb_internal.ImageSource)
1160
+ })
1161
+ _sym_db.RegisterMessage(ImageSource)
1162
+
1163
+ Source = _reflection.GeneratedProtocolMessageType('Source', (_message.Message,), {
1164
+ 'DESCRIPTOR' : _SOURCE,
1165
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1166
+ # @@protoc_insertion_point(class_scope:wandb_internal.Source)
1167
+ })
1168
+ _sym_db.RegisterMessage(Source)
1169
+
1170
+ JobSource = _reflection.GeneratedProtocolMessageType('JobSource', (_message.Message,), {
1171
+ 'DESCRIPTOR' : _JOBSOURCE,
1172
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1173
+ # @@protoc_insertion_point(class_scope:wandb_internal.JobSource)
1174
+ })
1175
+ _sym_db.RegisterMessage(JobSource)
1176
+
1177
+ PartialJobArtifact = _reflection.GeneratedProtocolMessageType('PartialJobArtifact', (_message.Message,), {
1178
+ 'DESCRIPTOR' : _PARTIALJOBARTIFACT,
1179
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1180
+ # @@protoc_insertion_point(class_scope:wandb_internal.PartialJobArtifact)
1181
+ })
1182
+ _sym_db.RegisterMessage(PartialJobArtifact)
1183
+
1184
+ UseArtifactRecord = _reflection.GeneratedProtocolMessageType('UseArtifactRecord', (_message.Message,), {
1185
+ 'DESCRIPTOR' : _USEARTIFACTRECORD,
1186
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1187
+ # @@protoc_insertion_point(class_scope:wandb_internal.UseArtifactRecord)
1188
+ })
1189
+ _sym_db.RegisterMessage(UseArtifactRecord)
1190
+
1191
+ UseArtifactResult = _reflection.GeneratedProtocolMessageType('UseArtifactResult', (_message.Message,), {
1192
+ 'DESCRIPTOR' : _USEARTIFACTRESULT,
1193
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1194
+ # @@protoc_insertion_point(class_scope:wandb_internal.UseArtifactResult)
1195
+ })
1196
+ _sym_db.RegisterMessage(UseArtifactResult)
1197
+
1198
+ CancelRequest = _reflection.GeneratedProtocolMessageType('CancelRequest', (_message.Message,), {
1199
+ 'DESCRIPTOR' : _CANCELREQUEST,
1200
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1201
+ # @@protoc_insertion_point(class_scope:wandb_internal.CancelRequest)
1202
+ })
1203
+ _sym_db.RegisterMessage(CancelRequest)
1204
+
1205
+ CancelResponse = _reflection.GeneratedProtocolMessageType('CancelResponse', (_message.Message,), {
1206
+ 'DESCRIPTOR' : _CANCELRESPONSE,
1207
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1208
+ # @@protoc_insertion_point(class_scope:wandb_internal.CancelResponse)
1209
+ })
1210
+ _sym_db.RegisterMessage(CancelResponse)
1211
+
1212
+ ProbeSystemInfoRequest = _reflection.GeneratedProtocolMessageType('ProbeSystemInfoRequest', (_message.Message,), {
1213
+ 'DESCRIPTOR' : _PROBESYSTEMINFOREQUEST,
1214
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1215
+ # @@protoc_insertion_point(class_scope:wandb_internal.ProbeSystemInfoRequest)
1216
+ })
1217
+ _sym_db.RegisterMessage(ProbeSystemInfoRequest)
1218
+
1219
+ DiskInfo = _reflection.GeneratedProtocolMessageType('DiskInfo', (_message.Message,), {
1220
+ 'DESCRIPTOR' : _DISKINFO,
1221
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1222
+ # @@protoc_insertion_point(class_scope:wandb_internal.DiskInfo)
1223
+ })
1224
+ _sym_db.RegisterMessage(DiskInfo)
1225
+
1226
+ MemoryInfo = _reflection.GeneratedProtocolMessageType('MemoryInfo', (_message.Message,), {
1227
+ 'DESCRIPTOR' : _MEMORYINFO,
1228
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1229
+ # @@protoc_insertion_point(class_scope:wandb_internal.MemoryInfo)
1230
+ })
1231
+ _sym_db.RegisterMessage(MemoryInfo)
1232
+
1233
+ CpuInfo = _reflection.GeneratedProtocolMessageType('CpuInfo', (_message.Message,), {
1234
+ 'DESCRIPTOR' : _CPUINFO,
1235
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1236
+ # @@protoc_insertion_point(class_scope:wandb_internal.CpuInfo)
1237
+ })
1238
+ _sym_db.RegisterMessage(CpuInfo)
1239
+
1240
+ AppleInfo = _reflection.GeneratedProtocolMessageType('AppleInfo', (_message.Message,), {
1241
+ 'DESCRIPTOR' : _APPLEINFO,
1242
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1243
+ # @@protoc_insertion_point(class_scope:wandb_internal.AppleInfo)
1244
+ })
1245
+ _sym_db.RegisterMessage(AppleInfo)
1246
+
1247
+ GpuNvidiaInfo = _reflection.GeneratedProtocolMessageType('GpuNvidiaInfo', (_message.Message,), {
1248
+ 'DESCRIPTOR' : _GPUNVIDIAINFO,
1249
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1250
+ # @@protoc_insertion_point(class_scope:wandb_internal.GpuNvidiaInfo)
1251
+ })
1252
+ _sym_db.RegisterMessage(GpuNvidiaInfo)
1253
+
1254
+ GpuAmdInfo = _reflection.GeneratedProtocolMessageType('GpuAmdInfo', (_message.Message,), {
1255
+ 'DESCRIPTOR' : _GPUAMDINFO,
1256
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1257
+ # @@protoc_insertion_point(class_scope:wandb_internal.GpuAmdInfo)
1258
+ })
1259
+ _sym_db.RegisterMessage(GpuAmdInfo)
1260
+
1261
+ TrainiumInfo = _reflection.GeneratedProtocolMessageType('TrainiumInfo', (_message.Message,), {
1262
+ 'DESCRIPTOR' : _TRAINIUMINFO,
1263
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1264
+ # @@protoc_insertion_point(class_scope:wandb_internal.TrainiumInfo)
1265
+ })
1266
+ _sym_db.RegisterMessage(TrainiumInfo)
1267
+
1268
+ TPUInfo = _reflection.GeneratedProtocolMessageType('TPUInfo', (_message.Message,), {
1269
+ 'DESCRIPTOR' : _TPUINFO,
1270
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1271
+ # @@protoc_insertion_point(class_scope:wandb_internal.TPUInfo)
1272
+ })
1273
+ _sym_db.RegisterMessage(TPUInfo)
1274
+
1275
+ CoreWeaveInfo = _reflection.GeneratedProtocolMessageType('CoreWeaveInfo', (_message.Message,), {
1276
+ 'DESCRIPTOR' : _COREWEAVEINFO,
1277
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1278
+ # @@protoc_insertion_point(class_scope:wandb_internal.CoreWeaveInfo)
1279
+ })
1280
+ _sym_db.RegisterMessage(CoreWeaveInfo)
1281
+
1282
+ EnvironmentRecord = _reflection.GeneratedProtocolMessageType('EnvironmentRecord', (_message.Message,), {
1283
+
1284
+ 'DiskEntry' : _reflection.GeneratedProtocolMessageType('DiskEntry', (_message.Message,), {
1285
+ 'DESCRIPTOR' : _ENVIRONMENTRECORD_DISKENTRY,
1286
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1287
+ # @@protoc_insertion_point(class_scope:wandb_internal.EnvironmentRecord.DiskEntry)
1288
+ })
1289
+ ,
1290
+
1291
+ 'SlurmEntry' : _reflection.GeneratedProtocolMessageType('SlurmEntry', (_message.Message,), {
1292
+ 'DESCRIPTOR' : _ENVIRONMENTRECORD_SLURMENTRY,
1293
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1294
+ # @@protoc_insertion_point(class_scope:wandb_internal.EnvironmentRecord.SlurmEntry)
1295
+ })
1296
+ ,
1297
+ 'DESCRIPTOR' : _ENVIRONMENTRECORD,
1298
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1299
+ # @@protoc_insertion_point(class_scope:wandb_internal.EnvironmentRecord)
1300
+ })
1301
+ _sym_db.RegisterMessage(EnvironmentRecord)
1302
+ _sym_db.RegisterMessage(EnvironmentRecord.DiskEntry)
1303
+ _sym_db.RegisterMessage(EnvironmentRecord.SlurmEntry)
1304
+
1305
+ PythonPackagesRequest = _reflection.GeneratedProtocolMessageType('PythonPackagesRequest', (_message.Message,), {
1306
+
1307
+ 'PythonPackage' : _reflection.GeneratedProtocolMessageType('PythonPackage', (_message.Message,), {
1308
+ 'DESCRIPTOR' : _PYTHONPACKAGESREQUEST_PYTHONPACKAGE,
1309
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1310
+ # @@protoc_insertion_point(class_scope:wandb_internal.PythonPackagesRequest.PythonPackage)
1311
+ })
1312
+ ,
1313
+ 'DESCRIPTOR' : _PYTHONPACKAGESREQUEST,
1314
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1315
+ # @@protoc_insertion_point(class_scope:wandb_internal.PythonPackagesRequest)
1316
+ })
1317
+ _sym_db.RegisterMessage(PythonPackagesRequest)
1318
+ _sym_db.RegisterMessage(PythonPackagesRequest.PythonPackage)
1319
+
1320
+ JobInputPath = _reflection.GeneratedProtocolMessageType('JobInputPath', (_message.Message,), {
1321
+ 'DESCRIPTOR' : _JOBINPUTPATH,
1322
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1323
+ # @@protoc_insertion_point(class_scope:wandb_internal.JobInputPath)
1324
+ })
1325
+ _sym_db.RegisterMessage(JobInputPath)
1326
+
1327
+ JobInputSource = _reflection.GeneratedProtocolMessageType('JobInputSource', (_message.Message,), {
1328
+
1329
+ 'RunConfigSource' : _reflection.GeneratedProtocolMessageType('RunConfigSource', (_message.Message,), {
1330
+ 'DESCRIPTOR' : _JOBINPUTSOURCE_RUNCONFIGSOURCE,
1331
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1332
+ # @@protoc_insertion_point(class_scope:wandb_internal.JobInputSource.RunConfigSource)
1333
+ })
1334
+ ,
1335
+
1336
+ 'ConfigFileSource' : _reflection.GeneratedProtocolMessageType('ConfigFileSource', (_message.Message,), {
1337
+ 'DESCRIPTOR' : _JOBINPUTSOURCE_CONFIGFILESOURCE,
1338
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1339
+ # @@protoc_insertion_point(class_scope:wandb_internal.JobInputSource.ConfigFileSource)
1340
+ })
1341
+ ,
1342
+ 'DESCRIPTOR' : _JOBINPUTSOURCE,
1343
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1344
+ # @@protoc_insertion_point(class_scope:wandb_internal.JobInputSource)
1345
+ })
1346
+ _sym_db.RegisterMessage(JobInputSource)
1347
+ _sym_db.RegisterMessage(JobInputSource.RunConfigSource)
1348
+ _sym_db.RegisterMessage(JobInputSource.ConfigFileSource)
1349
+
1350
+ JobInputRequest = _reflection.GeneratedProtocolMessageType('JobInputRequest', (_message.Message,), {
1351
+ 'DESCRIPTOR' : _JOBINPUTREQUEST,
1352
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1353
+ # @@protoc_insertion_point(class_scope:wandb_internal.JobInputRequest)
1354
+ })
1355
+ _sym_db.RegisterMessage(JobInputRequest)
1356
+
1357
+ ServerFeatureRequest = _reflection.GeneratedProtocolMessageType('ServerFeatureRequest', (_message.Message,), {
1358
+ 'DESCRIPTOR' : _SERVERFEATUREREQUEST,
1359
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1360
+ # @@protoc_insertion_point(class_scope:wandb_internal.ServerFeatureRequest)
1361
+ })
1362
+ _sym_db.RegisterMessage(ServerFeatureRequest)
1363
+
1364
+ ServerFeatureResponse = _reflection.GeneratedProtocolMessageType('ServerFeatureResponse', (_message.Message,), {
1365
+ 'DESCRIPTOR' : _SERVERFEATURERESPONSE,
1366
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1367
+ # @@protoc_insertion_point(class_scope:wandb_internal.ServerFeatureResponse)
1368
+ })
1369
+ _sym_db.RegisterMessage(ServerFeatureResponse)
1370
+
1371
+ ServerFeatureItem = _reflection.GeneratedProtocolMessageType('ServerFeatureItem', (_message.Message,), {
1372
+ 'DESCRIPTOR' : _SERVERFEATUREITEM,
1373
+ '__module__' : 'wandb.proto.wandb_internal_pb2'
1374
+ # @@protoc_insertion_point(class_scope:wandb_internal.ServerFeatureItem)
1375
+ })
1376
+ _sym_db.RegisterMessage(ServerFeatureItem)
1377
+
1378
+ if _descriptor._USE_C_DESCRIPTORS == False:
1379
+
1380
+ DESCRIPTOR._options = None
1381
+ DESCRIPTOR._serialized_options = b'Z\031core/pkg/service_go_proto'
1382
+ _GETSYSTEMMETRICSRESPONSE_SYSTEMMETRICSENTRY._options = None
1383
+ _GETSYSTEMMETRICSRESPONSE_SYSTEMMETRICSENTRY._serialized_options = b'8\001'
1384
+ _ENVIRONMENTRECORD_DISKENTRY._options = None
1385
+ _ENVIRONMENTRECORD_DISKENTRY._serialized_options = b'8\001'
1386
+ _ENVIRONMENTRECORD_SLURMENTRY._options = None
1387
+ _ENVIRONMENTRECORD_SLURMENTRY._serialized_options = b'8\001'
1388
+ _SERVERFEATURE._serialized_start=22338
1389
+ _SERVERFEATURE._serialized_end=22901
1390
+ _RECORD._serialized_start=180
1391
+ _RECORD._serialized_end=1411
1392
+ _CONTROL._serialized_start=1414
1393
+ _CONTROL._serialized_end=1582
1394
+ _RESULT._serialized_start=1585
1395
+ _RESULT._serialized_end=2084
1396
+ _FINALRECORD._serialized_start=2086
1397
+ _FINALRECORD._serialized_end=2144
1398
+ _VERSIONINFO._serialized_start=2146
1399
+ _VERSIONINFO._serialized_end=2244
1400
+ _HEADERRECORD._serialized_start=2246
1401
+ _HEADERRECORD._serialized_end=2356
1402
+ _FOOTERRECORD._serialized_start=2358
1403
+ _FOOTERRECORD._serialized_end=2417
1404
+ _BRANCHPOINT._serialized_start=2419
1405
+ _BRANCHPOINT._serialized_end=2476
1406
+ _RUNRECORD._serialized_start=2479
1407
+ _RUNRECORD._serialized_end=3136
1408
+ _GITREPORECORD._serialized_start=3138
1409
+ _GITREPORECORD._serialized_end=3197
1410
+ _RUNUPDATERESULT._serialized_start=3199
1411
+ _RUNUPDATERESULT._serialized_end=3298
1412
+ _ERRORINFO._serialized_start=3301
1413
+ _ERRORINFO._serialized_end=3473
1414
+ _ERRORINFO_ERRORCODE._serialized_start=3382
1415
+ _ERRORINFO_ERRORCODE._serialized_end=3473
1416
+ _RUNEXITRECORD._serialized_start=3475
1417
+ _RUNEXITRECORD._serialized_end=3571
1418
+ _RUNEXITRESULT._serialized_start=3573
1419
+ _RUNEXITRESULT._serialized_end=3588
1420
+ _RUNPREEMPTINGRECORD._serialized_start=3590
1421
+ _RUNPREEMPTINGRECORD._serialized_end=3656
1422
+ _RUNPREEMPTINGRESULT._serialized_start=3658
1423
+ _RUNPREEMPTINGRESULT._serialized_end=3679
1424
+ _SETTINGSRECORD._serialized_start=3681
1425
+ _SETTINGSRECORD._serialized_end=3786
1426
+ _SETTINGSITEM._serialized_start=3788
1427
+ _SETTINGSITEM._serialized_end=3835
1428
+ _HISTORYSTEP._serialized_start=3837
1429
+ _HISTORYSTEP._serialized_end=3863
1430
+ _HISTORYRECORD._serialized_start=3866
1431
+ _HISTORYRECORD._serialized_end=4012
1432
+ _HISTORYITEM._serialized_start=4014
1433
+ _HISTORYITEM._serialized_end=4080
1434
+ _HISTORYRESULT._serialized_start=4082
1435
+ _HISTORYRESULT._serialized_end=4097
1436
+ _OUTPUTRECORD._serialized_start=4100
1437
+ _OUTPUTRECORD._serialized_end=4320
1438
+ _OUTPUTRECORD_OUTPUTTYPE._serialized_start=4284
1439
+ _OUTPUTRECORD_OUTPUTTYPE._serialized_end=4320
1440
+ _OUTPUTRESULT._serialized_start=4322
1441
+ _OUTPUTRESULT._serialized_end=4336
1442
+ _OUTPUTRAWRECORD._serialized_start=4339
1443
+ _OUTPUTRAWRECORD._serialized_end=4565
1444
+ _OUTPUTRAWRECORD_OUTPUTTYPE._serialized_start=4284
1445
+ _OUTPUTRAWRECORD_OUTPUTTYPE._serialized_end=4320
1446
+ _OUTPUTRAWRESULT._serialized_start=4567
1447
+ _OUTPUTRAWRESULT._serialized_end=4584
1448
+ _METRICRECORD._serialized_start=4587
1449
+ _METRICRECORD._serialized_end=5023
1450
+ _METRICRECORD_METRICGOAL._serialized_start=4957
1451
+ _METRICRECORD_METRICGOAL._serialized_end=5023
1452
+ _METRICRESULT._serialized_start=5025
1453
+ _METRICRESULT._serialized_end=5039
1454
+ _METRICOPTIONS._serialized_start=5041
1455
+ _METRICOPTIONS._serialized_end=5108
1456
+ _METRICCONTROL._serialized_start=5110
1457
+ _METRICCONTROL._serialized_end=5144
1458
+ _METRICSUMMARY._serialized_start=5146
1459
+ _METRICSUMMARY._serialized_end=5272
1460
+ _CONFIGRECORD._serialized_start=5275
1461
+ _CONFIGRECORD._serialized_end=5422
1462
+ _CONFIGITEM._serialized_start=5424
1463
+ _CONFIGITEM._serialized_end=5489
1464
+ _CONFIGRESULT._serialized_start=5491
1465
+ _CONFIGRESULT._serialized_end=5505
1466
+ _SUMMARYRECORD._serialized_start=5508
1467
+ _SUMMARYRECORD._serialized_end=5658
1468
+ _SUMMARYITEM._serialized_start=5660
1469
+ _SUMMARYITEM._serialized_end=5726
1470
+ _SUMMARYRESULT._serialized_start=5728
1471
+ _SUMMARYRESULT._serialized_end=5743
1472
+ _FILESRECORD._serialized_start=5745
1473
+ _FILESRECORD._serialized_end=5845
1474
+ _FILESITEM._serialized_start=5848
1475
+ _FILESITEM._serialized_end=6084
1476
+ _FILESITEM_POLICYTYPE._serialized_start=5979
1477
+ _FILESITEM_POLICYTYPE._serialized_end=6019
1478
+ _FILESITEM_FILETYPE._serialized_start=6021
1479
+ _FILESITEM_FILETYPE._serialized_end=6078
1480
+ _FILESRESULT._serialized_start=6086
1481
+ _FILESRESULT._serialized_end=6099
1482
+ _STATSRECORD._serialized_start=6102
1483
+ _STATSRECORD._serialized_end=6332
1484
+ _STATSRECORD_STATSTYPE._serialized_start=6309
1485
+ _STATSRECORD_STATSTYPE._serialized_end=6332
1486
+ _STATSITEM._serialized_start=6334
1487
+ _STATSITEM._serialized_end=6378
1488
+ _ARTIFACTRECORD._serialized_start=6381
1489
+ _ARTIFACTRECORD._serialized_end=6868
1490
+ _ARTIFACTMANIFEST._serialized_start=6871
1491
+ _ARTIFACTMANIFEST._serialized_end=7087
1492
+ _ARTIFACTMANIFESTENTRY._serialized_start=7090
1493
+ _ARTIFACTMANIFESTENTRY._serialized_end=7297
1494
+ _EXTRAITEM._serialized_start=7299
1495
+ _EXTRAITEM._serialized_end=7343
1496
+ _STORAGEPOLICYCONFIGITEM._serialized_start=7345
1497
+ _STORAGEPOLICYCONFIGITEM._serialized_end=7403
1498
+ _ARTIFACTRESULT._serialized_start=7405
1499
+ _ARTIFACTRESULT._serialized_end=7421
1500
+ _LINKARTIFACTRESULT._serialized_start=7423
1501
+ _LINKARTIFACTRESULT._serialized_end=7443
1502
+ _LINKARTIFACTREQUEST._serialized_start=7446
1503
+ _LINKARTIFACTREQUEST._serialized_end=7686
1504
+ _LINKARTIFACTRESPONSE._serialized_start=7688
1505
+ _LINKARTIFACTRESPONSE._serialized_end=7779
1506
+ _TBRECORD._serialized_start=7781
1507
+ _TBRECORD._serialized_end=7885
1508
+ _TBRESULT._serialized_start=7887
1509
+ _TBRESULT._serialized_end=7897
1510
+ _ALERTRECORD._serialized_start=7899
1511
+ _ALERTRECORD._serialized_end=8024
1512
+ _ALERTRESULT._serialized_start=8026
1513
+ _ALERTRESULT._serialized_end=8039
1514
+ _REQUEST._serialized_start=8042
1515
+ _REQUEST._serialized_end=10338
1516
+ _RESPONSE._serialized_start=10341
1517
+ _RESPONSE._serialized_end=12160
1518
+ _DEFERREQUEST._serialized_start=12163
1519
+ _DEFERREQUEST._serialized_end=12483
1520
+ _DEFERREQUEST_DEFERSTATE._serialized_start=12236
1521
+ _DEFERREQUEST_DEFERSTATE._serialized_end=12483
1522
+ _PAUSEREQUEST._serialized_start=12485
1523
+ _PAUSEREQUEST._serialized_end=12545
1524
+ _PAUSERESPONSE._serialized_start=12547
1525
+ _PAUSERESPONSE._serialized_end=12562
1526
+ _RESUMEREQUEST._serialized_start=12564
1527
+ _RESUMEREQUEST._serialized_end=12625
1528
+ _RESUMERESPONSE._serialized_start=12627
1529
+ _RESUMERESPONSE._serialized_end=12643
1530
+ _LOGINREQUEST._serialized_start=12645
1531
+ _LOGINREQUEST._serialized_end=12722
1532
+ _LOGINRESPONSE._serialized_start=12724
1533
+ _LOGINRESPONSE._serialized_end=12762
1534
+ _GETSUMMARYREQUEST._serialized_start=12764
1535
+ _GETSUMMARYREQUEST._serialized_end=12829
1536
+ _GETSUMMARYRESPONSE._serialized_start=12831
1537
+ _GETSUMMARYRESPONSE._serialized_end=12894
1538
+ _GETSYSTEMMETRICSREQUEST._serialized_start=12896
1539
+ _GETSYSTEMMETRICSREQUEST._serialized_end=12967
1540
+ _SYSTEMMETRICSAMPLE._serialized_start=12969
1541
+ _SYSTEMMETRICSAMPLE._serialized_end=13051
1542
+ _SYSTEMMETRICSBUFFER._serialized_start=13053
1543
+ _SYSTEMMETRICSBUFFER._serialized_end=13126
1544
+ _GETSYSTEMMETRICSRESPONSE._serialized_start=13129
1545
+ _GETSYSTEMMETRICSRESPONSE._serialized_end=13331
1546
+ _GETSYSTEMMETRICSRESPONSE_SYSTEMMETRICSENTRY._serialized_start=13242
1547
+ _GETSYSTEMMETRICSRESPONSE_SYSTEMMETRICSENTRY._serialized_end=13331
1548
+ _STATUSREQUEST._serialized_start=13333
1549
+ _STATUSREQUEST._serialized_end=13394
1550
+ _STATUSRESPONSE._serialized_start=13396
1551
+ _STATUSRESPONSE._serialized_end=13437
1552
+ _STOPSTATUSREQUEST._serialized_start=13439
1553
+ _STOPSTATUSREQUEST._serialized_end=13504
1554
+ _STOPSTATUSRESPONSE._serialized_start=13506
1555
+ _STOPSTATUSRESPONSE._serialized_end=13551
1556
+ _NETWORKSTATUSREQUEST._serialized_start=13553
1557
+ _NETWORKSTATUSREQUEST._serialized_end=13621
1558
+ _NETWORKSTATUSRESPONSE._serialized_start=13623
1559
+ _NETWORKSTATUSRESPONSE._serialized_end=13703
1560
+ _HTTPRESPONSE._serialized_start=13705
1561
+ _HTTPRESPONSE._serialized_end=13773
1562
+ _INTERNALMESSAGESREQUEST._serialized_start=13775
1563
+ _INTERNALMESSAGESREQUEST._serialized_end=13846
1564
+ _INTERNALMESSAGESRESPONSE._serialized_start=13848
1565
+ _INTERNALMESSAGESRESPONSE._serialized_end=13926
1566
+ _INTERNALMESSAGES._serialized_start=13928
1567
+ _INTERNALMESSAGES._serialized_end=13963
1568
+ _POLLEXITREQUEST._serialized_start=13965
1569
+ _POLLEXITREQUEST._serialized_end=14028
1570
+ _POLLEXITRESPONSE._serialized_start=14031
1571
+ _POLLEXITRESPONSE._serialized_end=14276
1572
+ _OPERATIONSTATSREQUEST._serialized_start=14278
1573
+ _OPERATIONSTATSREQUEST._serialized_end=14347
1574
+ _OPERATIONSTATSRESPONSE._serialized_start=14349
1575
+ _OPERATIONSTATSRESPONSE._serialized_end=14430
1576
+ _OPERATIONSTATS._serialized_start=14432
1577
+ _OPERATIONSTATS._serialized_end=14521
1578
+ _OPERATION._serialized_start=14524
1579
+ _OPERATION._serialized_end=14659
1580
+ _SENDERMARKREQUEST._serialized_start=14661
1581
+ _SENDERMARKREQUEST._serialized_end=14680
1582
+ _SYNCFINISHREQUEST._serialized_start=14682
1583
+ _SYNCFINISHREQUEST._serialized_end=14701
1584
+ _SYNCRESPONSE._serialized_start=14703
1585
+ _SYNCRESPONSE._serialized_end=14772
1586
+ _SENDERREADREQUEST._serialized_start=14774
1587
+ _SENDERREADREQUEST._serialized_end=14837
1588
+ _STATUSREPORTREQUEST._serialized_start=14839
1589
+ _STATUSREPORTREQUEST._serialized_end=14948
1590
+ _SUMMARYRECORDREQUEST._serialized_start=14950
1591
+ _SUMMARYRECORDREQUEST._serialized_end=15020
1592
+ _TELEMETRYRECORDREQUEST._serialized_start=15022
1593
+ _TELEMETRYRECORDREQUEST._serialized_end=15098
1594
+ _SERVERINFOREQUEST._serialized_start=15100
1595
+ _SERVERINFOREQUEST._serialized_end=15165
1596
+ _SERVERINFORESPONSE._serialized_start=15167
1597
+ _SERVERINFORESPONSE._serialized_end=15291
1598
+ _SERVERMESSAGES._serialized_start=15293
1599
+ _SERVERMESSAGES._serialized_end=15354
1600
+ _SERVERMESSAGE._serialized_start=15356
1601
+ _SERVERMESSAGE._serialized_end=15457
1602
+ _FILECOUNTS._serialized_start=15459
1603
+ _FILECOUNTS._serialized_end=15558
1604
+ _FILEPUSHERSTATS._serialized_start=15560
1605
+ _FILEPUSHERSTATS._serialized_end=15645
1606
+ _FILESUPLOADED._serialized_start=15647
1607
+ _FILESUPLOADED._serialized_end=15677
1608
+ _FILETRANSFERINFOREQUEST._serialized_start=15680
1609
+ _FILETRANSFERINFOREQUEST._serialized_end=15924
1610
+ _FILETRANSFERINFOREQUEST_TRANSFERTYPE._serialized_start=15884
1611
+ _FILETRANSFERINFOREQUEST_TRANSFERTYPE._serialized_end=15924
1612
+ _LOCALINFO._serialized_start=15926
1613
+ _LOCALINFO._serialized_end=15975
1614
+ _SHUTDOWNREQUEST._serialized_start=15977
1615
+ _SHUTDOWNREQUEST._serialized_end=16040
1616
+ _SHUTDOWNRESPONSE._serialized_start=16042
1617
+ _SHUTDOWNRESPONSE._serialized_end=16060
1618
+ _ATTACHREQUEST._serialized_start=16062
1619
+ _ATTACHREQUEST._serialized_end=16142
1620
+ _ATTACHRESPONSE._serialized_start=16144
1621
+ _ATTACHRESPONSE._serialized_end=16242
1622
+ _TESTINJECTREQUEST._serialized_start=16245
1623
+ _TESTINJECTREQUEST._serialized_end=16586
1624
+ _TESTINJECTRESPONSE._serialized_start=16588
1625
+ _TESTINJECTRESPONSE._serialized_end=16608
1626
+ _HISTORYACTION._serialized_start=16610
1627
+ _HISTORYACTION._serialized_end=16640
1628
+ _PARTIALHISTORYREQUEST._serialized_start=16643
1629
+ _PARTIALHISTORYREQUEST._serialized_end=16845
1630
+ _PARTIALHISTORYRESPONSE._serialized_start=16847
1631
+ _PARTIALHISTORYRESPONSE._serialized_end=16871
1632
+ _SAMPLEDHISTORYREQUEST._serialized_start=16873
1633
+ _SAMPLEDHISTORYREQUEST._serialized_end=16942
1634
+ _SAMPLEDHISTORYITEM._serialized_start=16944
1635
+ _SAMPLEDHISTORYITEM._serialized_end=17039
1636
+ _SAMPLEDHISTORYRESPONSE._serialized_start=17041
1637
+ _SAMPLEDHISTORYRESPONSE._serialized_end=17115
1638
+ _RUNSTATUSREQUEST._serialized_start=17117
1639
+ _RUNSTATUSREQUEST._serialized_end=17181
1640
+ _RUNSTATUSRESPONSE._serialized_start=17183
1641
+ _RUNSTATUSRESPONSE._serialized_end=17303
1642
+ _RUNSTARTREQUEST._serialized_start=17305
1643
+ _RUNSTARTREQUEST._serialized_end=17408
1644
+ _RUNSTARTRESPONSE._serialized_start=17410
1645
+ _RUNSTARTRESPONSE._serialized_end=17428
1646
+ _RUNFINISHWITHOUTEXITREQUEST._serialized_start=17430
1647
+ _RUNFINISHWITHOUTEXITREQUEST._serialized_end=17505
1648
+ _RUNFINISHWITHOUTEXITRESPONSE._serialized_start=17507
1649
+ _RUNFINISHWITHOUTEXITRESPONSE._serialized_end=17537
1650
+ _CHECKVERSIONREQUEST._serialized_start=17539
1651
+ _CHECKVERSIONREQUEST._serialized_end=17631
1652
+ _CHECKVERSIONRESPONSE._serialized_start=17633
1653
+ _CHECKVERSIONRESPONSE._serialized_end=17726
1654
+ _JOBINFOREQUEST._serialized_start=17728
1655
+ _JOBINFOREQUEST._serialized_end=17790
1656
+ _JOBINFORESPONSE._serialized_start=17792
1657
+ _JOBINFORESPONSE._serialized_end=17846
1658
+ _LOGARTIFACTREQUEST._serialized_start=17849
1659
+ _LOGARTIFACTREQUEST._serialized_end=18008
1660
+ _LOGARTIFACTRESPONSE._serialized_start=18010
1661
+ _LOGARTIFACTRESPONSE._serialized_end=18075
1662
+ _DOWNLOADARTIFACTREQUEST._serialized_start=18078
1663
+ _DOWNLOADARTIFACTREQUEST._serialized_end=18268
1664
+ _DOWNLOADARTIFACTRESPONSE._serialized_start=18270
1665
+ _DOWNLOADARTIFACTRESPONSE._serialized_end=18319
1666
+ _KEEPALIVEREQUEST._serialized_start=18321
1667
+ _KEEPALIVEREQUEST._serialized_end=18385
1668
+ _KEEPALIVERESPONSE._serialized_start=18387
1669
+ _KEEPALIVERESPONSE._serialized_end=18406
1670
+ _ARTIFACTINFO._serialized_start=18408
1671
+ _ARTIFACTINFO._serialized_end=18521
1672
+ _GITINFO._serialized_start=18523
1673
+ _GITINFO._serialized_end=18564
1674
+ _GITSOURCE._serialized_start=18567
1675
+ _GITSOURCE._serialized_end=18702
1676
+ _IMAGESOURCE._serialized_start=18704
1677
+ _IMAGESOURCE._serialized_end=18732
1678
+ _SOURCE._serialized_start=18735
1679
+ _SOURCE._serialized_end=18875
1680
+ _JOBSOURCE._serialized_start=18877
1681
+ _JOBSOURCE._serialized_end=18984
1682
+ _PARTIALJOBARTIFACT._serialized_start=18986
1683
+ _PARTIALJOBARTIFACT._serialized_end=19072
1684
+ _USEARTIFACTRECORD._serialized_start=19075
1685
+ _USEARTIFACTRECORD._serialized_end=19232
1686
+ _USEARTIFACTRESULT._serialized_start=19234
1687
+ _USEARTIFACTRESULT._serialized_end=19253
1688
+ _CANCELREQUEST._serialized_start=19255
1689
+ _CANCELREQUEST._serialized_end=19337
1690
+ _CANCELRESPONSE._serialized_start=19339
1691
+ _CANCELRESPONSE._serialized_end=19355
1692
+ _PROBESYSTEMINFOREQUEST._serialized_start=19357
1693
+ _PROBESYSTEMINFOREQUEST._serialized_end=19381
1694
+ _DISKINFO._serialized_start=19383
1695
+ _DISKINFO._serialized_end=19422
1696
+ _MEMORYINFO._serialized_start=19424
1697
+ _MEMORYINFO._serialized_end=19451
1698
+ _CPUINFO._serialized_start=19453
1699
+ _CPUINFO._serialized_end=19500
1700
+ _APPLEINFO._serialized_start=19503
1701
+ _APPLEINFO._serialized_end=19657
1702
+ _GPUNVIDIAINFO._serialized_start=19659
1703
+ _GPUNVIDIAINFO._serialized_end=19766
1704
+ _GPUAMDINFO._serialized_start=19769
1705
+ _GPUAMDINFO._serialized_end=20034
1706
+ _TRAINIUMINFO._serialized_start=20036
1707
+ _TRAINIUMINFO._serialized_end=20146
1708
+ _TPUINFO._serialized_start=20148
1709
+ _TPUINFO._serialized_end=20229
1710
+ _COREWEAVEINFO._serialized_start=20231
1711
+ _COREWEAVEINFO._serialized_end=20300
1712
+ _ENVIRONMENTRECORD._serialized_start=20303
1713
+ _ENVIRONMENTRECORD._serialized_end=21495
1714
+ _ENVIRONMENTRECORD_DISKENTRY._serialized_start=21380
1715
+ _ENVIRONMENTRECORD_DISKENTRY._serialized_end=21449
1716
+ _ENVIRONMENTRECORD_SLURMENTRY._serialized_start=21451
1717
+ _ENVIRONMENTRECORD_SLURMENTRY._serialized_end=21495
1718
+ _PYTHONPACKAGESREQUEST._serialized_start=21498
1719
+ _PYTHONPACKAGESREQUEST._serialized_end=21639
1720
+ _PYTHONPACKAGESREQUEST_PYTHONPACKAGE._serialized_start=21593
1721
+ _PYTHONPACKAGESREQUEST_PYTHONPACKAGE._serialized_end=21639
1722
+ _JOBINPUTPATH._serialized_start=21641
1723
+ _JOBINPUTPATH._serialized_end=21669
1724
+ _JOBINPUTSOURCE._serialized_start=21672
1725
+ _JOBINPUTSOURCE._serialized_end=21886
1726
+ _JOBINPUTSOURCE_RUNCONFIGSOURCE._serialized_start=21825
1727
+ _JOBINPUTSOURCE_RUNCONFIGSOURCE._serialized_end=21842
1728
+ _JOBINPUTSOURCE_CONFIGFILESOURCE._serialized_start=21844
1729
+ _JOBINPUTSOURCE_CONFIGFILESOURCE._serialized_end=21876
1730
+ _JOBINPUTREQUEST._serialized_start=21889
1731
+ _JOBINPUTREQUEST._serialized_end=22088
1732
+ _SERVERFEATUREREQUEST._serialized_start=22090
1733
+ _SERVERFEATUREREQUEST._serialized_end=22206
1734
+ _SERVERFEATURERESPONSE._serialized_start=22208
1735
+ _SERVERFEATURERESPONSE._serialized_end=22283
1736
+ _SERVERFEATUREITEM._serialized_start=22285
1737
+ _SERVERFEATUREITEM._serialized_end=22335
1738
+ # @@protoc_insertion_point(module_scope)