wandb 0.19.9__py3-none-musllinux_1_2_aarch64.whl → 0.19.11__py3-none-musllinux_1_2_aarch64.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 (156) 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/bin/wandb-core +0 -0
  49. wandb/cli/cli.py +3 -3
  50. wandb/env.py +11 -0
  51. wandb/integration/keras/keras.py +2 -1
  52. wandb/integration/langchain/wandb_tracer.py +2 -1
  53. wandb/jupyter.py +137 -118
  54. wandb/old/settings.py +4 -1
  55. wandb/old/summary.py +0 -2
  56. wandb/proto/v3/wandb_internal_pb2.py +297 -292
  57. wandb/proto/v3/wandb_settings_pb2.py +2 -2
  58. wandb/proto/v3/wandb_telemetry_pb2.py +10 -10
  59. wandb/proto/v4/wandb_internal_pb2.py +292 -292
  60. wandb/proto/v4/wandb_settings_pb2.py +2 -2
  61. wandb/proto/v4/wandb_telemetry_pb2.py +10 -10
  62. wandb/proto/v5/wandb_internal_pb2.py +292 -292
  63. wandb/proto/v5/wandb_settings_pb2.py +2 -2
  64. wandb/proto/v5/wandb_telemetry_pb2.py +10 -10
  65. wandb/proto/v6/wandb_base_pb2.py +41 -0
  66. wandb/proto/v6/wandb_internal_pb2.py +393 -0
  67. wandb/proto/v6/wandb_server_pb2.py +78 -0
  68. wandb/proto/v6/wandb_settings_pb2.py +58 -0
  69. wandb/proto/v6/wandb_telemetry_pb2.py +52 -0
  70. wandb/proto/wandb_base_pb2.py +2 -0
  71. wandb/proto/wandb_deprecated.py +8 -0
  72. wandb/proto/wandb_internal_pb2.py +3 -1
  73. wandb/proto/wandb_server_pb2.py +2 -0
  74. wandb/proto/wandb_settings_pb2.py +2 -0
  75. wandb/proto/wandb_telemetry_pb2.py +2 -0
  76. wandb/sdk/artifacts/_generated/__init__.py +289 -0
  77. wandb/sdk/artifacts/_generated/add_aliases.py +21 -0
  78. wandb/sdk/artifacts/_generated/artifact_collection_membership_files.py +43 -0
  79. wandb/sdk/artifacts/_generated/artifact_version_files.py +36 -0
  80. wandb/sdk/artifacts/_generated/create_artifact_collection_tag_assignments.py +36 -0
  81. wandb/sdk/artifacts/_generated/delete_aliases.py +21 -0
  82. wandb/sdk/artifacts/_generated/delete_artifact_collection_tag_assignments.py +25 -0
  83. wandb/sdk/artifacts/_generated/delete_artifact_portfolio.py +35 -0
  84. wandb/sdk/artifacts/_generated/delete_artifact_sequence.py +35 -0
  85. wandb/sdk/artifacts/_generated/enums.py +17 -0
  86. wandb/sdk/artifacts/_generated/fetch_linked_artifacts.py +67 -0
  87. wandb/sdk/artifacts/_generated/fragments.py +221 -0
  88. wandb/sdk/artifacts/_generated/input_types.py +28 -0
  89. wandb/sdk/artifacts/_generated/move_artifact_collection.py +35 -0
  90. wandb/sdk/artifacts/_generated/operations.py +611 -0
  91. wandb/sdk/artifacts/_generated/project_artifact_collection.py +101 -0
  92. wandb/sdk/artifacts/_generated/project_artifact_collections.py +33 -0
  93. wandb/sdk/artifacts/_generated/project_artifact_type.py +24 -0
  94. wandb/sdk/artifacts/_generated/project_artifact_types.py +24 -0
  95. wandb/sdk/artifacts/_generated/project_artifacts.py +42 -0
  96. wandb/sdk/artifacts/_generated/run_input_artifacts.py +51 -0
  97. wandb/sdk/artifacts/_generated/run_output_artifacts.py +51 -0
  98. wandb/sdk/artifacts/_generated/update_artifact.py +26 -0
  99. wandb/sdk/artifacts/_generated/update_artifact_portfolio.py +35 -0
  100. wandb/sdk/artifacts/_generated/update_artifact_sequence.py +35 -0
  101. wandb/sdk/artifacts/_graphql_fragments.py +57 -79
  102. wandb/sdk/artifacts/_validators.py +120 -1
  103. wandb/sdk/artifacts/artifact.py +419 -215
  104. wandb/sdk/artifacts/artifact_file_cache.py +4 -6
  105. wandb/sdk/artifacts/artifact_manifest_entry.py +13 -3
  106. wandb/sdk/artifacts/storage_handlers/azure_handler.py +1 -0
  107. wandb/sdk/artifacts/storage_policies/wandb_storage_policy.py +182 -1
  108. wandb/sdk/artifacts/storage_policy.py +3 -0
  109. wandb/sdk/data_types/base_types/media.py +2 -3
  110. wandb/sdk/data_types/base_types/wb_value.py +34 -11
  111. wandb/sdk/data_types/html.py +36 -9
  112. wandb/sdk/data_types/image.py +12 -12
  113. wandb/sdk/data_types/table.py +5 -0
  114. wandb/sdk/data_types/trace_tree.py +2 -0
  115. wandb/sdk/data_types/utils.py +1 -1
  116. wandb/sdk/data_types/video.py +59 -57
  117. wandb/sdk/interface/interface.py +4 -3
  118. wandb/sdk/internal/internal_api.py +21 -31
  119. wandb/sdk/internal/profiler.py +6 -5
  120. wandb/sdk/internal/run.py +13 -6
  121. wandb/sdk/internal/sender.py +5 -2
  122. wandb/sdk/launch/sweeps/utils.py +8 -0
  123. wandb/sdk/lib/apikey.py +25 -4
  124. wandb/sdk/lib/asyncio_compat.py +1 -1
  125. wandb/sdk/lib/deprecate.py +13 -22
  126. wandb/sdk/lib/disabled.py +2 -1
  127. wandb/sdk/lib/printer.py +37 -8
  128. wandb/sdk/lib/printer_asyncio.py +46 -0
  129. wandb/sdk/lib/redirect.py +10 -5
  130. wandb/sdk/projects/_generated/__init__.py +47 -0
  131. wandb/sdk/projects/_generated/delete_project.py +22 -0
  132. wandb/sdk/projects/_generated/enums.py +4 -0
  133. wandb/sdk/projects/_generated/fetch_registry.py +22 -0
  134. wandb/sdk/projects/_generated/fragments.py +41 -0
  135. wandb/sdk/projects/_generated/input_types.py +13 -0
  136. wandb/sdk/projects/_generated/operations.py +88 -0
  137. wandb/sdk/projects/_generated/rename_project.py +27 -0
  138. wandb/sdk/projects/_generated/upsert_registry_project.py +27 -0
  139. wandb/sdk/service/server_sock.py +19 -14
  140. wandb/sdk/service/service.py +18 -8
  141. wandb/sdk/service/streams.py +5 -0
  142. wandb/sdk/verify/verify.py +6 -3
  143. wandb/sdk/wandb_init.py +217 -70
  144. wandb/sdk/wandb_login.py +13 -4
  145. wandb/sdk/wandb_run.py +419 -295
  146. wandb/sdk/wandb_settings.py +27 -10
  147. wandb/sdk/wandb_setup.py +61 -0
  148. wandb/util.py +33 -29
  149. {wandb-0.19.9.dist-info → wandb-0.19.11.dist-info}/METADATA +5 -5
  150. {wandb-0.19.9.dist-info → wandb-0.19.11.dist-info}/RECORD +153 -83
  151. wandb/_globals.py +0 -19
  152. wandb/sdk/internal/_generated/base.py +0 -226
  153. wandb/sdk/internal/_generated/typing_compat.py +0 -14
  154. {wandb-0.19.9.dist-info → wandb-0.19.11.dist-info}/WHEEL +0 -0
  155. {wandb-0.19.9.dist-info → wandb-0.19.11.dist-info}/entry_points.txt +0 -0
  156. {wandb-0.19.9.dist-info → wandb-0.19.11.dist-info}/licenses/LICENSE +0 -0
