wandb 0.19.9__py3-none-any.whl → 0.19.11__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (155) hide show
  1. wandb/__init__.py +1 -1
  2. wandb/__init__.pyi +6 -3
  3. wandb/_pydantic/__init__.py +14 -8
  4. wandb/_pydantic/base.py +51 -36
  5. wandb/_pydantic/utils.py +73 -0
  6. wandb/_pydantic/v1_compat.py +79 -57
  7. wandb/apis/public/__init__.py +2 -2
  8. wandb/apis/public/api.py +684 -4
  9. wandb/apis/public/artifacts.py +377 -677
  10. wandb/apis/public/automations.py +69 -0
  11. wandb/apis/public/integrations.py +180 -0
  12. wandb/apis/public/projects.py +29 -0
  13. wandb/apis/public/registries/__init__.py +0 -0
  14. wandb/apis/public/registries/_freezable_list.py +179 -0
  15. wandb/apis/public/{registries.py → registries/registries_search.py} +22 -129
  16. wandb/apis/public/registries/registry.py +357 -0
  17. wandb/apis/public/registries/utils.py +140 -0
  18. wandb/apis/public/runs.py +58 -56
  19. wandb/apis/public/utils.py +107 -1
  20. wandb/automations/__init__.py +73 -0
  21. wandb/automations/_filters/__init__.py +40 -0
  22. wandb/automations/_filters/expressions.py +181 -0
  23. wandb/automations/_filters/operators.py +258 -0
  24. wandb/automations/_filters/run_metrics.py +332 -0
  25. wandb/automations/_generated/__init__.py +177 -0
  26. wandb/automations/_generated/create_automation.py +17 -0
  27. wandb/automations/_generated/create_generic_webhook_integration.py +43 -0
  28. wandb/automations/_generated/delete_automation.py +17 -0
  29. wandb/automations/_generated/enums.py +33 -0
  30. wandb/automations/_generated/fragments.py +358 -0
  31. wandb/automations/_generated/generic_webhook_integrations_by_entity.py +22 -0
  32. wandb/automations/_generated/get_automations.py +24 -0
  33. wandb/automations/_generated/get_automations_by_entity.py +26 -0
  34. wandb/automations/_generated/input_types.py +104 -0
  35. wandb/automations/_generated/integrations_by_entity.py +22 -0
  36. wandb/automations/_generated/operations.py +647 -0
  37. wandb/automations/_generated/slack_integrations_by_entity.py +22 -0
  38. wandb/automations/_generated/update_automation.py +17 -0
  39. wandb/automations/_utils.py +237 -0
  40. wandb/automations/_validators.py +165 -0
  41. wandb/automations/actions.py +220 -0
  42. wandb/automations/automations.py +87 -0
  43. wandb/automations/events.py +287 -0
  44. wandb/automations/integrations.py +45 -0
  45. wandb/automations/scopes.py +78 -0
  46. wandb/beta/workflows.py +9 -10
  47. wandb/bin/gpu_stats +0 -0
  48. wandb/cli/cli.py +3 -3
  49. wandb/env.py +11 -0
  50. wandb/integration/keras/keras.py +2 -1
  51. wandb/integration/langchain/wandb_tracer.py +2 -1
  52. wandb/jupyter.py +137 -118
  53. wandb/old/settings.py +4 -1
  54. wandb/old/summary.py +0 -2
  55. wandb/proto/v3/wandb_internal_pb2.py +297 -292
  56. wandb/proto/v3/wandb_settings_pb2.py +2 -2
  57. wandb/proto/v3/wandb_telemetry_pb2.py +10 -10
  58. wandb/proto/v4/wandb_internal_pb2.py +292 -292
  59. wandb/proto/v4/wandb_settings_pb2.py +2 -2
  60. wandb/proto/v4/wandb_telemetry_pb2.py +10 -10
  61. wandb/proto/v5/wandb_internal_pb2.py +292 -292
  62. wandb/proto/v5/wandb_settings_pb2.py +2 -2
  63. wandb/proto/v5/wandb_telemetry_pb2.py +10 -10
  64. wandb/proto/v6/wandb_base_pb2.py +41 -0
  65. wandb/proto/v6/wandb_internal_pb2.py +393 -0
  66. wandb/proto/v6/wandb_server_pb2.py +78 -0
  67. wandb/proto/v6/wandb_settings_pb2.py +58 -0
  68. wandb/proto/v6/wandb_telemetry_pb2.py +52 -0
  69. wandb/proto/wandb_base_pb2.py +2 -0
  70. wandb/proto/wandb_deprecated.py +8 -0
  71. wandb/proto/wandb_internal_pb2.py +3 -1
  72. wandb/proto/wandb_server_pb2.py +2 -0
  73. wandb/proto/wandb_settings_pb2.py +2 -0
  74. wandb/proto/wandb_telemetry_pb2.py +2 -0
  75. wandb/sdk/artifacts/_generated/__init__.py +289 -0
  76. wandb/sdk/artifacts/_generated/add_aliases.py +21 -0
  77. wandb/sdk/artifacts/_generated/artifact_collection_membership_files.py +43 -0
  78. wandb/sdk/artifacts/_generated/artifact_version_files.py +36 -0
  79. wandb/sdk/artifacts/_generated/create_artifact_collection_tag_assignments.py +36 -0
  80. wandb/sdk/artifacts/_generated/delete_aliases.py +21 -0
  81. wandb/sdk/artifacts/_generated/delete_artifact_collection_tag_assignments.py +25 -0
  82. wandb/sdk/artifacts/_generated/delete_artifact_portfolio.py +35 -0
  83. wandb/sdk/artifacts/_generated/delete_artifact_sequence.py +35 -0
  84. wandb/sdk/artifacts/_generated/enums.py +17 -0
  85. wandb/sdk/artifacts/_generated/fetch_linked_artifacts.py +67 -0
  86. wandb/sdk/artifacts/_generated/fragments.py +221 -0
  87. wandb/sdk/artifacts/_generated/input_types.py +28 -0
  88. wandb/sdk/artifacts/_generated/move_artifact_collection.py +35 -0
  89. wandb/sdk/artifacts/_generated/operations.py +611 -0
  90. wandb/sdk/artifacts/_generated/project_artifact_collection.py +101 -0
  91. wandb/sdk/artifacts/_generated/project_artifact_collections.py +33 -0
  92. wandb/sdk/artifacts/_generated/project_artifact_type.py +24 -0
  93. wandb/sdk/artifacts/_generated/project_artifact_types.py +24 -0
  94. wandb/sdk/artifacts/_generated/project_artifacts.py +42 -0
  95. wandb/sdk/artifacts/_generated/run_input_artifacts.py +51 -0
  96. wandb/sdk/artifacts/_generated/run_output_artifacts.py +51 -0
  97. wandb/sdk/artifacts/_generated/update_artifact.py +26 -0
  98. wandb/sdk/artifacts/_generated/update_artifact_portfolio.py +35 -0
  99. wandb/sdk/artifacts/_generated/update_artifact_sequence.py +35 -0
  100. wandb/sdk/artifacts/_graphql_fragments.py +57 -79
  101. wandb/sdk/artifacts/_validators.py +120 -1
  102. wandb/sdk/artifacts/artifact.py +419 -215
  103. wandb/sdk/artifacts/artifact_file_cache.py +4 -6
  104. wandb/sdk/artifacts/artifact_manifest_entry.py +13 -3
  105. wandb/sdk/artifacts/storage_handlers/azure_handler.py +1 -0
  106. wandb/sdk/artifacts/storage_policies/wandb_storage_policy.py +182 -1
  107. wandb/sdk/artifacts/storage_policy.py +3 -0
  108. wandb/sdk/data_types/base_types/media.py +2 -3
  109. wandb/sdk/data_types/base_types/wb_value.py +34 -11
  110. wandb/sdk/data_types/html.py +36 -9
  111. wandb/sdk/data_types/image.py +12 -12
  112. wandb/sdk/data_types/table.py +5 -0
  113. wandb/sdk/data_types/trace_tree.py +2 -0
  114. wandb/sdk/data_types/utils.py +1 -1
  115. wandb/sdk/data_types/video.py +59 -57
  116. wandb/sdk/interface/interface.py +4 -3
  117. wandb/sdk/internal/internal_api.py +21 -31
  118. wandb/sdk/internal/profiler.py +6 -5
  119. wandb/sdk/internal/run.py +13 -6
  120. wandb/sdk/internal/sender.py +5 -2
  121. wandb/sdk/launch/sweeps/utils.py +8 -0
  122. wandb/sdk/lib/apikey.py +25 -4
  123. wandb/sdk/lib/asyncio_compat.py +1 -1
  124. wandb/sdk/lib/deprecate.py +13 -22
  125. wandb/sdk/lib/disabled.py +2 -1
  126. wandb/sdk/lib/printer.py +37 -8
  127. wandb/sdk/lib/printer_asyncio.py +46 -0
  128. wandb/sdk/lib/redirect.py +10 -5
  129. wandb/sdk/projects/_generated/__init__.py +47 -0
  130. wandb/sdk/projects/_generated/delete_project.py +22 -0
  131. wandb/sdk/projects/_generated/enums.py +4 -0
  132. wandb/sdk/projects/_generated/fetch_registry.py +22 -0
  133. wandb/sdk/projects/_generated/fragments.py +41 -0
  134. wandb/sdk/projects/_generated/input_types.py +13 -0
  135. wandb/sdk/projects/_generated/operations.py +88 -0
  136. wandb/sdk/projects/_generated/rename_project.py +27 -0
  137. wandb/sdk/projects/_generated/upsert_registry_project.py +27 -0
  138. wandb/sdk/service/server_sock.py +19 -14
  139. wandb/sdk/service/service.py +18 -8
  140. wandb/sdk/service/streams.py +5 -0
  141. wandb/sdk/verify/verify.py +6 -3
  142. wandb/sdk/wandb_init.py +217 -70
  143. wandb/sdk/wandb_login.py +13 -4
  144. wandb/sdk/wandb_run.py +419 -295
  145. wandb/sdk/wandb_settings.py +27 -10
  146. wandb/sdk/wandb_setup.py +61 -0
  147. wandb/util.py +33 -29
  148. {wandb-0.19.9.dist-info → wandb-0.19.11.dist-info}/METADATA +5 -5
  149. {wandb-0.19.9.dist-info → wandb-0.19.11.dist-info}/RECORD +152 -82
  150. wandb/_globals.py +0 -19
  151. wandb/sdk/internal/_generated/base.py +0 -226
  152. wandb/sdk/internal/_generated/typing_compat.py +0 -14
  153. {wandb-0.19.9.dist-info → wandb-0.19.11.dist-info}/WHEEL +0 -0
  154. {wandb-0.19.9.dist-info → wandb-0.19.11.dist-info}/entry_points.txt +0 -0
  155. {wandb-0.19.9.dist-info → wandb-0.19.11.dist-info}/licenses/LICENSE +0 -0