@@ -0,0 +1,58 @@
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_settings.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_settings.proto'
19
+ )
20
+ # @@protoc_insertion_point(imports)
21
+
22
+ _sym_db = _symbol_database.Default()
23
+
24
+
25
+ from google.protobuf import wrappers_pb2 as google_dot_protobuf_dot_wrappers__pb2
26
+
27
+
28
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n wandb/proto/wandb_settings.proto\x12\x0ewandb_internal\x1a\x1egoogle/protobuf/wrappers.proto\" \n\x0fListStringValue\x12\r\n\x05value\x18\x01 \x03(\t\"\x1d\n\x0cListIntValue\x12\r\n\x05value\x18\x01 \x03(\x05\"\x8a\x01\n\x17MapStringKeyStringValue\x12\x41\n\x05value\x18\x01 \x03(\x0b\x32\x32.wandb_internal.MapStringKeyStringValue.ValueEntry\x1a,\n\nValueEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\xcb\x01\n#MapStringKeyMapStringKeyStringValue\x12M\n\x05value\x18\x01 \x03(\x0b\x32>.wandb_internal.MapStringKeyMapStringKeyStringValue.ValueEntry\x1aU\n\nValueEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x36\n\x05value\x18\x02 \x01(\x0b\x32\'.wandb_internal.MapStringKeyStringValue:\x02\x38\x01\"\x9a\x01\n\x12OpenMetricsFilters\x12\x33\n\x08sequence\x18\x01 \x01(\x0b\x32\x1f.wandb_internal.ListStringValueH\x00\x12\x46\n\x07mapping\x18\x02 \x01(\x0b\x32\x33.wandb_internal.MapStringKeyMapStringKeyStringValueH\x00\x42\x07\n\x05value\"7\n\tRunMoment\x12\x0b\n\x03run\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\x01\x12\x0e\n\x06metric\x18\x03 \x01(\t\"\xb5K\n\x08Settings\x12-\n\x07\x61pi_key\x18\x37 \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12:\n\x13identity_token_file\x18\xaa\x01 \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12\x37\n\x10\x63redentials_file\x18\xab\x01 \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12\x39\n\x14insecure_disable_ssl\x18\xb9\x01 \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12,\n\x08_offline\x18\x1e \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12*\n\x06x_sync\x18\x1f \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12\x30\n\tsync_file\x18\x86\x01 \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12,\n\x07_shared\x18\xa2\x01 \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12,\n\x06run_id\x18k \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12-\n\x07run_url\x18q \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12-\n\x07project\x18\x61 \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12,\n\x06\x65ntity\x18\x45 \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12\x33\n\x0corganization\x18\xbc\x01 \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12\x32\n\x0cx_start_time\x18) \x01(\x0b\x32\x1c.google.protobuf.DoubleValue\x12.\n\x08root_dir\x18i \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12-\n\x07log_dir\x18U \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12\x32\n\x0clog_internal\x18V \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12/\n\tfiles_dir\x18\x46 \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12\x32\n\x0bx_files_dir\x18\xb4\x01 \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12\x35\n\x0cignore_globs\x18N \x01(\x0b\x32\x1f.wandb_internal.ListStringValue\x12.\n\x08\x62\x61se_url\x18\x39 \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12=\n\x17x_file_stream_max_bytes\x18\xac\x01 \x01(\x0b\x32\x1b.google.protobuf.Int32Value\x12\x46\n\x1fx_file_stream_transmit_interval\x18\xaf\x01 \x01(\x0b\x32\x1c.google.protobuf.DoubleValue\x12\x45\n\x14x_extra_http_headers\x18\x0e \x01(\x0b\x32\'.wandb_internal.MapStringKeyStringValue\x12=\n\x17x_file_stream_retry_max\x18\x93\x01 \x01(\x0b\x32\x1b.google.protobuf.Int32Value\x12K\n$x_file_stream_retry_wait_min_seconds\x18\x94\x01 \x01(\x0b\x32\x1c.google.protobuf.DoubleValue\x12K\n$x_file_stream_retry_wait_max_seconds\x18\x95\x01 \x01(\x0b\x32\x1c.google.protobuf.DoubleValue\x12\x43\n\x1dx_file_stream_timeout_seconds\x18\x0f \x01(\x0b\x32\x1c.google.protobuf.DoubleValue\x12\x42\n\x1cx_file_stream_max_line_bytes\x18\xb2\x01 \x01(\x0b\x32\x1b.google.protobuf.Int32Value\x12?\n\x19x_file_transfer_retry_max\x18\x96\x01 \x01(\x0b\x32\x1b.google.protobuf.Int32Value\x12M\n&x_file_transfer_retry_wait_min_seconds\x18\x97\x01 \x01(\x0b\x32\x1c.google.protobuf.DoubleValue\x12M\n&x_file_transfer_retry_wait_max_seconds\x18\x98\x01 \x01(\x0b\x32\x1c.google.protobuf.DoubleValue\x12\x46\n\x1fx_file_transfer_timeout_seconds\x18\x99\x01 \x01(\x0b\x32\x1c.google.protobuf.DoubleValue\x12\x39\n\x13x_graphql_retry_max\x18\x9a\x01 \x01(\x0b\x32\x1b.google.protobuf.Int32Value\x12G\n x_graphql_retry_wait_min_seconds\x18\x9b\x01 \x01(\x0b\x32\x1c.google.protobuf.DoubleValue\x12G\n x_graphql_retry_wait_max_seconds\x18\x9c\x01 \x01(\x0b\x32\x1c.google.protobuf.DoubleValue\x12@\n\x19x_graphql_timeout_seconds\x18\x9d\x01 \x01(\x0b\x32\x1c.google.protobuf.DoubleValue\x12\x31\n\nhttp_proxy\x18\xa8\x01 \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12\x32\n\x0bhttps_proxy\x18\xa9\x01 \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12;\n\tx_proxies\x18\xc8\x01 \x01(\x0b\x32\'.wandb_internal.MapStringKeyStringValue\x12-\n\x07program\x18_ \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12\x35\n\x0fprogram_relpath\x18` \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12\x37\n\x10_code_path_local\x18\xa3\x01 \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12\x36\n\x0fprogram_abspath\x18\x9f\x01 \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12.\n\x05_args\x18\x01 \x01(\x0b\x32\x1f.wandb_internal.ListStringValue\x12)\n\x03_os\x18 \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12,\n\x06\x64ocker\x18\x43 \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12\x32\n\x0cx_executable\x18\r \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12-\n\x07_python\x18\" \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12\x30\n\tcolab_url\x18\xa0\x01 \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12*\n\x04host\x18M \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12/\n\x08username\x18\x8d\x01 \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12+\n\x05\x65mail\x18\x44 \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12,\n\x06resume\x18\x66 \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12/\n\x0bresume_from\x18\xa7\x01 \x01(\x0b\x32\x19.wandb_internal.RunMoment\x12-\n\tfork_from\x18\xa4\x01 \x01(\x0b\x32\x19.wandb_internal.RunMoment\x12\x38\n\x14\x64isable_job_creation\x18\x41 \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12\x30\n\tsweep_url\x18\x83\x01 \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12;\n\x16x_disable_update_check\x18\xa5\x01 \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12\x32\n\x0ex_disable_meta\x18\x07 \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12-\n\tsave_code\x18s \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12/\n\x0b\x64isable_git\x18? \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12;\n\x16x_disable_machine_info\x18\x9e\x01 \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12\x33\n\x0fx_disable_stats\x18\n \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12\x39\n\x13x_stats_buffer_size\x18\xa1\x01 \x01(\x0b\x32\x1b.google.protobuf.Int32Value\x12@\n\x19x_stats_sampling_interval\x18\xae\x01 \x01(\x0b\x32\x1c.google.protobuf.DoubleValue\x12\x30\n\x0bx_stats_pid\x18* \x01(\x0b\x32\x1b.google.protobuf.Int32Value\x12<\n\x12x_stats_disk_paths\x18\x92\x01 \x01(\x0b\x32\x1f.wandb_internal.ListStringValue\x12H\n\"x_stats_neuron_monitor_config_path\x18. \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12<\n\x15x_stats_dcgm_exporter\x18\xbb\x01 \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12O\n\x1ex_stats_open_metrics_endpoints\x18/ \x01(\x0b\x32\'.wandb_internal.MapStringKeyStringValue\x12H\n\x1cx_stats_open_metrics_filters\x18\x30 \x01(\x0b\x32\".wandb_internal.OpenMetricsFilters\x12S\n!x_stats_open_metrics_http_headers\x18\xb8\x01 \x01(\x0b\x32\'.wandb_internal.MapStringKeyStringValue\x12=\n\x16x_stats_gpu_device_ids\x18\xba\x01 \x01(\x0b\x32\x1c.wandb_internal.ListIntValue\x12.\n\x07x_label\x18\xb5\x01 \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12=\n\x18x_require_legacy_service\x18\xad\x01 \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12.\n\tx_primary\x18\xb6\x01 \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12:\n\x15x_update_finish_state\x18\xb7\x01 \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12<\n\x17\x61llow_offline_artifacts\x18\xb1\x01 \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12-\n\x07\x63onsole\x18< \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12\x36\n\x11\x63onsole_multipart\x18\xa6\x01 \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12\x35\n\x10sync_tensorboard\x18\xb3\x01 \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12\x42\n\x1dx_server_side_derived_summary\x18\xbd\x01 \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12\x46\n!x_server_side_expand_glob_metrics\x18\xbe\x01 \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12/\n\x0b_aws_lambda\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12\x33\n\x0fx_cli_only_mode\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12*\n\x06_colab\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12\x35\n\x11x_disable_service\x18\x08 \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12:\n\x16x_disable_setproctitle\x18\t \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12\x34\n\x10x_disable_viewer\x18\x0b \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12\x39\n\x15x_flow_control_custom\x18\x10 \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12;\n\x17x_flow_control_disabled\x18\x11 \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12>\n\x18x_internal_check_process\x18\x12 \x01(\x0b\x32\x1c.google.protobuf.DoubleValue\x12,\n\x08_ipython\x18\x14 \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12,\n\x08_jupyter\x18\x15 \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12\x34\n\x0ex_jupyter_root\x18\x16 \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12+\n\x07_kaggle\x18\x17 \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12=\n\x18x_live_policy_rate_limit\x18\x18 \x01(\x0b\x32\x1b.google.protobuf.Int32Value\x12<\n\x17x_live_policy_wait_time\x18\x19 \x01(\x0b\x32\x1b.google.protobuf.Int32Value\x12\x30\n\x0bx_log_level\x18\x1a \x01(\x0b\x32\x1b.google.protobuf.Int32Value\x12\x35\n\x10x_network_buffer\x18\x1b \x01(\x0b\x32\x1b.google.protobuf.Int32Value\x12)\n\x05_noop\x18\x1c \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12-\n\t_notebook\x18\x1d \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12/\n\t_platform\x18! \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12\x38\n\x12x_runqueue_item_id\x18# \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12\x37\n\x13x_save_requirements\x18% \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12\x39\n\x13x_service_transport\x18& \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12\x34\n\x0ex_service_wait\x18\' \x01(\x0b\x32\x1c.google.protobuf.DoubleValue\x12\x35\n\x0f_start_datetime\x18( \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12\x33\n\r_tmp_code_dir\x18\x31 \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12,\n\x08_windows\x18\x34 \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12\x34\n\x10\x61llow_val_change\x18\x35 \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12/\n\tanonymous\x18\x36 \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12P\n\x1f\x61zure_account_url_to_access_key\x18\x38 \x01(\x0b\x32\'.wandb_internal.MapStringKeyStringValue\x12.\n\x08\x63ode_dir\x18: \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12\x35\n\x0c\x63onfig_paths\x18; \x01(\x0b\x32\x1f.wandb_internal.ListStringValue\x12\x30\n\ndeployment\x18= \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12\x30\n\x0c\x64isable_code\x18> \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12\x31\n\rdisable_hints\x18@ \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12,\n\x08\x64isabled\x18\x42 \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12)\n\x05\x66orce\x18G \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12\x30\n\ngit_commit\x18H \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12\x30\n\ngit_remote\x18I \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12\x34\n\x0egit_remote_url\x18J \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12.\n\x08git_root\x18K \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12\x36\n\x11heartbeat_seconds\x18L \x01(\x0b\x32\x1b.google.protobuf.Int32Value\x12\x32\n\x0cinit_timeout\x18O \x01(\x0b\x32\x1c.google.protobuf.DoubleValue\x12,\n\x08is_local\x18P \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12\x30\n\njob_source\x18Q \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12\x31\n\rlabel_disable\x18R \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12*\n\x06launch\x18S \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12\x38\n\x12launch_config_path\x18T \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12:\n\x14log_symlink_internal\x18W \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12\x36\n\x10log_symlink_user\x18X \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12.\n\x08log_user\x18Y \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12\x33\n\rlogin_timeout\x18Z \x01(\x0b\x32\x1c.google.protobuf.DoubleValue\x12*\n\x04mode\x18\\ \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12\x33\n\rnotebook_name\x18] \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12\x31\n\x0bproject_url\x18\x62 \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12)\n\x05quiet\x18\x63 \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12+\n\x07relogin\x18\x65 \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12\x32\n\x0cresume_fname\x18g \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12+\n\x07resumed\x18h \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12/\n\trun_group\x18j \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12\x32\n\x0crun_job_type\x18l \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12.\n\x08run_mode\x18m \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12.\n\x08run_name\x18n \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12/\n\trun_notes\x18o \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12\x31\n\x08run_tags\x18p \x01(\x0b\x32\x1f.wandb_internal.ListStringValue\x12\x35\n\x11sagemaker_disable\x18r \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12\x35\n\x0fsettings_system\x18t \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12\x38\n\x12settings_workspace\x18u \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12/\n\x0bshow_colors\x18v \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12.\n\nshow_emoji\x18w \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12/\n\x0bshow_errors\x18x \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12-\n\tshow_info\x18y \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12\x31\n\rshow_warnings\x18z \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12*\n\x06silent\x18{ \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12\x32\n\x0cstart_method\x18| \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12*\n\x06strict\x18} \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12\x33\n\x0esummary_errors\x18~ \x01(\x0b\x32\x1b.google.protobuf.Int32Value\x12\x34\n\x0fsummary_timeout\x18\x7f \x01(\x0b\x32\x1b.google.protobuf.Int32Value\x12\x36\n\x10summary_warnings\x18\x80\x01 \x01(\x0b\x32\x1b.google.protobuf.Int32Value\x12/\n\x08sweep_id\x18\x81\x01 \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12\x37\n\x10sweep_param_path\x18\x82\x01 \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12,\n\x07symlink\x18\x84\x01 \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12/\n\x08sync_dir\x18\x85\x01 \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12:\n\x13sync_symlink_latest\x18\x87\x01 \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12J\n%table_raise_on_max_row_limit_exceeded\x18\x8a\x01 \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12/\n\x08timespec\x18\x8b\x01 \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12.\n\x07tmp_dir\x18\x8c\x01 \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12\x30\n\twandb_dir\x18\x8e\x01 \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12\x35\n\x0ex_jupyter_name\x18\x8f\x01 \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12\x35\n\x0ex_jupyter_path\x18\x90\x01 \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12/\n\x08job_name\x18\x91\x01 \x01(\x0b\x32\x1c.google.protobuf.StringValueJ\x04\x08\x03\x10\x04J\x04\x08\x06\x10\x07J\x04\x08\x0c\x10\rJ\x04\x08\x13\x10\x14J\x04\x08$\x10%J\x04\x08+\x10,J\x04\x08,\x10-J\x04\x08-\x10.J\x04\x08\x32\x10\x33J\x04\x08\x33\x10\x34J\x04\x08[\x10\\J\x04\x08^\x10_J\x04\x08\x64\x10\x65J\x06\x08\x88\x01\x10\x89\x01J\x06\x08\x89\x01\x10\x8a\x01J\x06\x08\xb0\x01\x10\xb1\x01\x42\x1bZ\x19\x63ore/pkg/service_go_protob\x06proto3')
29
+
30
+ _globals = globals()
31
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
32
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'wandb.proto.wandb_settings_pb2', _globals)
33
+ if not _descriptor._USE_C_DESCRIPTORS:
34
+ _globals['DESCRIPTOR']._loaded_options = None
35
+ _globals['DESCRIPTOR']._serialized_options = b'Z\031core/pkg/service_go_proto'
36
+ _globals['_MAPSTRINGKEYSTRINGVALUE_VALUEENTRY']._loaded_options = None
37
+ _globals['_MAPSTRINGKEYSTRINGVALUE_VALUEENTRY']._serialized_options = b'8\001'
38
+ _globals['_MAPSTRINGKEYMAPSTRINGKEYSTRINGVALUE_VALUEENTRY']._loaded_options = None
39
+ _globals['_MAPSTRINGKEYMAPSTRINGKEYSTRINGVALUE_VALUEENTRY']._serialized_options = b'8\001'
40
+ _globals['_LISTSTRINGVALUE']._serialized_start=84
41
+ _globals['_LISTSTRINGVALUE']._serialized_end=116
42
+ _globals['_LISTINTVALUE']._serialized_start=118
43
+ _globals['_LISTINTVALUE']._serialized_end=147
44
+ _globals['_MAPSTRINGKEYSTRINGVALUE']._serialized_start=150
45
+ _globals['_MAPSTRINGKEYSTRINGVALUE']._serialized_end=288
46
+ _globals['_MAPSTRINGKEYSTRINGVALUE_VALUEENTRY']._serialized_start=244
47
+ _globals['_MAPSTRINGKEYSTRINGVALUE_VALUEENTRY']._serialized_end=288
48
+ _globals['_MAPSTRINGKEYMAPSTRINGKEYSTRINGVALUE']._serialized_start=291
49
+ _globals['_MAPSTRINGKEYMAPSTRINGKEYSTRINGVALUE']._serialized_end=494
50
+ _globals['_MAPSTRINGKEYMAPSTRINGKEYSTRINGVALUE_VALUEENTRY']._serialized_start=409
51
+ _globals['_MAPSTRINGKEYMAPSTRINGKEYSTRINGVALUE_VALUEENTRY']._serialized_end=494
52
+ _globals['_OPENMETRICSFILTERS']._serialized_start=497
53
+ _globals['_OPENMETRICSFILTERS']._serialized_end=651
54
+ _globals['_RUNMOMENT']._serialized_start=653
55
+ _globals['_RUNMOMENT']._serialized_end=708
56
+ _globals['_SETTINGS']._serialized_start=711
57
+ _globals['_SETTINGS']._serialized_end=10364
58
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,52 @@
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_telemetry.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_telemetry.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
+
27
+
28
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n!wandb/proto/wandb_telemetry.proto\x12\x0ewandb_internal\x1a\x1cwandb/proto/wandb_base.proto\"\xdb\x03\n\x0fTelemetryRecord\x12-\n\x0cimports_init\x18\x01 \x01(\x0b\x32\x17.wandb_internal.Imports\x12/\n\x0eimports_finish\x18\x02 \x01(\x0b\x32\x17.wandb_internal.Imports\x12(\n\x07\x66\x65\x61ture\x18\x03 \x01(\x0b\x32\x17.wandb_internal.Feature\x12\x16\n\x0epython_version\x18\x04 \x01(\t\x12\x13\n\x0b\x63li_version\x18\x05 \x01(\t\x12\x1b\n\x13huggingface_version\x18\x06 \x01(\t\x12 \n\x03\x65nv\x18\x08 \x01(\x0b\x32\x13.wandb_internal.Env\x12%\n\x05label\x18\t \x01(\x0b\x32\x16.wandb_internal.Labels\x12.\n\ndeprecated\x18\n \x01(\x0b\x32\x1a.wandb_internal.Deprecated\x12&\n\x06issues\x18\x0b \x01(\x0b\x32\x16.wandb_internal.Issues\x12\x14\n\x0c\x63ore_version\x18\x0c \x01(\t\x12\x10\n\x08platform\x18\r \x01(\t\x12+\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1b.wandb_internal._RecordInfo\"\x11\n\x0fTelemetryResult\"\xf5\r\n\x07Imports\x12\r\n\x05torch\x18\x01 \x01(\x08\x12\r\n\x05keras\x18\x02 \x01(\x08\x12\x12\n\ntensorflow\x18\x03 \x01(\x08\x12\x0e\n\x06\x66\x61stai\x18\x04 \x01(\x08\x12\x0f\n\x07sklearn\x18\x05 \x01(\x08\x12\x0f\n\x07xgboost\x18\x06 \x01(\x08\x12\x10\n\x08\x63\x61tboost\x18\x07 \x01(\x08\x12\x10\n\x08lightgbm\x18\x08 \x01(\x08\x12\x19\n\x11pytorch_lightning\x18\t \x01(\x08\x12\x0e\n\x06ignite\x18\n \x01(\x08\x12\x14\n\x0ctransformers\x18\x0b \x01(\x08\x12\x0b\n\x03jax\x18\x0c \x01(\x08\x12\x10\n\x08metaflow\x18\r \x01(\x08\x12\x10\n\x08\x61llennlp\x18\x0e \x01(\x08\x12\x11\n\tautogluon\x18\x0f \x01(\x08\x12\x11\n\tautokeras\x18\x10 \x01(\x08\x12\x10\n\x08\x63\x61talyst\x18\x12 \x01(\x08\x12\x10\n\x08\x64\x65\x65pchem\x18\x15 \x01(\x08\x12\x0f\n\x07\x64\x65\x65pctr\x18\x16 \x01(\x08\x12\x0f\n\x07pycaret\x18\x1c \x01(\x08\x12\x14\n\x0cpytorchvideo\x18\x1d \x01(\x08\x12\x0b\n\x03ray\x18\x1e \x01(\x08\x12\x1a\n\x12simpletransformers\x18\x1f \x01(\x08\x12\x0e\n\x06skorch\x18 \x01(\x08\x12\r\n\x05spacy\x18! \x01(\x08\x12\r\n\x05\x66lash\x18\" \x01(\x08\x12\x0e\n\x06optuna\x18# \x01(\x08\x12\x0f\n\x07recbole\x18$ \x01(\x08\x12\x0c\n\x04mmcv\x18% \x01(\x08\x12\r\n\x05mmdet\x18& \x01(\x08\x12\x11\n\ttorchdrug\x18\' \x01(\x08\x12\x11\n\ttorchtext\x18( \x01(\x08\x12\x13\n\x0btorchvision\x18) \x01(\x08\x12\r\n\x05\x65legy\x18* \x01(\x08\x12\x12\n\ndetectron2\x18+ \x01(\x08\x12\r\n\x05\x66lair\x18, \x01(\x08\x12\x0c\n\x04\x66lax\x18- \x01(\x08\x12\x0c\n\x04syft\x18. \x01(\x08\x12\x0b\n\x03TTS\x18/ \x01(\x08\x12\r\n\x05monai\x18\x30 \x01(\x08\x12\x17\n\x0fhuggingface_hub\x18\x31 \x01(\x08\x12\r\n\x05hydra\x18\x32 \x01(\x08\x12\x10\n\x08\x64\x61tasets\x18\x33 \x01(\x08\x12\x0e\n\x06sacred\x18\x34 \x01(\x08\x12\x0e\n\x06joblib\x18\x35 \x01(\x08\x12\x0c\n\x04\x64\x61sk\x18\x36 \x01(\x08\x12\x0f\n\x07\x61syncio\x18\x37 \x01(\x08\x12\x11\n\tpaddleocr\x18\x38 \x01(\x08\x12\r\n\x05ppdet\x18\x39 \x01(\x08\x12\x11\n\tpaddleseg\x18: \x01(\x08\x12\x11\n\tpaddlenlp\x18; \x01(\x08\x12\r\n\x05mmseg\x18< \x01(\x08\x12\r\n\x05mmocr\x18= \x01(\x08\x12\r\n\x05mmcls\x18> \x01(\x08\x12\x0c\n\x04timm\x18? \x01(\x08\x12\x0f\n\x07\x66\x61irseq\x18@ \x01(\x08\x12\x12\n\ndeepchecks\x18\x41 \x01(\x08\x12\x10\n\x08\x63omposer\x18\x42 \x01(\x08\x12\x10\n\x08sparseml\x18\x43 \x01(\x08\x12\x10\n\x08\x61nomalib\x18\x44 \x01(\x08\x12\r\n\x05zenml\x18\x45 \x01(\x08\x12\x12\n\ncolossalai\x18\x46 \x01(\x08\x12\x12\n\naccelerate\x18G \x01(\x08\x12\x0e\n\x06merlin\x18H \x01(\x08\x12\x0f\n\x07nanodet\x18I \x01(\x08\x12#\n\x1bsegmentation_models_pytorch\x18J \x01(\x08\x12\x1d\n\x15sentence_transformers\x18K \x01(\x08\x12\x0b\n\x03\x64gl\x18L \x01(\x08\x12\x17\n\x0ftorch_geometric\x18M \x01(\x08\x12\x0c\n\x04jina\x18N \x01(\x08\x12\x0e\n\x06kornia\x18O \x01(\x08\x12\x16\n\x0e\x61lbumentations\x18P \x01(\x08\x12\x10\n\x08keras_cv\x18Q \x01(\x08\x12\x10\n\x08mmengine\x18R \x01(\x08\x12\x11\n\tdiffusers\x18S \x01(\x08\x12\x0b\n\x03trl\x18T \x01(\x08\x12\x0c\n\x04trlx\x18U \x01(\x08\x12\x11\n\tlangchain\x18V \x01(\x08\x12\x13\n\x0bllama_index\x18W \x01(\x08\x12\x15\n\rstability_sdk\x18X \x01(\x08\x12\x0f\n\x07prefect\x18Y \x01(\x08\x12\x13\n\x0bprefect_ray\x18Z \x01(\x08\x12\x10\n\x08pinecone\x18[ \x01(\x08\x12\x10\n\x08\x63hromadb\x18\\ \x01(\x08\x12\x10\n\x08weaviate\x18] \x01(\x08\x12\x13\n\x0bpromptlayer\x18^ \x01(\x08\x12\x0e\n\x06openai\x18_ \x01(\x08\x12\x0e\n\x06\x63ohere\x18` \x01(\x08\x12\x11\n\tanthropic\x18\x61 \x01(\x08\x12\x0c\n\x04peft\x18\x62 \x01(\x08\x12\x0f\n\x07optimum\x18\x63 \x01(\x08\x12\x10\n\x08\x65valuate\x18\x64 \x01(\x08\x12\x10\n\x08langflow\x18\x65 \x01(\x08\x12\x12\n\nkeras_core\x18\x66 \x01(\x08\x12\x18\n\x10lightning_fabric\x18g \x01(\x08\x12\x1c\n\x14\x63urated_transformers\x18h \x01(\x08\x12\x0e\n\x06orjson\x18i \x01(\x08\x12\x11\n\tlightning\x18j \x01(\x08\"\x94\r\n\x07\x46\x65\x61ture\x12\r\n\x05watch\x18\x01 \x01(\x08\x12\x0e\n\x06\x66inish\x18\x02 \x01(\x08\x12\x0c\n\x04save\x18\x03 \x01(\x08\x12\x0f\n\x07offline\x18\x04 \x01(\x08\x12\x0f\n\x07resumed\x18\x05 \x01(\x08\x12\x0c\n\x04grpc\x18\x06 \x01(\x08\x12\x0e\n\x06metric\x18\x07 \x01(\x08\x12\r\n\x05keras\x18\x08 \x01(\x08\x12\x11\n\tsagemaker\x18\t \x01(\x08\x12\x1c\n\x14\x61rtifact_incremental\x18\n \x01(\x08\x12\x10\n\x08metaflow\x18\x0b \x01(\x08\x12\x0f\n\x07prodigy\x18\x0c \x01(\x08\x12\x15\n\rset_init_name\x18\r \x01(\x08\x12\x13\n\x0bset_init_id\x18\x0e \x01(\x08\x12\x15\n\rset_init_tags\x18\x0f \x01(\x08\x12\x17\n\x0fset_init_config\x18\x10 \x01(\x08\x12\x14\n\x0cset_run_name\x18\x11 \x01(\x08\x12\x14\n\x0cset_run_tags\x18\x12 \x01(\x08\x12\x17\n\x0fset_config_item\x18\x13 \x01(\x08\x12\x0e\n\x06launch\x18\x14 \x01(\x08\x12\x1c\n\x14torch_profiler_trace\x18\x15 \x01(\x08\x12\x0b\n\x03sb3\x18\x16 \x01(\x08\x12\x0f\n\x07service\x18\x17 \x01(\x08\x12\x17\n\x0finit_return_run\x18\x18 \x01(\x08\x12\x1f\n\x17lightgbm_wandb_callback\x18\x19 \x01(\x08\x12\x1c\n\x14lightgbm_log_summary\x18\x1a \x01(\x08\x12\x1f\n\x17\x63\x61tboost_wandb_callback\x18\x1b \x01(\x08\x12\x1c\n\x14\x63\x61tboost_log_summary\x18\x1c \x01(\x08\x12\x17\n\x0ftensorboard_log\x18\x1d \x01(\x08\x12\x16\n\x0e\x65stimator_hook\x18\x1e \x01(\x08\x12\x1e\n\x16xgboost_wandb_callback\x18\x1f \x01(\x08\x12\"\n\x1axgboost_old_wandb_callback\x18 \x01(\x08\x12\x0e\n\x06\x61ttach\x18! \x01(\x08\x12\x19\n\x11tensorboard_patch\x18\" \x01(\x08\x12\x18\n\x10tensorboard_sync\x18# \x01(\x08\x12\x15\n\rkfp_wandb_log\x18$ \x01(\x08\x12\x1b\n\x13maybe_run_overwrite\x18% \x01(\x08\x12\x1c\n\x14keras_metrics_logger\x18& \x01(\x08\x12\x1e\n\x16keras_model_checkpoint\x18\' \x01(\x08\x12!\n\x19keras_wandb_eval_callback\x18( \x01(\x08\x12\x1d\n\x15\x66low_control_overflow\x18) \x01(\x08\x12\x0c\n\x04sync\x18* \x01(\x08\x12\x1d\n\x15\x66low_control_disabled\x18+ \x01(\x08\x12\x1b\n\x13\x66low_control_custom\x18, \x01(\x08\x12\x18\n\x10service_disabled\x18- \x01(\x08\x12\x14\n\x0copen_metrics\x18. \x01(\x08\x12\x1a\n\x12ultralytics_yolov8\x18/ \x01(\x08\x12\x17\n\x0fimporter_mlflow\x18\x30 \x01(\x08\x12\x15\n\rsync_tfevents\x18\x31 \x01(\x08\x12\x15\n\rasync_uploads\x18\x32 \x01(\x08\x12\x16\n\x0eopenai_autolog\x18\x33 \x01(\x08\x12\x18\n\x10langchain_tracer\x18\x34 \x01(\x08\x12\x16\n\x0e\x63ohere_autolog\x18\x35 \x01(\x08\x12\x1b\n\x13hf_pipeline_autolog\x18\x36 \x01(\x08\x12\x0c\n\x04\x63ore\x18\x37 \x01(\x08\x12\r\n\x05lib_c\x18\x38 \x01(\x08\x12\x0f\n\x07lib_cpp\x18\x39 \x01(\x08\x12\x19\n\x11openai_finetuning\x18: \x01(\x08\x12\x19\n\x11\x64iffusers_autolog\x18; \x01(\x08\x12\x1f\n\x17lightning_fabric_logger\x18< \x01(\x08\x12\x14\n\x0cset_step_log\x18= \x01(\x08\x12\x13\n\x0bset_summary\x18> \x01(\x08\x12\x16\n\x0emetric_summary\x18? \x01(\x08\x12\x13\n\x0bmetric_goal\x18@ \x01(\x08\x12\x15\n\rmetric_hidden\x18\x41 \x01(\x08\x12\x18\n\x10metric_step_sync\x18\x42 \x01(\x08\x12\x13\n\x0bshared_mode\x18\x43 \x01(\x08\x12#\n\x1bserver_side_derived_summary\x18\x44 \x01(\x08\x12\x1b\n\x13user_provided_label\x18\x45 \x01(\x08\x12\x1e\n\x16\x64\x63gm_profiling_enabled\x18\x46 \x01(\x08\"\x96\x02\n\x03\x45nv\x12\x0f\n\x07jupyter\x18\x01 \x01(\x08\x12\x0e\n\x06kaggle\x18\x02 \x01(\x08\x12\x0f\n\x07windows\x18\x03 \x01(\x08\x12\x0e\n\x06m1_gpu\x18\x04 \x01(\x08\x12\x13\n\x0bstart_spawn\x18\x05 \x01(\x08\x12\x12\n\nstart_fork\x18\x06 \x01(\x08\x12\x18\n\x10start_forkserver\x18\x07 \x01(\x08\x12\x14\n\x0cstart_thread\x18\x08 \x01(\x08\x12\x10\n\x08maybe_mp\x18\t \x01(\x08\x12\x10\n\x08trainium\x18\n \x01(\x08\x12\x0b\n\x03pex\x18\x0b \x01(\x08\x12\r\n\x05\x63olab\x18\x0c \x01(\x08\x12\x0f\n\x07ipython\x18\r \x01(\x08\x12\x12\n\naws_lambda\x18\x0e \x01(\x08\x12\x0f\n\x07\x61md_gpu\x18\x0f \x01(\x08\"H\n\x06Labels\x12\x13\n\x0b\x63ode_string\x18\x01 \x01(\t\x12\x13\n\x0brepo_string\x18\x02 \x01(\t\x12\x14\n\x0c\x63ode_version\x18\x03 \x01(\t\"\xba\x05\n\nDeprecated\x12!\n\x19keras_callback__data_type\x18\x01 \x01(\x08\x12\x11\n\trun__mode\x18\x02 \x01(\x08\x12\x19\n\x11run__save_no_args\x18\x03 \x01(\x08\x12\x11\n\trun__join\x18\x04 \x01(\x08\x12\r\n\x05plots\x18\x05 \x01(\x08\x12\x15\n\rrun__log_sync\x18\x06 \x01(\x08\x12!\n\x19init__config_include_keys\x18\x07 \x01(\x08\x12!\n\x19init__config_exclude_keys\x18\x08 \x01(\x08\x12\"\n\x1akeras_callback__save_model\x18\t \x01(\x08\x12\x18\n\x10langchain_tracer\x18\n \x01(\x08\x12\x1a\n\x12\x61rtifact__get_path\x18\x0b \x01(\x08\x12#\n\x1b\x61rtifactmanifestentry__name\x18\x0c \x01(\x08\x12\x1e\n\x16\x61pi__artifact_versions\x18\r \x01(\x08\x12(\n artifact_collection__change_type\x18\x0e \x01(\x08\x12\x1f\n\x17run__define_metric_copy\x18\x0f \x01(\x08\x12\x14\n\x0crun_disabled\x18\x10 \x01(\x08\x12\x16\n\x0ekeras_callback\x18\x11 \x01(\x08\x12$\n\x1crun__define_metric_best_goal\x18\x12 \x01(\x08\x12\x19\n\x11run__finish_quiet\x18\x13 \x01(\x08\x12\x18\n\x10run__reinit_bool\x18\x14 \x01(\x08\x12\x14\n\x0crun__get_url\x18\x15 \x01(\x08\x12\x19\n\x11run__project_name\x18\x16 \x01(\x08\x12\x1c\n\x14run__get_project_url\x18\x17 \x01(\x08\x12\x1a\n\x12run__get_sweep_url\x18\x18 \x01(\x08\"|\n\x06Issues\x12%\n\x1dsettings__validation_warnings\x18\x01 \x01(\x08\x12!\n\x19settings__unexpected_args\x18\x02 \x01(\x08\x12(\n settings__preprocessing_warnings\x18\x03 \x01(\x08\x42\x1bZ\x19\x63ore/pkg/service_go_protob\x06proto3')
29
+
30
+ _globals = globals()
31
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
32
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'wandb.proto.wandb_telemetry_pb2', _globals)
33
+ if not _descriptor._USE_C_DESCRIPTORS:
34
+ _globals['DESCRIPTOR']._loaded_options = None
35
+ _globals['DESCRIPTOR']._serialized_options = b'Z\031core/pkg/service_go_proto'
36
+ _globals['_TELEMETRYRECORD']._serialized_start=84
37
+ _globals['_TELEMETRYRECORD']._serialized_end=559
38
+ _globals['_TELEMETRYRESULT']._serialized_start=561
39
+ _globals['_TELEMETRYRESULT']._serialized_end=578
40
+ _globals['_IMPORTS']._serialized_start=581
41
+ _globals['_IMPORTS']._serialized_end=2362
42
+ _globals['_FEATURE']._serialized_start=2365
43
+ _globals['_FEATURE']._serialized_end=4049
44
+ _globals['_ENV']._serialized_start=4052
45
+ _globals['_ENV']._serialized_end=4330
46
+ _globals['_LABELS']._serialized_start=4332
47
+ _globals['_LABELS']._serialized_end=4404
48
+ _globals['_DEPRECATED']._serialized_start=4407
49
+ _globals['_DEPRECATED']._serialized_end=5105
50
+ _globals['_ISSUES']._serialized_start=5107
51
+ _globals['_ISSUES']._serialized_end=5231
52
+ # @@protoc_insertion_point(module_scope)
@@ -8,3 +8,5 @@ elif protobuf_version == "4":
8
8
  from wandb.proto.v4.wandb_base_pb2 import *
9
9
  elif protobuf_version == "5":
10
10
  from wandb.proto.v5.wandb_base_pb2 import *
11
+ elif protobuf_version == "6":
12
+ from wandb.proto.v6.wandb_base_pb2 import *
@@ -22,6 +22,10 @@ DEPRECATED_FEATURES = Literal[
22
22
  "run__define_metric_best_goal",
23
23
  "run__finish_quiet",
24
24
  "run__reinit_bool",
25
+ "run__get_url",
26
+ "run__project_name",
27
+ "run__get_project_url",
28
+ "run__get_sweep_url",
25
29
  ]
26
30
 
27
31
  class Deprecated:
@@ -45,3 +49,7 @@ class Deprecated:
45
49
  run__define_metric_best_goal: DEPRECATED_FEATURES = "run__define_metric_best_goal"
46
50
  run__finish_quiet: DEPRECATED_FEATURES = "run__finish_quiet"
47
51
  run__reinit_bool: DEPRECATED_FEATURES = "run__reinit_bool"
52
+ run__get_url: DEPRECATED_FEATURES = "run__get_url"
53
+ run__project_name: DEPRECATED_FEATURES = "run__project_name"
54
+ run__get_project_url: DEPRECATED_FEATURES = "run__get_project_url"
55
+ run__get_sweep_url: DEPRECATED_FEATURES = "run__get_sweep_url"
@@ -8,9 +8,11 @@ elif protobuf_version == "4":
8
8
  from wandb.proto.v4.wandb_internal_pb2 import *