@@ -0,0 +1,393 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # NO CHECKED-IN PROTOBUF GENCODE
4
+ # source: wandb/proto/wandb_internal.proto
5
+ # Protobuf Python Version: 6.30.0
6
+ """Generated protocol buffer code."""
7
+ from google.protobuf import descriptor as _descriptor
8
+ from google.protobuf import descriptor_pool as _descriptor_pool
9
+ from google.protobuf import runtime_version as _runtime_version
10
+ from google.protobuf import symbol_database as _symbol_database
11
+ from google.protobuf.internal import builder as _builder
12
+ _runtime_version.ValidateProtobufRuntimeVersion(
13
+ _runtime_version.Domain.PUBLIC,
14
+ 6,
15
+ 30,
16
+ 0,
17
+ '',
18
+ 'wandb/proto/wandb_internal.proto'
19
+ )
20
+ # @@protoc_insertion_point(imports)
21
+
22
+ _sym_db = _symbol_database.Default()
23
+
24
+
25
+ from google.protobuf import empty_pb2 as google_dot_protobuf_dot_empty__pb2
26
+ from google.protobuf import timestamp_pb2 as google_dot_protobuf_dot_timestamp__pb2
27
+ from wandb.proto import wandb_base_pb2 as wandb_dot_proto_dot_wandb__base__pb2
28
+ from wandb.proto import wandb_telemetry_pb2 as wandb_dot_proto_dot_wandb__telemetry__pb2
29
+
30
+
31
+ 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\"\x95\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*\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\"\xde\x04\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+\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\"o\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\"\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\"\xa5\x12\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\x33\n\x08metadata\x18\x16 \x01(\x0b\x32\x1f.wandb_internal.MetadataRequestH\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\x12G\n\x13get_system_metadata\x18P \x01(\x0b\x32(.wandb_internal.GetSystemMetadataRequestH\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\x39\n\x0btest_inject\x18\xe8\x07 \x01(\x0b\x32!.wandb_internal.TestInjectRequestH\x00\x42\x0e\n\x0crequest_typeJ\x04\x08K\x10LJ\x04\x08L\x10M\"\xe8\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\x12Q\n\x1cget_system_metadata_response\x18I \x01(\x0b\x32).wandb_internal.GetSystemMetadataResponseH\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_type\"\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\"H\n\x18GetSystemMetadataRequest\x12,\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1c.wandb_internal._RequestInfo\"N\n\x19GetSystemMetadataResponse\x12\x31\n\x08metadata\x18\x01 \x01(\x0b\x32\x1f.wandb_internal.MetadataRequest\"=\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\"\'\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\"\xcc\t\n\x0fMetadataRequest\x12\n\n\x02os\x18\x01 \x01(\t\x12\x0e\n\x06python\x18\x02 \x01(\t\x12=\n\x0cheartbeat_at\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\x0bheartbeatAt\x12\x39\n\nstarted_at\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tstartedAt\x12\x0e\n\x06\x64ocker\x18\x05 \x01(\t\x12\x0c\n\x04\x63uda\x18\x06 \x01(\t\x12\x0c\n\x04\x61rgs\x18\x07 \x03(\t\x12\r\n\x05state\x18\x08 \x01(\t\x12\x0f\n\x07program\x18\t \x01(\t\x12\x1b\n\tcode_path\x18\n \x01(\tR\x08\x63odePath\x12*\n\x03git\x18\x0b \x01(\x0b\x32\x1d.wandb_internal.GitRepoRecord\x12\r\n\x05\x65mail\x18\x0c \x01(\t\x12\x0c\n\x04root\x18\r \x01(\t\x12\x0c\n\x04host\x18\x0e \x01(\t\x12\x10\n\x08username\x18\x0f \x01(\t\x12\x12\n\nexecutable\x18\x10 \x01(\t\x12&\n\x0f\x63ode_path_local\x18\x11 \x01(\tR\rcodePathLocal\x12\r\n\x05\x63olab\x18\x12 \x01(\t\x12\x1c\n\tcpu_count\x18\x13 \x01(\rR\tcpu_count\x12,\n\x11\x63pu_count_logical\x18\x14 \x01(\rR\x11\x63pu_count_logical\x12\x15\n\x08gpu_type\x18\x15 \x01(\tR\x03gpu\x12\x1c\n\tgpu_count\x18\x16 \x01(\rR\tgpu_count\x12\x37\n\x04\x64isk\x18\x17 \x03(\x0b\x32).wandb_internal.MetadataRequest.DiskEntry\x12*\n\x06memory\x18\x18 \x01(\x0b\x32\x1a.wandb_internal.MemoryInfo\x12$\n\x03\x63pu\x18\x19 \x01(\x0b\x32\x17.wandb_internal.CpuInfo\x12(\n\x05\x61pple\x18\x1a \x01(\x0b\x32\x19.wandb_internal.AppleInfo\x12=\n\ngpu_nvidia\x18\x1b \x03(\x0b\x32\x1d.wandb_internal.GpuNvidiaInfoR\ngpu_nvidia\x12\x34\n\x07gpu_amd\x18\x1c \x03(\x0b\x32\x1a.wandb_internal.GpuAmdInfoR\x07gpu_amd\x12\x39\n\x05slurm\x18\x1d \x03(\x0b\x32*.wandb_internal.MetadataRequest.SlurmEntry\x12\x14\n\x0c\x63uda_version\x18\x1e \x01(\t\x12.\n\x08trainium\x18\x1f \x01(\x0b\x32\x1c.wandb_internal.TrainiumInfo\x12$\n\x03tpu\x18 \x01(\x0b\x32\x17.wandb_internal.TPUInfo\x12,\n\x0e_user_modified\x18\xc8\x01 \x01(\x08H\x00R\x0e_user_modified\x88\x01\x01\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\x42\x11\n\x0fX_user_modified\"\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*\xd4\x03\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\x42\x1bZ\x19\x63ore/pkg/service_go_protob\x06proto3')
32
+
33
+ _globals = globals()
34
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
35
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'wandb.proto.wandb_internal_pb2', _globals)
36
+ if not _descriptor._USE_C_DESCRIPTORS:
37
+ _globals['DESCRIPTOR']._loaded_options = None
38
+ _globals['DESCRIPTOR']._serialized_options = b'Z\031core/pkg/service_go_proto'
39
+ _globals['_GETSYSTEMMETRICSRESPONSE_SYSTEMMETRICSENTRY']._loaded_options = None
40
+ _globals['_GETSYSTEMMETRICSRESPONSE_SYSTEMMETRICSENTRY']._serialized_options = b'8\001'
41
+ _globals['_METADATAREQUEST_DISKENTRY']._loaded_options = None
42
+ _globals['_METADATAREQUEST_DISKENTRY']._serialized_options = b'8\001'
43
+ _globals['_METADATAREQUEST_SLURMENTRY']._loaded_options = None
44
+ _globals['_METADATAREQUEST_SLURMENTRY']._serialized_options = b'8\001'
45
+ _globals['_SERVERFEATURE']._serialized_start=22370
46
+ _globals['_SERVERFEATURE']._serialized_end=22838
47
+ _globals['_RECORD']._serialized_start=180
48
+ _globals['_RECORD']._serialized_end=1353
49
+ _globals['_CONTROL']._serialized_start=1356
50
+ _globals['_CONTROL']._serialized_end=1524
51
+ _globals['_RESULT']._serialized_start=1527
52
+ _globals['_RESULT']._serialized_end=2026
53
+ _globals['_FINALRECORD']._serialized_start=2028
54
+ _globals['_FINALRECORD']._serialized_end=2086
55
+ _globals['_VERSIONINFO']._serialized_start=2088
56
+ _globals['_VERSIONINFO']._serialized_end=2186
57
+ _globals['_HEADERRECORD']._serialized_start=2188
58
+ _globals['_HEADERRECORD']._serialized_end=2298
59
+ _globals['_FOOTERRECORD']._serialized_start=2300
60
+ _globals['_FOOTERRECORD']._serialized_end=2359
61
+ _globals['_RUNRECORD']._serialized_start=2362
62
+ _globals['_RUNRECORD']._serialized_end=2968
63
+ _globals['_GITREPORECORD']._serialized_start=2970
64
+ _globals['_GITREPORECORD']._serialized_end=3029
65
+ _globals['_RUNUPDATERESULT']._serialized_start=3031
66
+ _globals['_RUNUPDATERESULT']._serialized_end=3130
67
+ _globals['_ERRORINFO']._serialized_start=3133
68
+ _globals['_ERRORINFO']._serialized_end=3305
69
+ _globals['_ERRORINFO_ERRORCODE']._serialized_start=3214
70
+ _globals['_ERRORINFO_ERRORCODE']._serialized_end=3305
71
+ _globals['_RUNEXITRECORD']._serialized_start=3307
72
+ _globals['_RUNEXITRECORD']._serialized_end=3403
73
+ _globals['_RUNEXITRESULT']._serialized_start=3405
74
+ _globals['_RUNEXITRESULT']._serialized_end=3420
75
+ _globals['_RUNPREEMPTINGRECORD']._serialized_start=3422
76
+ _globals['_RUNPREEMPTINGRECORD']._serialized_end=3488
77
+ _globals['_RUNPREEMPTINGRESULT']._serialized_start=3490
78
+ _globals['_RUNPREEMPTINGRESULT']._serialized_end=3511
79
+ _globals['_SETTINGSRECORD']._serialized_start=3513
80
+ _globals['_SETTINGSRECORD']._serialized_end=3618
81
+ _globals['_SETTINGSITEM']._serialized_start=3620
82
+ _globals['_SETTINGSITEM']._serialized_end=3667
83
+ _globals['_HISTORYSTEP']._serialized_start=3669
84
+ _globals['_HISTORYSTEP']._serialized_end=3695
85
+ _globals['_HISTORYRECORD']._serialized_start=3698
86
+ _globals['_HISTORYRECORD']._serialized_end=3844
87
+ _globals['_HISTORYITEM']._serialized_start=3846
88
+ _globals['_HISTORYITEM']._serialized_end=3912
89
+ _globals['_HISTORYRESULT']._serialized_start=3914
90
+ _globals['_HISTORYRESULT']._serialized_end=3929
91
+ _globals['_OUTPUTRECORD']._serialized_start=3932
92
+ _globals['_OUTPUTRECORD']._serialized_end=4152
93
+ _globals['_OUTPUTRECORD_OUTPUTTYPE']._serialized_start=4116
94
+ _globals['_OUTPUTRECORD_OUTPUTTYPE']._serialized_end=4152
95
+ _globals['_OUTPUTRESULT']._serialized_start=4154
96
+ _globals['_OUTPUTRESULT']._serialized_end=4168
97
+ _globals['_OUTPUTRAWRECORD']._serialized_start=4171
98
+ _globals['_OUTPUTRAWRECORD']._serialized_end=4397
99
+ _globals['_OUTPUTRAWRECORD_OUTPUTTYPE']._serialized_start=4116
100
+ _globals['_OUTPUTRAWRECORD_OUTPUTTYPE']._serialized_end=4152
101
+ _globals['_OUTPUTRAWRESULT']._serialized_start=4399
102
+ _globals['_OUTPUTRAWRESULT']._serialized_end=4416
103
+ _globals['_METRICRECORD']._serialized_start=4419
104
+ _globals['_METRICRECORD']._serialized_end=4855
105
+ _globals['_METRICRECORD_METRICGOAL']._serialized_start=4789
106
+ _globals['_METRICRECORD_METRICGOAL']._serialized_end=4855
107
+ _globals['_METRICRESULT']._serialized_start=4857
108
+ _globals['_METRICRESULT']._serialized_end=4871
109
+ _globals['_METRICOPTIONS']._serialized_start=4873
110
+ _globals['_METRICOPTIONS']._serialized_end=4940
111
+ _globals['_METRICCONTROL']._serialized_start=4942
112
+ _globals['_METRICCONTROL']._serialized_end=4976
113
+ _globals['_METRICSUMMARY']._serialized_start=4978
114
+ _globals['_METRICSUMMARY']._serialized_end=5089
115
+ _globals['_CONFIGRECORD']._serialized_start=5092
116
+ _globals['_CONFIGRECORD']._serialized_end=5239
117
+ _globals['_CONFIGITEM']._serialized_start=5241
118
+ _globals['_CONFIGITEM']._serialized_end=5306
119
+ _globals['_CONFIGRESULT']._serialized_start=5308
120
+ _globals['_CONFIGRESULT']._serialized_end=5322
121
+ _globals['_SUMMARYRECORD']._serialized_start=5325
122
+ _globals['_SUMMARYRECORD']._serialized_end=5475
123
+ _globals['_SUMMARYITEM']._serialized_start=5477
124
+ _globals['_SUMMARYITEM']._serialized_end=5543
125
+ _globals['_SUMMARYRESULT']._serialized_start=5545
126
+ _globals['_SUMMARYRESULT']._serialized_end=5560
127
+ _globals['_FILESRECORD']._serialized_start=5562
128
+ _globals['_FILESRECORD']._serialized_end=5662
129
+ _globals['_FILESITEM']._serialized_start=5665
130
+ _globals['_FILESITEM']._serialized_end=5901
131
+ _globals['_FILESITEM_POLICYTYPE']._serialized_start=5796
132
+ _globals['_FILESITEM_POLICYTYPE']._serialized_end=5836
133
+ _globals['_FILESITEM_FILETYPE']._serialized_start=5838
134
+ _globals['_FILESITEM_FILETYPE']._serialized_end=5895
135
+ _globals['_FILESRESULT']._serialized_start=5903
136
+ _globals['_FILESRESULT']._serialized_end=5916
137
+ _globals['_STATSRECORD']._serialized_start=5919
138
+ _globals['_STATSRECORD']._serialized_end=6149
139
+ _globals['_STATSRECORD_STATSTYPE']._serialized_start=6126
140
+ _globals['_STATSRECORD_STATSTYPE']._serialized_end=6149
141
+ _globals['_STATSITEM']._serialized_start=6151
142
+ _globals['_STATSITEM']._serialized_end=6195
143
+ _globals['_ARTIFACTRECORD']._serialized_start=6198
144
+ _globals['_ARTIFACTRECORD']._serialized_end=6685
145
+ _globals['_ARTIFACTMANIFEST']._serialized_start=6688
146
+ _globals['_ARTIFACTMANIFEST']._serialized_end=6904
147
+ _globals['_ARTIFACTMANIFESTENTRY']._serialized_start=6907
148
+ _globals['_ARTIFACTMANIFESTENTRY']._serialized_end=7114
149
+ _globals['_EXTRAITEM']._serialized_start=7116
150
+ _globals['_EXTRAITEM']._serialized_end=7160
151
+ _globals['_STORAGEPOLICYCONFIGITEM']._serialized_start=7162
152
+ _globals['_STORAGEPOLICYCONFIGITEM']._serialized_end=7220
153
+ _globals['_ARTIFACTRESULT']._serialized_start=7222
154
+ _globals['_ARTIFACTRESULT']._serialized_end=7238
155
+ _globals['_LINKARTIFACTRESULT']._serialized_start=7240
156
+ _globals['_LINKARTIFACTRESULT']._serialized_end=7260
157
+ _globals['_LINKARTIFACTREQUEST']._serialized_start=7263
158
+ _globals['_LINKARTIFACTREQUEST']._serialized_end=7503
159
+ _globals['_LINKARTIFACTRESPONSE']._serialized_start=7505
160
+ _globals['_LINKARTIFACTRESPONSE']._serialized_end=7596
161
+ _globals['_TBRECORD']._serialized_start=7598
162
+ _globals['_TBRECORD']._serialized_end=7702
163
+ _globals['_TBRESULT']._serialized_start=7704
164
+ _globals['_TBRESULT']._serialized_end=7714
165
+ _globals['_ALERTRECORD']._serialized_start=7716
166
+ _globals['_ALERTRECORD']._serialized_end=7841
167
+ _globals['_ALERTRESULT']._serialized_start=7843
168
+ _globals['_ALERTRESULT']._serialized_end=7856
169
+ _globals['_REQUEST']._serialized_start=7859
170
+ _globals['_REQUEST']._serialized_end=10200
171
+ _globals['_RESPONSE']._serialized_start=10203
172
+ _globals['_RESPONSE']._serialized_end=12099
173
+ _globals['_DEFERREQUEST']._serialized_start=12102
174
+ _globals['_DEFERREQUEST']._serialized_end=12422
175
+ _globals['_DEFERREQUEST_DEFERSTATE']._serialized_start=12175
176
+ _globals['_DEFERREQUEST_DEFERSTATE']._serialized_end=12422
177
+ _globals['_PAUSEREQUEST']._serialized_start=12424
178
+ _globals['_PAUSEREQUEST']._serialized_end=12484
179
+ _globals['_PAUSERESPONSE']._serialized_start=12486
180
+ _globals['_PAUSERESPONSE']._serialized_end=12501
181
+ _globals['_RESUMEREQUEST']._serialized_start=12503
182
+ _globals['_RESUMEREQUEST']._serialized_end=12564
183
+ _globals['_RESUMERESPONSE']._serialized_start=12566
184
+ _globals['_RESUMERESPONSE']._serialized_end=12582
185
+ _globals['_LOGINREQUEST']._serialized_start=12584
186
+ _globals['_LOGINREQUEST']._serialized_end=12661
187
+ _globals['_LOGINRESPONSE']._serialized_start=12663
188
+ _globals['_LOGINRESPONSE']._serialized_end=12701
189
+ _globals['_GETSUMMARYREQUEST']._serialized_start=12703
190
+ _globals['_GETSUMMARYREQUEST']._serialized_end=12768
191
+ _globals['_GETSUMMARYRESPONSE']._serialized_start=12770
192
+ _globals['_GETSUMMARYRESPONSE']._serialized_end=12833
193
+ _globals['_GETSYSTEMMETRICSREQUEST']._serialized_start=12835
194
+ _globals['_GETSYSTEMMETRICSREQUEST']._serialized_end=12906
195
+ _globals['_SYSTEMMETRICSAMPLE']._serialized_start=12908
196
+ _globals['_SYSTEMMETRICSAMPLE']._serialized_end=12990
197
+ _globals['_SYSTEMMETRICSBUFFER']._serialized_start=12992
198
+ _globals['_SYSTEMMETRICSBUFFER']._serialized_end=13065
199
+ _globals['_GETSYSTEMMETRICSRESPONSE']._serialized_start=13068
200
+ _globals['_GETSYSTEMMETRICSRESPONSE']._serialized_end=13270
201
+ _globals['_GETSYSTEMMETRICSRESPONSE_SYSTEMMETRICSENTRY']._serialized_start=13181
202
+ _globals['_GETSYSTEMMETRICSRESPONSE_SYSTEMMETRICSENTRY']._serialized_end=13270
203
+ _globals['_GETSYSTEMMETADATAREQUEST']._serialized_start=13272
204
+ _globals['_GETSYSTEMMETADATAREQUEST']._serialized_end=13344
205
+ _globals['_GETSYSTEMMETADATARESPONSE']._serialized_start=13346
206
+ _globals['_GETSYSTEMMETADATARESPONSE']._serialized_end=13424
207
+ _globals['_STATUSREQUEST']._serialized_start=13426
208
+ _globals['_STATUSREQUEST']._serialized_end=13487
209
+ _globals['_STATUSRESPONSE']._serialized_start=13489
210
+ _globals['_STATUSRESPONSE']._serialized_end=13530
211
+ _globals['_STOPSTATUSREQUEST']._serialized_start=13532
212
+ _globals['_STOPSTATUSREQUEST']._serialized_end=13597
213
+ _globals['_STOPSTATUSRESPONSE']._serialized_start=13599
214
+ _globals['_STOPSTATUSRESPONSE']._serialized_end=13644
215
+ _globals['_NETWORKSTATUSREQUEST']._serialized_start=13646
216
+ _globals['_NETWORKSTATUSREQUEST']._serialized_end=13714
217
+ _globals['_NETWORKSTATUSRESPONSE']._serialized_start=13716
218
+ _globals['_NETWORKSTATUSRESPONSE']._serialized_end=13796
219
+ _globals['_HTTPRESPONSE']._serialized_start=13798
220
+ _globals['_HTTPRESPONSE']._serialized_end=13866
221
+ _globals['_INTERNALMESSAGESREQUEST']._serialized_start=13868
222
+ _globals['_INTERNALMESSAGESREQUEST']._serialized_end=13939
223
+ _globals['_INTERNALMESSAGESRESPONSE']._serialized_start=13941
224
+ _globals['_INTERNALMESSAGESRESPONSE']._serialized_end=14019
225
+ _globals['_INTERNALMESSAGES']._serialized_start=14021
226
+ _globals['_INTERNALMESSAGES']._serialized_end=14056
227
+ _globals['_POLLEXITREQUEST']._serialized_start=14058
228
+ _globals['_POLLEXITREQUEST']._serialized_end=14121
229
+ _globals['_POLLEXITRESPONSE']._serialized_start=14124
230
+ _globals['_POLLEXITRESPONSE']._serialized_end=14369
231
+ _globals['_OPERATIONSTATSREQUEST']._serialized_start=14371
232
+ _globals['_OPERATIONSTATSREQUEST']._serialized_end=14440
233
+ _globals['_OPERATIONSTATSRESPONSE']._serialized_start=14442
234
+ _globals['_OPERATIONSTATSRESPONSE']._serialized_end=14523
235
+ _globals['_OPERATIONSTATS']._serialized_start=14525
236
+ _globals['_OPERATIONSTATS']._serialized_end=14614
237
+ _globals['_OPERATION']._serialized_start=14617
238
+ _globals['_OPERATION']._serialized_end=14752
239
+ _globals['_SENDERMARKREQUEST']._serialized_start=14754
240
+ _globals['_SENDERMARKREQUEST']._serialized_end=14773
241
+ _globals['_SYNCFINISHREQUEST']._serialized_start=14775
242
+ _globals['_SYNCFINISHREQUEST']._serialized_end=14794
243
+ _globals['_SYNCRESPONSE']._serialized_start=14796
244
+ _globals['_SYNCRESPONSE']._serialized_end=14865
245
+ _globals['_SENDERREADREQUEST']._serialized_start=14867
246
+ _globals['_SENDERREADREQUEST']._serialized_end=14930
247
+ _globals['_STATUSREPORTREQUEST']._serialized_start=14932
248
+ _globals['_STATUSREPORTREQUEST']._serialized_end=15041
249
+ _globals['_SUMMARYRECORDREQUEST']._serialized_start=15043
250
+ _globals['_SUMMARYRECORDREQUEST']._serialized_end=15113
251
+ _globals['_TELEMETRYRECORDREQUEST']._serialized_start=15115
252
+ _globals['_TELEMETRYRECORDREQUEST']._serialized_end=15191
253
+ _globals['_SERVERINFOREQUEST']._serialized_start=15193
254
+ _globals['_SERVERINFOREQUEST']._serialized_end=15258
255
+ _globals['_SERVERINFORESPONSE']._serialized_start=15260
256
+ _globals['_SERVERINFORESPONSE']._serialized_end=15384
257
+ _globals['_SERVERMESSAGES']._serialized_start=15386
258
+ _globals['_SERVERMESSAGES']._serialized_end=15447
259
+ _globals['_SERVERMESSAGE']._serialized_start=15449
260
+ _globals['_SERVERMESSAGE']._serialized_end=15550
261
+ _globals['_FILECOUNTS']._serialized_start=15552
262
+ _globals['_FILECOUNTS']._serialized_end=15651
263
+ _globals['_FILEPUSHERSTATS']._serialized_start=15653
264
+ _globals['_FILEPUSHERSTATS']._serialized_end=15738
265
+ _globals['_FILESUPLOADED']._serialized_start=15740
266
+ _globals['_FILESUPLOADED']._serialized_end=15770
267
+ _globals['_FILETRANSFERINFOREQUEST']._serialized_start=15773
268
+ _globals['_FILETRANSFERINFOREQUEST']._serialized_end=16017
269
+ _globals['_FILETRANSFERINFOREQUEST_TRANSFERTYPE']._serialized_start=15977
270
+ _globals['_FILETRANSFERINFOREQUEST_TRANSFERTYPE']._serialized_end=16017
271
+ _globals['_LOCALINFO']._serialized_start=16019
272
+ _globals['_LOCALINFO']._serialized_end=16068
273
+ _globals['_SHUTDOWNREQUEST']._serialized_start=16070
274
+ _globals['_SHUTDOWNREQUEST']._serialized_end=16133
275
+ _globals['_SHUTDOWNRESPONSE']._serialized_start=16135
276
+ _globals['_SHUTDOWNRESPONSE']._serialized_end=16153
277
+ _globals['_ATTACHREQUEST']._serialized_start=16155
278
+ _globals['_ATTACHREQUEST']._serialized_end=16235
279
+ _globals['_ATTACHRESPONSE']._serialized_start=16237
280
+ _globals['_ATTACHRESPONSE']._serialized_end=16335
281
+ _globals['_TESTINJECTREQUEST']._serialized_start=16338
282
+ _globals['_TESTINJECTREQUEST']._serialized_end=16679
283
+ _globals['_TESTINJECTRESPONSE']._serialized_start=16681
284
+ _globals['_TESTINJECTRESPONSE']._serialized_end=16701
285
+ _globals['_HISTORYACTION']._serialized_start=16703
286
+ _globals['_HISTORYACTION']._serialized_end=16733
287
+ _globals['_PARTIALHISTORYREQUEST']._serialized_start=16736
288
+ _globals['_PARTIALHISTORYREQUEST']._serialized_end=16938
289
+ _globals['_PARTIALHISTORYRESPONSE']._serialized_start=16940
290
+ _globals['_PARTIALHISTORYRESPONSE']._serialized_end=16964
291
+ _globals['_SAMPLEDHISTORYREQUEST']._serialized_start=16966
292
+ _globals['_SAMPLEDHISTORYREQUEST']._serialized_end=17035
293
+ _globals['_SAMPLEDHISTORYITEM']._serialized_start=17037
294
+ _globals['_SAMPLEDHISTORYITEM']._serialized_end=17132
295
+ _globals['_SAMPLEDHISTORYRESPONSE']._serialized_start=17134
296
+ _globals['_SAMPLEDHISTORYRESPONSE']._serialized_end=17208
297
+ _globals['_RUNSTATUSREQUEST']._serialized_start=17210
298
+ _globals['_RUNSTATUSREQUEST']._serialized_end=17274
299
+ _globals['_RUNSTATUSRESPONSE']._serialized_start=17276
300
+ _globals['_RUNSTATUSRESPONSE']._serialized_end=17396
301
+ _globals['_RUNSTARTREQUEST']._serialized_start=17398
302
+ _globals['_RUNSTARTREQUEST']._serialized_end=17501
303
+ _globals['_RUNSTARTRESPONSE']._serialized_start=17503
304
+ _globals['_RUNSTARTRESPONSE']._serialized_end=17521
305
+ _globals['_RUNFINISHWITHOUTEXITREQUEST']._serialized_start=17523
306
+ _globals['_RUNFINISHWITHOUTEXITREQUEST']._serialized_end=17598
307
+ _globals['_RUNFINISHWITHOUTEXITRESPONSE']._serialized_start=17600
308
+ _globals['_RUNFINISHWITHOUTEXITRESPONSE']._serialized_end=17630
309
+ _globals['_CHECKVERSIONREQUEST']._serialized_start=17632
310
+ _globals['_CHECKVERSIONREQUEST']._serialized_end=17724
311
+ _globals['_CHECKVERSIONRESPONSE']._serialized_start=17726
312
+ _globals['_CHECKVERSIONRESPONSE']._serialized_end=17819
313
+ _globals['_JOBINFOREQUEST']._serialized_start=17821
314
+ _globals['_JOBINFOREQUEST']._serialized_end=17883
315
+ _globals['_JOBINFORESPONSE']._serialized_start=17885
316
+ _globals['_JOBINFORESPONSE']._serialized_end=17939
317
+ _globals['_LOGARTIFACTREQUEST']._serialized_start=17942
318
+ _globals['_LOGARTIFACTREQUEST']._serialized_end=18101
319
+ _globals['_LOGARTIFACTRESPONSE']._serialized_start=18103
320
+ _globals['_LOGARTIFACTRESPONSE']._serialized_end=18168
321
+ _globals['_DOWNLOADARTIFACTREQUEST']._serialized_start=18171
322
+ _globals['_DOWNLOADARTIFACTREQUEST']._serialized_end=18361
323
+ _globals['_DOWNLOADARTIFACTRESPONSE']._serialized_start=18363
324
+ _globals['_DOWNLOADARTIFACTRESPONSE']._serialized_end=18412
325
+ _globals['_KEEPALIVEREQUEST']._serialized_start=18414
326
+ _globals['_KEEPALIVEREQUEST']._serialized_end=18478
327
+ _globals['_KEEPALIVERESPONSE']._serialized_start=18480
328
+ _globals['_KEEPALIVERESPONSE']._serialized_end=18499
329
+ _globals['_ARTIFACTINFO']._serialized_start=18501
330
+ _globals['_ARTIFACTINFO']._serialized_end=18614
331
+ _globals['_GITINFO']._serialized_start=18616
332
+ _globals['_GITINFO']._serialized_end=18657
333
+ _globals['_GITSOURCE']._serialized_start=18660
334
+ _globals['_GITSOURCE']._serialized_end=18795
335
+ _globals['_IMAGESOURCE']._serialized_start=18797
336
+ _globals['_IMAGESOURCE']._serialized_end=18825
337
+ _globals['_SOURCE']._serialized_start=18828
338
+ _globals['_SOURCE']._serialized_end=18968
339
+ _globals['_JOBSOURCE']._serialized_start=18970
340
+ _globals['_JOBSOURCE']._serialized_end=19077
341
+ _globals['_PARTIALJOBARTIFACT']._serialized_start=19079
342
+ _globals['_PARTIALJOBARTIFACT']._serialized_end=19165
343
+ _globals['_USEARTIFACTRECORD']._serialized_start=19168
344
+ _globals['_USEARTIFACTRECORD']._serialized_end=19325
345
+ _globals['_USEARTIFACTRESULT']._serialized_start=19327
346
+ _globals['_USEARTIFACTRESULT']._serialized_end=19346
347
+ _globals['_CANCELREQUEST']._serialized_start=19348
348
+ _globals['_CANCELREQUEST']._serialized_end=19430
349
+ _globals['_CANCELRESPONSE']._serialized_start=19432
350
+ _globals['_CANCELRESPONSE']._serialized_end=19448
351
+ _globals['_DISKINFO']._serialized_start=19450
352
+ _globals['_DISKINFO']._serialized_end=19489
353
+ _globals['_MEMORYINFO']._serialized_start=19491
354
+ _globals['_MEMORYINFO']._serialized_end=19518
355
+ _globals['_CPUINFO']._serialized_start=19520
356
+ _globals['_CPUINFO']._serialized_end=19567
357
+ _globals['_APPLEINFO']._serialized_start=19570
358
+ _globals['_APPLEINFO']._serialized_end=19724
359
+ _globals['_GPUNVIDIAINFO']._serialized_start=19726
360
+ _globals['_GPUNVIDIAINFO']._serialized_end=19833
361
+ _globals['_GPUAMDINFO']._serialized_start=19836
362
+ _globals['_GPUAMDINFO']._serialized_end=20101
363
+ _globals['_TRAINIUMINFO']._serialized_start=20103
364
+ _globals['_TRAINIUMINFO']._serialized_end=20213
365
+ _globals['_TPUINFO']._serialized_start=20215
366
+ _globals['_TPUINFO']._serialized_end=20296
367
+ _globals['_METADATAREQUEST']._serialized_start=20299
368
+ _globals['_METADATAREQUEST']._serialized_end=21527
369
+ _globals['_METADATAREQUEST_DISKENTRY']._serialized_start=21393
370
+ _globals['_METADATAREQUEST_DISKENTRY']._serialized_end=21462
371
+ _globals['_METADATAREQUEST_SLURMENTRY']._serialized_start=21464
372
+ _globals['_METADATAREQUEST_SLURMENTRY']._serialized_end=21508
373
+ _globals['_PYTHONPACKAGESREQUEST']._serialized_start=21530
374
+ _globals['_PYTHONPACKAGESREQUEST']._serialized_end=21671
375
+ _globals['_PYTHONPACKAGESREQUEST_PYTHONPACKAGE']._serialized_start=21625
376
+ _globals['_PYTHONPACKAGESREQUEST_PYTHONPACKAGE']._serialized_end=21671
377
+ _globals['_JOBINPUTPATH']._serialized_start=21673
378
+ _globals['_JOBINPUTPATH']._serialized_end=21701
379
+ _globals['_JOBINPUTSOURCE']._serialized_start=21704
380
+ _globals['_JOBINPUTSOURCE']._serialized_end=21918
381
+ _globals['_JOBINPUTSOURCE_RUNCONFIGSOURCE']._serialized_start=21857
382
+ _globals['_JOBINPUTSOURCE_RUNCONFIGSOURCE']._serialized_end=21874
383
+ _globals['_JOBINPUTSOURCE_CONFIGFILESOURCE']._serialized_start=21876
384
+ _globals['_JOBINPUTSOURCE_CONFIGFILESOURCE']._serialized_end=21908
385
+ _globals['_JOBINPUTREQUEST']._serialized_start=21921
386
+ _globals['_JOBINPUTREQUEST']._serialized_end=22120
387
+ _globals['_SERVERFEATUREREQUEST']._serialized_start=22122
388
+ _globals['_SERVERFEATUREREQUEST']._serialized_end=22238
389
+ _globals['_SERVERFEATURERESPONSE']._serialized_start=22240
390
+ _globals['_SERVERFEATURERESPONSE']._serialized_end=22315
391
+ _globals['_SERVERFEATUREITEM']._serialized_start=22317
392
+ _globals['_SERVERFEATUREITEM']._serialized_end=22367
393
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,78 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # NO CHECKED-IN PROTOBUF GENCODE
4
+ # source: wandb/proto/wandb_server.proto
5
+ # Protobuf Python Version: 6.30.0
6
+ """Generated protocol buffer code."""
7
+ from google.protobuf import descriptor as _descriptor
8
+ from google.protobuf import descriptor_pool as _descriptor_pool
9
+ from google.protobuf import runtime_version as _runtime_version
10
+ from google.protobuf import symbol_database as _symbol_database
11
+ from google.protobuf.internal import builder as _builder
12
+ _runtime_version.ValidateProtobufRuntimeVersion(
13
+ _runtime_version.Domain.PUBLIC,
14
+ 6,
15
+ 30,
16
+ 0,
17
+ '',
18
+ 'wandb/proto/wandb_server.proto'
19
+ )
20
+ # @@protoc_insertion_point(imports)
21
+
22
+ _sym_db = _symbol_database.Default()
23
+
24
+
25
+ from wandb.proto import wandb_base_pb2 as wandb_dot_proto_dot_wandb__base__pb2
26
+ from wandb.proto import wandb_internal_pb2 as wandb_dot_proto_dot_wandb__internal__pb2
27
+ from wandb.proto import wandb_settings_pb2 as wandb_dot_proto_dot_wandb__settings__pb2
28
+
29
+
30
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1ewandb/proto/wandb_server.proto\x12\x0ewandb_internal\x1a\x1cwandb/proto/wandb_base.proto\x1a wandb/proto/wandb_internal.proto\x1a wandb/proto/wandb_settings.proto\"k\n\x19ServerAuthenticateRequest\x12\x0f\n\x07\x61pi_key\x18\x01 \x01(\t\x12\x10\n\x08\x62\x61se_url\x18\x02 \x01(\t\x12+\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1b.wandb_internal._RecordInfo\"w\n\x1aServerAuthenticateResponse\x12\x16\n\x0e\x64\x65\x66\x61ult_entity\x18\x01 \x01(\t\x12\x14\n\x0c\x65rror_status\x18\x02 \x01(\t\x12+\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1b.wandb_internal._RecordInfo\"D\n\x15ServerShutdownRequest\x12+\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1b.wandb_internal._RecordInfo\"\x18\n\x16ServerShutdownResponse\"B\n\x13ServerStatusRequest\x12+\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1b.wandb_internal._RecordInfo\"\x16\n\x14ServerStatusResponse\"r\n\x17ServerInformInitRequest\x12*\n\x08settings\x18\x01 \x01(\x0b\x32\x18.wandb_internal.Settings\x12+\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1b.wandb_internal._RecordInfo\"\x1a\n\x18ServerInformInitResponse\"s\n\x18ServerInformStartRequest\x12*\n\x08settings\x18\x01 \x01(\x0b\x32\x18.wandb_internal.Settings\x12+\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1b.wandb_internal._RecordInfo\"\x1b\n\x19ServerInformStartResponse\"H\n\x19ServerInformFinishRequest\x12+\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1b.wandb_internal._RecordInfo\"\x1c\n\x1aServerInformFinishResponse\"H\n\x19ServerInformAttachRequest\x12+\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1b.wandb_internal._RecordInfo\"u\n\x1aServerInformAttachResponse\x12*\n\x08settings\x18\x01 \x01(\x0b\x32\x18.wandb_internal.Settings\x12+\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1b.wandb_internal._RecordInfo\"H\n\x19ServerInformDetachRequest\x12+\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1b.wandb_internal._RecordInfo\"\x1c\n\x1aServerInformDetachResponse\"]\n\x1bServerInformTeardownRequest\x12\x11\n\texit_code\x18\x01 \x01(\x05\x12+\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1b.wandb_internal._RecordInfo\"\x1e\n\x1cServerInformTeardownResponse\"\xfb\x04\n\rServerRequest\x12\x12\n\nrequest_id\x18\n \x01(\t\x12\x30\n\x0erecord_publish\x18\x01 \x01(\x0b\x32\x16.wandb_internal.RecordH\x00\x12\x34\n\x12record_communicate\x18\x02 \x01(\x0b\x32\x16.wandb_internal.RecordH\x00\x12>\n\x0binform_init\x18\x03 \x01(\x0b\x32\'.wandb_internal.ServerInformInitRequestH\x00\x12\x42\n\rinform_finish\x18\x04 \x01(\x0b\x32).wandb_internal.ServerInformFinishRequestH\x00\x12\x42\n\rinform_attach\x18\x05 \x01(\x0b\x32).wandb_internal.ServerInformAttachRequestH\x00\x12\x42\n\rinform_detach\x18\x06 \x01(\x0b\x32).wandb_internal.ServerInformDetachRequestH\x00\x12\x46\n\x0finform_teardown\x18\x07 \x01(\x0b\x32+.wandb_internal.ServerInformTeardownRequestH\x00\x12@\n\x0cinform_start\x18\x08 \x01(\x0b\x32(.wandb_internal.ServerInformStartRequestH\x00\x12\x41\n\x0c\x61uthenticate\x18\t \x01(\x0b\x32).wandb_internal.ServerAuthenticateRequestH\x00\x42\x15\n\x13server_request_type\"\x91\x05\n\x0eServerResponse\x12\x12\n\nrequest_id\x18\n \x01(\t\x12\x34\n\x12result_communicate\x18\x02 \x01(\x0b\x32\x16.wandb_internal.ResultH\x00\x12H\n\x14inform_init_response\x18\x03 \x01(\x0b\x32(.wandb_internal.ServerInformInitResponseH\x00\x12L\n\x16inform_finish_response\x18\x04 \x01(\x0b\x32*.wandb_internal.ServerInformFinishResponseH\x00\x12L\n\x16inform_attach_response\x18\x05 \x01(\x0b\x32*.wandb_internal.ServerInformAttachResponseH\x00\x12L\n\x16inform_detach_response\x18\x06 \x01(\x0b\x32*.wandb_internal.ServerInformDetachResponseH\x00\x12P\n\x18inform_teardown_response\x18\x07 \x01(\x0b\x32,.wandb_internal.ServerInformTeardownResponseH\x00\x12J\n\x15inform_start_response\x18\x08 \x01(\x0b\x32).wandb_internal.ServerInformStartResponseH\x00\x12K\n\x15\x61uthenticate_response\x18\t \x01(\x0b\x32*.wandb_internal.ServerAuthenticateResponseH\x00\x42\x16\n\x14server_response_typeB\x1bZ\x19\x63ore/pkg/service_go_protob\x06proto3')
31
+
32
+ _globals = globals()
33
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
34
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'wandb.proto.wandb_server_pb2', _globals)
35
+ if not _descriptor._USE_C_DESCRIPTORS:
36
+ _globals['DESCRIPTOR']._loaded_options = None
37
+ _globals['DESCRIPTOR']._serialized_options = b'Z\031core/pkg/service_go_proto'
38
+ _globals['_SERVERAUTHENTICATEREQUEST']._serialized_start=148
39
+ _globals['_SERVERAUTHENTICATEREQUEST']._serialized_end=255
40
+ _globals['_SERVERAUTHENTICATERESPONSE']._serialized_start=257
41
+ _globals['_SERVERAUTHENTICATERESPONSE']._serialized_end=376
42
+ _globals['_SERVERSHUTDOWNREQUEST']._serialized_start=378
43
+ _globals['_SERVERSHUTDOWNREQUEST']._serialized_end=446
44
+ _globals['_SERVERSHUTDOWNRESPONSE']._serialized_start=448
45
+ _globals['_SERVERSHUTDOWNRESPONSE']._serialized_end=472
46
+ _globals['_SERVERSTATUSREQUEST']._serialized_start=474
47
+ _globals['_SERVERSTATUSREQUEST']._serialized_end=540
48
+ _globals['_SERVERSTATUSRESPONSE']._serialized_start=542
49
+ _globals['_SERVERSTATUSRESPONSE']._serialized_end=564
50
+ _globals['_SERVERINFORMINITREQUEST']._serialized_start=566
51
+ _globals['_SERVERINFORMINITREQUEST']._serialized_end=680
52
+ _globals['_SERVERINFORMINITRESPONSE']._serialized_start=682
53
+ _globals['_SERVERINFORMINITRESPONSE']._serialized_end=708
54
+ _globals['_SERVERINFORMSTARTREQUEST']._serialized_start=710
55
+ _globals['_SERVERINFORMSTARTREQUEST']._serialized_end=825
56
+ _globals['_SERVERINFORMSTARTRESPONSE']._serialized_start=827
57
+ _globals['_SERVERINFORMSTARTRESPONSE']._serialized_end=854
58
+ _globals['_SERVERINFORMFINISHREQUEST']._serialized_start=856
59
+ _globals['_SERVERINFORMFINISHREQUEST']._serialized_end=928
60
+ _globals['_SERVERINFORMFINISHRESPONSE']._serialized_start=930
61
+ _globals['_SERVERINFORMFINISHRESPONSE']._serialized_end=958
62
+ _globals['_SERVERINFORMATTACHREQUEST']._serialized_start=960
63
+ _globals['_SERVERINFORMATTACHREQUEST']._serialized_end=1032
64
+ _globals['_SERVERINFORMATTACHRESPONSE']._serialized_start=1034
65
+ _globals['_SERVERINFORMATTACHRESPONSE']._serialized_end=1151
66
+ _globals['_SERVERINFORMDETACHREQUEST']._serialized_start=1153
67
+ _globals['_SERVERINFORMDETACHREQUEST']._serialized_end=1225
68
+ _globals['_SERVERINFORMDETACHRESPONSE']._serialized_start=1227
69
+ _globals['_SERVERINFORMDETACHRESPONSE']._serialized_end=1255
70
+ _globals['_SERVERINFORMTEARDOWNREQUEST']._serialized_start=1257
71
+ _globals['_SERVERINFORMTEARDOWNREQUEST']._serialized_end=1350
72
+ _globals['_SERVERINFORMTEARDOWNRESPONSE']._serialized_start=1352
73
+ _globals['_SERVERINFORMTEARDOWNRESPONSE']._serialized_end=1382
74
+ _globals['_SERVERREQUEST']._serialized_start=1385
75
+ _globals['_SERVERREQUEST']._serialized_end=2020
76
+ _globals['_SERVERRESPONSE']._serialized_start=2023
77
+ _globals['_SERVERRESPONSE']._serialized_end=2680
78
+ # @@protoc_insertion_point(module_scope)