9
9
  elif protobuf_version == "5":
10
10
  from wandb.proto.v5.wandb_internal_pb2 import *
11
+ elif protobuf_version == "6":
12
+ from wandb.proto.v6.wandb_internal_pb2 import *
11
13
  else:
12
14
  raise ImportError(
13
15
  "Failed to import protobufs for protobuf version"
14
16
  f" {google.protobuf.__version__}. `wandb` only works with major"
15
- " versions 3, 4 and 5 of the protobuf package.",
17
+ " versions 3, 4, 5, and 6 of the protobuf package.",
16
18
  )
@@ -8,3 +8,5 @@ elif protobuf_version == "4":
8
8
  from wandb.proto.v4.wandb_server_pb2 import *
9
9
  elif protobuf_version == "5":
10
10
  from wandb.proto.v5.wandb_server_pb2 import *
11
+ elif protobuf_version == "6":
12
+ from wandb.proto.v6.wandb_server_pb2 import *
@@ -8,3 +8,5 @@ elif protobuf_version == "4":
8
8
  from wandb.proto.v4.wandb_settings_pb2 import *
9
9
  elif protobuf_version == "5":
10
10
  from wandb.proto.v5.wandb_settings_pb2 import *
11
+ elif protobuf_version == "6":
12
+ from wandb.proto.v6.wandb_settings_pb2 import *
@@ -8,3 +8,5 @@ elif protobuf_version == "4":
8
8
  from wandb.proto.v4.wandb_telemetry_pb2 import *
9
9
  elif protobuf_version == "5":
10
10
  from wandb.proto.v5.wandb_telemetry_pb2 import *
11
+ elif protobuf_version == "6":
12
+ from wandb.proto.v6.wandb_telemetry_pb2 import *
@@ -0,0 +1,289 @@
1
+ # Generated by ariadne-codegen
2
+
3
+ from .add_aliases import AddAliases, AddAliasesAddAliases
4
+ from .artifact_collection_membership_files import (
5
+ ArtifactCollectionMembershipFiles,
6
+ ArtifactCollectionMembershipFilesProject,
7
+ ArtifactCollectionMembershipFilesProjectArtifactCollection,
8
+ ArtifactCollectionMembershipFilesProjectArtifactCollectionArtifactMembership,
9
+ )
10
+ from .artifact_version_files import (
11
+ ArtifactVersionFiles,
12
+ ArtifactVersionFilesProject,
13
+ ArtifactVersionFilesProjectArtifactType,
14
+ ArtifactVersionFilesProjectArtifactTypeArtifact,
15
+ )
16
+ from .create_artifact_collection_tag_assignments import (
17
+ CreateArtifactCollectionTagAssignments,
18
+ CreateArtifactCollectionTagAssignmentsCreateArtifactCollectionTagAssignments,
19
+ CreateArtifactCollectionTagAssignmentsCreateArtifactCollectionTagAssignmentsTags,
20
+ )
21
+ from .delete_aliases import DeleteAliases, DeleteAliasesDeleteAliases
22
+ from .delete_artifact_collection_tag_assignments import (
23
+ DeleteArtifactCollectionTagAssignments,
24
+ DeleteArtifactCollectionTagAssignmentsDeleteArtifactCollectionTagAssignments,
25
+ )
26
+ from .delete_artifact_portfolio import (
27
+ DeleteArtifactPortfolio,
28
+ DeleteArtifactPortfolioDeleteArtifactPortfolio,
29
+ DeleteArtifactPortfolioDeleteArtifactPortfolioArtifactCollection,
30
+ )
31
+ from .delete_artifact_sequence import (
32
+ DeleteArtifactSequence,
33
+ DeleteArtifactSequenceDeleteArtifactSequence,
34
+ DeleteArtifactSequenceDeleteArtifactSequenceArtifactCollection,
35
+ )
36
+ from .enums import ArtifactCollectionState, ArtifactState
37
+ from .fetch_linked_artifacts import (
38
+ FetchLinkedArtifacts,
39
+ FetchLinkedArtifactsArtifact,
40
+ FetchLinkedArtifactsArtifactArtifactMemberships,
41
+ FetchLinkedArtifactsArtifactArtifactMembershipsEdges,
42
+ FetchLinkedArtifactsArtifactArtifactMembershipsEdgesNode,
43
+ FetchLinkedArtifactsArtifactArtifactMembershipsEdgesNodeAliases,
44
+ FetchLinkedArtifactsArtifactArtifactMembershipsEdgesNodeArtifactCollection,
45
+ FetchLinkedArtifactsArtifactArtifactMembershipsEdgesNodeArtifactCollectionProject,
46
+ )
47
+ from .fragments import (
48
+ ArtifactCollectionsFragment,
49
+ ArtifactCollectionsFragmentEdges,
50
+ ArtifactCollectionsFragmentEdgesNode,
51
+ ArtifactCollectionsFragmentPageInfo,
52
+ ArtifactFragment,
53
+ ArtifactFragmentAliases,
54
+ ArtifactFragmentAliasesArtifactCollection,
55
+ ArtifactFragmentAliasesArtifactCollectionProject,
56
+ ArtifactFragmentArtifactSequence,
57
+ ArtifactFragmentArtifactSequenceProject,
58
+ ArtifactFragmentArtifactType,
59
+ ArtifactFragmentCurrentManifest,
60
+ ArtifactFragmentCurrentManifestFile,
61
+ ArtifactFragmentTags,
62
+ ArtifactPortfolioTypeFields,
63
+ ArtifactSequenceTypeFields,
64
+ ArtifactsFragment,
65
+ ArtifactsFragmentEdges,
66
+ ArtifactsFragmentPageInfo,
67
+ ArtifactTypeFragment,
68
+ ArtifactTypesFragment,
69
+ ArtifactTypesFragmentEdges,
70
+ ArtifactTypesFragmentPageInfo,
71
+ FilesFragment,
72
+ FilesFragmentEdges,
73
+ FilesFragmentEdgesNode,
74
+ FilesFragmentPageInfo,
75
+ )
76
+ from .input_types import ArtifactAliasInput, ArtifactCollectionAliasInput, TagInput
77
+ from .move_artifact_collection import (
78
+ MoveArtifactCollection,
79
+ MoveArtifactCollectionMoveArtifactSequence,
80
+ MoveArtifactCollectionMoveArtifactSequenceArtifactCollection,
81
+ )
82
+ from .operations import (
83
+ ADD_ALIASES_GQL,
84
+ ARTIFACT_COLLECTION_MEMBERSHIP_FILES_GQL,
85
+ ARTIFACT_VERSION_FILES_GQL,
86
+ CREATE_ARTIFACT_COLLECTION_TAG_ASSIGNMENTS_GQL,
87
+ DELETE_ALIASES_GQL,
88
+ DELETE_ARTIFACT_COLLECTION_TAG_ASSIGNMENTS_GQL,
89
+ DELETE_ARTIFACT_PORTFOLIO_GQL,
90
+ DELETE_ARTIFACT_SEQUENCE_GQL,
91
+ FETCH_LINKED_ARTIFACTS_GQL,
92
+ MOVE_ARTIFACT_COLLECTION_GQL,
93
+ PROJECT_ARTIFACT_COLLECTION_GQL,
94
+ PROJECT_ARTIFACT_COLLECTIONS_GQL,
95
+ PROJECT_ARTIFACT_TYPE_GQL,
96
+ PROJECT_ARTIFACT_TYPES_GQL,
97
+ PROJECT_ARTIFACTS_GQL,
98
+ RUN_INPUT_ARTIFACTS_GQL,
99
+ RUN_OUTPUT_ARTIFACTS_GQL,
100
+ UPDATE_ARTIFACT_GQL,
101
+ UPDATE_ARTIFACT_PORTFOLIO_GQL,
102
+ UPDATE_ARTIFACT_SEQUENCE_GQL,
103
+ )
104
+ from .project_artifact_collection import (
105
+ ProjectArtifactCollection,
106
+ ProjectArtifactCollectionProject,
107
+ ProjectArtifactCollectionProjectArtifactType,
108
+ ProjectArtifactCollectionProjectArtifactTypeArtifactCollection,
109
+ ProjectArtifactCollectionProjectArtifactTypeArtifactCollectionAliases,
110
+ ProjectArtifactCollectionProjectArtifactTypeArtifactCollectionAliasesEdges,
111
+ ProjectArtifactCollectionProjectArtifactTypeArtifactCollectionAliasesEdgesNode,
112
+ ProjectArtifactCollectionProjectArtifactTypeArtifactCollectionAliasesPageInfo,
113
+ ProjectArtifactCollectionProjectArtifactTypeArtifactCollectionTags,
114
+ ProjectArtifactCollectionProjectArtifactTypeArtifactCollectionTagsEdges,
115
+ ProjectArtifactCollectionProjectArtifactTypeArtifactCollectionTagsEdgesNode,
116
+ ProjectArtifactCollectionProjectArtifactTypeArtifactSequence,
117
+ )
118
+ from .project_artifact_collections import (
119
+ ProjectArtifactCollections,
120
+ ProjectArtifactCollectionsProject,
121
+ ProjectArtifactCollectionsProjectArtifactType,
122
+ )
123
+ from .project_artifact_type import ProjectArtifactType, ProjectArtifactTypeProject
124
+ from .project_artifact_types import ProjectArtifactTypes, ProjectArtifactTypesProject
125
+ from .project_artifacts import (
126
+ ProjectArtifacts,
127
+ ProjectArtifactsProject,
128
+ ProjectArtifactsProjectArtifactType,
129
+ ProjectArtifactsProjectArtifactTypeArtifactCollection,
130
+ )
131
+ from .run_input_artifacts import (
132
+ RunInputArtifacts,
133
+ RunInputArtifactsProject,
134
+ RunInputArtifactsProjectRun,
135
+ RunInputArtifactsProjectRunInputArtifacts,
136
+ RunInputArtifactsProjectRunInputArtifactsEdges,
137
+ RunInputArtifactsProjectRunInputArtifactsPageInfo,
138
+ )
139
+ from .run_output_artifacts import (
140
+ RunOutputArtifacts,
141
+ RunOutputArtifactsProject,
142
+ RunOutputArtifactsProjectRun,
143
+ RunOutputArtifactsProjectRunOutputArtifacts,
144
+ RunOutputArtifactsProjectRunOutputArtifactsEdges,
145
+ RunOutputArtifactsProjectRunOutputArtifactsPageInfo,
146
+ )
147
+ from .update_artifact import UpdateArtifact, UpdateArtifactUpdateArtifact
148
+ from .update_artifact_portfolio import (
149
+ UpdateArtifactPortfolio,
150
+ UpdateArtifactPortfolioUpdateArtifactPortfolio,
151
+ UpdateArtifactPortfolioUpdateArtifactPortfolioArtifactCollection,
152
+ )
153
+ from .update_artifact_sequence import (
154
+ UpdateArtifactSequence,
155
+ UpdateArtifactSequenceUpdateArtifactSequence,
156
+ UpdateArtifactSequenceUpdateArtifactSequenceArtifactCollection,
157
+ )
158
+
159
+ __all__ = [
160
+ "ADD_ALIASES_GQL",
161
+ "ARTIFACT_COLLECTION_MEMBERSHIP_FILES_GQL",
162
+ "ARTIFACT_VERSION_FILES_GQL",
163
+ "CREATE_ARTIFACT_COLLECTION_TAG_ASSIGNMENTS_GQL",
164
+ "DELETE_ALIASES_GQL",
165
+ "DELETE_ARTIFACT_COLLECTION_TAG_ASSIGNMENTS_GQL",
166
+ "DELETE_ARTIFACT_PORTFOLIO_GQL",
167
+ "DELETE_ARTIFACT_SEQUENCE_GQL",
168
+ "FETCH_LINKED_ARTIFACTS_GQL",
169
+ "MOVE_ARTIFACT_COLLECTION_GQL",
170
+ "PROJECT_ARTIFACTS_GQL",
171
+ "PROJECT_ARTIFACT_COLLECTIONS_GQL",
172
+ "PROJECT_ARTIFACT_COLLECTION_GQL",
173
+ "PROJECT_ARTIFACT_TYPES_GQL",
174
+ "PROJECT_ARTIFACT_TYPE_GQL",
175
+ "RUN_INPUT_ARTIFACTS_GQL",
176
+ "RUN_OUTPUT_ARTIFACTS_GQL",
177
+ "UPDATE_ARTIFACT_GQL",
178
+ "UPDATE_ARTIFACT_PORTFOLIO_GQL",
179
+ "UPDATE_ARTIFACT_SEQUENCE_GQL",
180
+ "DeleteArtifactSequence",
181
+ "DeleteArtifactSequenceDeleteArtifactSequence",
182
+ "DeleteArtifactSequenceDeleteArtifactSequenceArtifactCollection",
183
+ "DeleteArtifactPortfolio",
184
+ "DeleteArtifactPortfolioDeleteArtifactPortfolio",
185
+ "DeleteArtifactPortfolioDeleteArtifactPortfolioArtifactCollection",
186
+ "UpdateArtifactSequence",
187
+ "UpdateArtifactSequenceUpdateArtifactSequence",
188
+ "UpdateArtifactSequenceUpdateArtifactSequenceArtifactCollection",
189
+ "UpdateArtifactPortfolio",
190
+ "UpdateArtifactPortfolioUpdateArtifactPortfolio",
191
+ "UpdateArtifactPortfolioUpdateArtifactPortfolioArtifactCollection",
192
+ "MoveArtifactCollection",
193
+ "MoveArtifactCollectionMoveArtifactSequence",
194
+ "MoveArtifactCollectionMoveArtifactSequenceArtifactCollection",
195
+ "CreateArtifactCollectionTagAssignments",
196
+ "CreateArtifactCollectionTagAssignmentsCreateArtifactCollectionTagAssignments",
197
+ "CreateArtifactCollectionTagAssignmentsCreateArtifactCollectionTagAssignmentsTags",
198
+ "DeleteArtifactCollectionTagAssignments",
199
+ "DeleteArtifactCollectionTagAssignmentsDeleteArtifactCollectionTagAssignments",
200
+ "ProjectArtifactCollections",
201
+ "ProjectArtifactCollectionsProject",
202
+ "ProjectArtifactCollectionsProjectArtifactType",
203
+ "ProjectArtifactCollection",
204
+ "ProjectArtifactCollectionProject",
205
+ "ProjectArtifactCollectionProjectArtifactType",
206
+ "ProjectArtifactCollectionProjectArtifactTypeArtifactCollection",
207
+ "ProjectArtifactCollectionProjectArtifactTypeArtifactCollectionAliases",
208
+ "ProjectArtifactCollectionProjectArtifactTypeArtifactCollectionAliasesEdges",
209
+ "ProjectArtifactCollectionProjectArtifactTypeArtifactCollectionAliasesEdgesNode",
210
+ "ProjectArtifactCollectionProjectArtifactTypeArtifactCollectionAliasesPageInfo",
211
+ "ProjectArtifactCollectionProjectArtifactTypeArtifactCollectionTags",
212
+ "ProjectArtifactCollectionProjectArtifactTypeArtifactCollectionTagsEdges",
213
+ "ProjectArtifactCollectionProjectArtifactTypeArtifactCollectionTagsEdgesNode",
214
+ "ProjectArtifactCollectionProjectArtifactTypeArtifactSequence",
215
+ "ArtifactVersionFiles",
216
+ "ArtifactVersionFilesProject",
217
+ "ArtifactVersionFilesProjectArtifactType",
218
+ "ArtifactVersionFilesProjectArtifactTypeArtifact",
219
+ "ArtifactCollectionMembershipFiles",
220
+ "ArtifactCollectionMembershipFilesProject",
221
+ "ArtifactCollectionMembershipFilesProjectArtifactCollection",
222
+ "ArtifactCollectionMembershipFilesProjectArtifactCollectionArtifactMembership",
223
+ "ProjectArtifactTypes",
224
+ "ProjectArtifactTypesProject",
225
+ "ProjectArtifactType",
226
+ "ProjectArtifactTypeProject",
227
+ "ProjectArtifacts",
228
+ "ProjectArtifactsProject",
229
+ "ProjectArtifactsProjectArtifactType",
230
+ "ProjectArtifactsProjectArtifactTypeArtifactCollection",
231
+ "RunOutputArtifacts",
232
+ "RunOutputArtifactsProject",
233
+ "RunOutputArtifactsProjectRun",
234
+ "RunOutputArtifactsProjectRunOutputArtifacts",
235
+ "RunOutputArtifactsProjectRunOutputArtifactsEdges",
236
+ "RunOutputArtifactsProjectRunOutputArtifactsPageInfo",
237
+ "RunInputArtifacts",
238
+ "RunInputArtifactsProject",
239
+ "RunInputArtifactsProjectRun",
240
+ "RunInputArtifactsProjectRunInputArtifacts",
241
+ "RunInputArtifactsProjectRunInputArtifactsEdges",
242
+ "RunInputArtifactsProjectRunInputArtifactsPageInfo",
243
+ "FetchLinkedArtifacts",
244
+ "FetchLinkedArtifactsArtifact",
245
+ "FetchLinkedArtifactsArtifactArtifactMemberships",
246
+ "FetchLinkedArtifactsArtifactArtifactMembershipsEdges",
247
+ "FetchLinkedArtifactsArtifactArtifactMembershipsEdgesNode",
248
+ "FetchLinkedArtifactsArtifactArtifactMembershipsEdgesNodeAliases",
249
+ "FetchLinkedArtifactsArtifactArtifactMembershipsEdgesNodeArtifactCollection",
250
+ "FetchLinkedArtifactsArtifactArtifactMembershipsEdgesNodeArtifactCollectionProject",
251
+ "AddAliases",
252
+ "AddAliasesAddAliases",
253
+ "DeleteAliases",
254
+ "DeleteAliasesDeleteAliases",
255
+ "UpdateArtifact",
256
+ "UpdateArtifactUpdateArtifact",
257
+ "ArtifactAliasInput",
258
+ "ArtifactCollectionAliasInput",
259
+ "TagInput",
260
+ "ArtifactCollectionsFragment",
261
+ "ArtifactCollectionsFragmentEdges",
262
+ "ArtifactCollectionsFragmentEdgesNode",
263
+ "ArtifactCollectionsFragmentPageInfo",
264
+ "ArtifactFragment",
265
+ "ArtifactFragmentAliases",
266
+ "ArtifactFragmentAliasesArtifactCollection",
267
+ "ArtifactFragmentAliasesArtifactCollectionProject",
268
+ "ArtifactFragmentArtifactSequence",
269
+ "ArtifactFragmentArtifactSequenceProject",
270
+ "ArtifactFragmentArtifactType",
271
+ "ArtifactFragmentCurrentManifest",
272
+ "ArtifactFragmentCurrentManifestFile",
273
+ "ArtifactFragmentTags",
274
+ "ArtifactPortfolioTypeFields",
275
+ "ArtifactSequenceTypeFields",
276
+ "ArtifactTypeFragment",
277
+ "ArtifactTypesFragment",
278
+ "ArtifactTypesFragmentEdges",
279
+ "ArtifactTypesFragmentPageInfo",
280
+ "ArtifactsFragment",
281
+ "ArtifactsFragmentEdges",
282
+ "ArtifactsFragmentPageInfo",
283
+ "FilesFragment",
284
+ "FilesFragmentEdges",
285
+ "FilesFragmentEdgesNode",
286
+ "FilesFragmentPageInfo",
287
+ "ArtifactCollectionState",
288
+ "ArtifactState",
289
+ ]
@@ -0,0 +1,21 @@
1
+ # Generated by ariadne-codegen
2
+ # Source: tools/graphql_codegen/artifacts/
3
+
4
+ from __future__ import annotations
5
+
6
+ from typing import Optional
7
+
8
+ from pydantic import Field
9
+
10
+ from wandb._pydantic import GQLBase
11
+
12
+
13
+ class AddAliases(GQLBase):
14
+ add_aliases: Optional[AddAliasesAddAliases] = Field(alias="addAliases")
15
+
16
+
17
+ class AddAliasesAddAliases(GQLBase):
18
+ success: bool
19
+
20
+
21
+ AddAliases.model_rebuild()
@@ -0,0 +1,43 @@
1
+ # Generated by ariadne-codegen
2
+ # Source: tools/graphql_codegen/artifacts/
3
+
4
+ from __future__ import annotations
5
+
6
+ from typing import Literal, Optional
7
+
8
+ from pydantic import Field
9
+
10
+ from wandb._pydantic import GQLBase, Typename
11
+
12
+ from .fragments import FilesFragment
13
+
14
+
15
+ class ArtifactCollectionMembershipFiles(GQLBase):
16
+ project: Optional[ArtifactCollectionMembershipFilesProject]
17
+
18
+
19
+ class ArtifactCollectionMembershipFilesProject(GQLBase):
20
+ artifact_collection: Optional[
21
+ ArtifactCollectionMembershipFilesProjectArtifactCollection
22
+ ] = Field(alias="artifactCollection")
23
+
24
+
25
+ class ArtifactCollectionMembershipFilesProjectArtifactCollection(GQLBase):
26
+ typename__: Typename[
27
+ Literal["ArtifactCollection", "ArtifactPortfolio", "ArtifactSequence"]
28
+ ]
29
+ artifact_membership: Optional[
30
+ ArtifactCollectionMembershipFilesProjectArtifactCollectionArtifactMembership
31
+ ] = Field(alias="artifactMembership")
32
+
33
+
34
+ class ArtifactCollectionMembershipFilesProjectArtifactCollectionArtifactMembership(
35
+ GQLBase
36
+ ):
37
+ files: Optional[FilesFragment]
38
+
39
+
40
+ ArtifactCollectionMembershipFiles.model_rebuild()
41
+ ArtifactCollectionMembershipFilesProject.model_rebuild()
42
+ ArtifactCollectionMembershipFilesProjectArtifactCollection.model_rebuild()
43
+ ArtifactCollectionMembershipFilesProjectArtifactCollectionArtifactMembership.model_rebuild()
@@ -0,0 +1,36 @@
1
+ # Generated by ariadne-codegen
2
+ # Source: tools/graphql_codegen/artifacts/
3
+
4
+ from __future__ import annotations
5
+
6
+ from typing import Optional
7
+
8
+ from pydantic import Field
9
+
10
+ from wandb._pydantic import GQLBase
11
+
12
+ from .fragments import FilesFragment
13
+
14
+
15
+ class ArtifactVersionFiles(GQLBase):
16
+ project: Optional[ArtifactVersionFilesProject]
17
+
18
+
19
+ class ArtifactVersionFilesProject(GQLBase):
20
+ artifact_type: Optional[ArtifactVersionFilesProjectArtifactType] = Field(
21
+ alias="artifactType"
22
+ )
23
+
24
+
25
+ class ArtifactVersionFilesProjectArtifactType(GQLBase):
26
+ artifact: Optional[ArtifactVersionFilesProjectArtifactTypeArtifact]
27
+
28
+
29
+ class ArtifactVersionFilesProjectArtifactTypeArtifact(GQLBase):
30
+ files: Optional[FilesFragment]
31
+
32
+
33
+ ArtifactVersionFiles.model_rebuild()
34
+ ArtifactVersionFilesProject.model_rebuild()
35
+ ArtifactVersionFilesProjectArtifactType.model_rebuild()
36
+ ArtifactVersionFilesProjectArtifactTypeArtifact.model_rebuild()
@@ -0,0 +1,36 @@
1
+ # Generated by ariadne-codegen
2
+ # Source: tools/graphql_codegen/artifacts/
3
+
4
+ from __future__ import annotations
5
+
6
+ from typing import List, Optional
7
+
8
+ from pydantic import Field
9
+
10
+ from wandb._pydantic import GQLBase, GQLId
11
+
12
+
13
+ class CreateArtifactCollectionTagAssignments(GQLBase):
14
+ create_artifact_collection_tag_assignments: Optional[
15
+ CreateArtifactCollectionTagAssignmentsCreateArtifactCollectionTagAssignments
16
+ ] = Field(alias="createArtifactCollectionTagAssignments")
17
+
18
+
19
+ class CreateArtifactCollectionTagAssignmentsCreateArtifactCollectionTagAssignments(
20
+ GQLBase
21
+ ):
22
+ tags: List[
23
+ CreateArtifactCollectionTagAssignmentsCreateArtifactCollectionTagAssignmentsTags
24
+ ]
25
+
26
+
27
+ class CreateArtifactCollectionTagAssignmentsCreateArtifactCollectionTagAssignmentsTags(
28
+ GQLBase
29
+ ):
30
+ id: GQLId
31
+ name: str
32
+ tag_category_name: str = Field(alias="tagCategoryName")
33
+
34
+
35
+ CreateArtifactCollectionTagAssignments.model_rebuild()
36
+ CreateArtifactCollectionTagAssignmentsCreateArtifactCollectionTagAssignments.model_rebuild()