wandb 0.19.9__py3-none-win_amd64.whl → 0.19.10__py3-none-win_amd64.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.
- wandb/__init__.py +1 -1
- wandb/__init__.pyi +4 -1
- wandb/_pydantic/__init__.py +14 -7
- wandb/_pydantic/base.py +44 -9
- wandb/_pydantic/utils.py +66 -0
- wandb/_pydantic/v1_compat.py +78 -56
- wandb/apis/public/__init__.py +2 -2
- wandb/apis/public/api.py +114 -2
- wandb/apis/public/artifacts.py +365 -673
- wandb/apis/public/automations.py +69 -0
- wandb/apis/public/integrations.py +168 -0
- wandb/apis/public/projects.py +29 -0
- wandb/apis/public/utils.py +107 -1
- wandb/automations/__init__.py +81 -0
- wandb/automations/_filters/__init__.py +40 -0
- wandb/automations/_filters/expressions.py +179 -0
- wandb/automations/_filters/operators.py +267 -0
- wandb/automations/_filters/run_metrics.py +183 -0
- wandb/automations/_generated/__init__.py +184 -0
- wandb/automations/_generated/create_filter_trigger.py +21 -0
- wandb/automations/_generated/create_generic_webhook_integration.py +43 -0
- wandb/automations/_generated/delete_trigger.py +19 -0
- wandb/automations/_generated/enums.py +33 -0
- wandb/automations/_generated/fragments.py +343 -0
- wandb/automations/_generated/generic_webhook_integrations_by_entity.py +22 -0
- wandb/automations/_generated/get_triggers.py +24 -0
- wandb/automations/_generated/get_triggers_by_entity.py +24 -0
- wandb/automations/_generated/input_types.py +104 -0
- wandb/automations/_generated/integrations_by_entity.py +22 -0
- wandb/automations/_generated/operations.py +710 -0
- wandb/automations/_generated/slack_integrations_by_entity.py +22 -0
- wandb/automations/_generated/update_filter_trigger.py +21 -0
- wandb/automations/_utils.py +123 -0
- wandb/automations/_validators.py +73 -0
- wandb/automations/actions.py +205 -0
- wandb/automations/automations.py +109 -0
- wandb/automations/events.py +235 -0
- wandb/automations/integrations.py +26 -0
- wandb/automations/scopes.py +76 -0
- wandb/beta/workflows.py +9 -10
- wandb/bin/gpu_stats.exe +0 -0
- wandb/bin/wandb-core +0 -0
- wandb/cli/cli.py +3 -3
- wandb/integration/keras/keras.py +2 -1
- wandb/integration/langchain/wandb_tracer.py +2 -1
- wandb/jupyter.py +137 -118
- wandb/old/summary.py +0 -2
- wandb/proto/v3/wandb_internal_pb2.py +293 -292
- wandb/proto/v3/wandb_settings_pb2.py +2 -2
- wandb/proto/v3/wandb_telemetry_pb2.py +10 -10
- wandb/proto/v4/wandb_internal_pb2.py +292 -292
- wandb/proto/v4/wandb_settings_pb2.py +2 -2
- wandb/proto/v4/wandb_telemetry_pb2.py +10 -10
- wandb/proto/v5/wandb_internal_pb2.py +292 -292
- wandb/proto/v5/wandb_settings_pb2.py +2 -2
- wandb/proto/v5/wandb_telemetry_pb2.py +10 -10
- wandb/proto/v6/wandb_base_pb2.py +41 -0
- wandb/proto/v6/wandb_internal_pb2.py +393 -0
- wandb/proto/v6/wandb_server_pb2.py +78 -0
- wandb/proto/v6/wandb_settings_pb2.py +58 -0
- wandb/proto/v6/wandb_telemetry_pb2.py +52 -0
- wandb/proto/wandb_base_pb2.py +2 -0
- wandb/proto/wandb_deprecated.py +8 -0
- wandb/proto/wandb_internal_pb2.py +3 -1
- wandb/proto/wandb_server_pb2.py +2 -0
- wandb/proto/wandb_settings_pb2.py +2 -0
- wandb/proto/wandb_telemetry_pb2.py +2 -0
- wandb/sdk/artifacts/_generated/__init__.py +248 -0
- wandb/sdk/artifacts/_generated/artifact_collection_membership_files.py +43 -0
- wandb/sdk/artifacts/_generated/artifact_version_files.py +36 -0
- wandb/sdk/artifacts/_generated/create_artifact_collection_tag_assignments.py +36 -0
- wandb/sdk/artifacts/_generated/delete_artifact_collection_tag_assignments.py +25 -0
- wandb/sdk/artifacts/_generated/delete_artifact_portfolio.py +35 -0
- wandb/sdk/artifacts/_generated/delete_artifact_sequence.py +35 -0
- wandb/sdk/artifacts/_generated/enums.py +17 -0
- wandb/sdk/artifacts/_generated/fragments.py +186 -0
- wandb/sdk/artifacts/_generated/input_types.py +16 -0
- wandb/sdk/artifacts/_generated/move_artifact_collection.py +35 -0
- wandb/sdk/artifacts/_generated/operations.py +510 -0
- wandb/sdk/artifacts/_generated/project_artifact_collection.py +101 -0
- wandb/sdk/artifacts/_generated/project_artifact_collections.py +33 -0
- wandb/sdk/artifacts/_generated/project_artifact_type.py +24 -0
- wandb/sdk/artifacts/_generated/project_artifact_types.py +24 -0
- wandb/sdk/artifacts/_generated/project_artifacts.py +42 -0
- wandb/sdk/artifacts/_generated/run_input_artifacts.py +51 -0
- wandb/sdk/artifacts/_generated/run_output_artifacts.py +51 -0
- wandb/sdk/artifacts/_generated/update_artifact_portfolio.py +35 -0
- wandb/sdk/artifacts/_generated/update_artifact_sequence.py +35 -0
- wandb/sdk/artifacts/_graphql_fragments.py +56 -79
- wandb/sdk/artifacts/artifact.py +40 -13
- wandb/sdk/artifacts/artifact_manifest_entry.py +2 -1
- wandb/sdk/artifacts/storage_handlers/azure_handler.py +1 -0
- wandb/sdk/data_types/base_types/media.py +2 -3
- wandb/sdk/data_types/base_types/wb_value.py +34 -11
- wandb/sdk/data_types/html.py +36 -9
- wandb/sdk/data_types/image.py +12 -12
- wandb/sdk/data_types/table.py +5 -0
- wandb/sdk/data_types/trace_tree.py +2 -0
- wandb/sdk/data_types/utils.py +1 -1
- wandb/sdk/data_types/video.py +14 -26
- wandb/sdk/interface/interface.py +2 -0
- wandb/sdk/internal/profiler.py +6 -5
- wandb/sdk/internal/run.py +13 -6
- wandb/sdk/lib/apikey.py +25 -4
- wandb/sdk/lib/asyncio_compat.py +1 -1
- wandb/sdk/lib/deprecate.py +13 -22
- wandb/sdk/lib/disabled.py +2 -1
- wandb/sdk/lib/printer.py +37 -8
- wandb/sdk/lib/printer_asyncio.py +46 -0
- wandb/sdk/lib/redirect.py +10 -5
- wandb/sdk/service/server_sock.py +19 -14
- wandb/sdk/service/service.py +9 -7
- wandb/sdk/service/streams.py +5 -0
- wandb/sdk/verify/verify.py +6 -3
- wandb/sdk/wandb_init.py +185 -65
- wandb/sdk/wandb_login.py +13 -4
- wandb/sdk/wandb_run.py +382 -286
- wandb/sdk/wandb_settings.py +21 -3
- wandb/sdk/wandb_setup.py +49 -0
- wandb/util.py +29 -29
- {wandb-0.19.9.dist-info → wandb-0.19.10.dist-info}/METADATA +5 -5
- {wandb-0.19.9.dist-info → wandb-0.19.10.dist-info}/RECORD +125 -72
- wandb/_globals.py +0 -19
- wandb/sdk/internal/_generated/base.py +0 -226
- wandb/sdk/internal/_generated/typing_compat.py +0 -14
- {wandb-0.19.9.dist-info → wandb-0.19.10.dist-info}/WHEEL +0 -0
- {wandb-0.19.9.dist-info → wandb-0.19.10.dist-info}/entry_points.txt +0 -0
- {wandb-0.19.9.dist-info → wandb-0.19.10.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\"\xf4\x0c\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\"\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=4017
|
44
|
+
_globals['_ENV']._serialized_start=4020
|
45
|
+
_globals['_ENV']._serialized_end=4298
|
46
|
+
_globals['_LABELS']._serialized_start=4300
|
47
|
+
_globals['_LABELS']._serialized_end=4372
|
48
|
+
_globals['_DEPRECATED']._serialized_start=4375
|
49
|
+
_globals['_DEPRECATED']._serialized_end=5073
|
50
|
+
_globals['_ISSUES']._serialized_start=5075
|
51
|
+
_globals['_ISSUES']._serialized_end=5199
|
52
|
+
# @@protoc_insertion_point(module_scope)
|
wandb/proto/wandb_base_pb2.py
CHANGED
wandb/proto/wandb_deprecated.py
CHANGED
@@ -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
|
17
|
+
" versions 3, 4, 5, and 6 of the protobuf package.",
|
16
18
|
)
|
wandb/proto/wandb_server_pb2.py
CHANGED
@@ -0,0 +1,248 @@
|
|
1
|
+
# Generated by ariadne-codegen
|
2
|
+
|
3
|
+
from .artifact_collection_membership_files import (
|
4
|
+
ArtifactCollectionMembershipFiles,
|
5
|
+
ArtifactCollectionMembershipFilesProject,
|
6
|
+
ArtifactCollectionMembershipFilesProjectArtifactCollection,
|
7
|
+
ArtifactCollectionMembershipFilesProjectArtifactCollectionArtifactMembership,
|
8
|
+
)
|
9
|
+
from .artifact_version_files import (
|
10
|
+
ArtifactVersionFiles,
|
11
|
+
ArtifactVersionFilesProject,
|
12
|
+
ArtifactVersionFilesProjectArtifactType,
|
13
|
+
ArtifactVersionFilesProjectArtifactTypeArtifact,
|
14
|
+
)
|
15
|
+
from .create_artifact_collection_tag_assignments import (
|
16
|
+
CreateArtifactCollectionTagAssignments,
|
17
|
+
CreateArtifactCollectionTagAssignmentsCreateArtifactCollectionTagAssignments,
|
18
|
+
CreateArtifactCollectionTagAssignmentsCreateArtifactCollectionTagAssignmentsTags,
|
19
|
+
)
|
20
|
+
from .delete_artifact_collection_tag_assignments import (
|
21
|
+
DeleteArtifactCollectionTagAssignments,
|
22
|
+
DeleteArtifactCollectionTagAssignmentsDeleteArtifactCollectionTagAssignments,
|
23
|
+
)
|
24
|
+
from .delete_artifact_portfolio import (
|
25
|
+
DeleteArtifactPortfolio,
|
26
|
+
DeleteArtifactPortfolioDeleteArtifactPortfolio,
|
27
|
+
DeleteArtifactPortfolioDeleteArtifactPortfolioArtifactCollection,
|
28
|
+
)
|
29
|
+
from .delete_artifact_sequence import (
|
30
|
+
DeleteArtifactSequence,
|
31
|
+
DeleteArtifactSequenceDeleteArtifactSequence,
|
32
|
+
DeleteArtifactSequenceDeleteArtifactSequenceArtifactCollection,
|
33
|
+
)
|
34
|
+
from .enums import ArtifactCollectionState, ArtifactState
|
35
|
+
from .fragments import (
|
36
|
+
ArtifactCollectionsFragment,
|
37
|
+
ArtifactCollectionsFragmentEdges,
|
38
|
+
ArtifactCollectionsFragmentEdgesNode,
|
39
|
+
ArtifactCollectionsFragmentPageInfo,
|
40
|
+
ArtifactFragment,
|
41
|
+
ArtifactFragmentAliases,
|
42
|
+
ArtifactFragmentAliasesArtifactCollection,
|
43
|
+
ArtifactFragmentAliasesArtifactCollectionProject,
|
44
|
+
ArtifactFragmentArtifactSequence,
|
45
|
+
ArtifactFragmentArtifactSequenceProject,
|
46
|
+
ArtifactFragmentArtifactType,
|
47
|
+
ArtifactFragmentCurrentManifest,
|
48
|
+
ArtifactFragmentCurrentManifestFile,
|
49
|
+
ArtifactFragmentTags,
|
50
|
+
ArtifactsFragment,
|
51
|
+
ArtifactsFragmentEdges,
|
52
|
+
ArtifactsFragmentPageInfo,
|
53
|
+
ArtifactTypeFragment,
|
54
|
+
ArtifactTypesFragment,
|
55
|
+
ArtifactTypesFragmentEdges,
|
56
|
+
ArtifactTypesFragmentPageInfo,
|
57
|
+
FilesFragment,
|
58
|
+
FilesFragmentEdges,
|
59
|
+
FilesFragmentEdgesNode,
|
60
|
+
FilesFragmentPageInfo,
|
61
|
+
)
|
62
|
+
from .input_types import TagInput
|
63
|
+
from .move_artifact_collection import (
|
64
|
+
MoveArtifactCollection,
|
65
|
+
MoveArtifactCollectionMoveArtifactSequence,
|
66
|
+
MoveArtifactCollectionMoveArtifactSequenceArtifactCollection,
|
67
|
+
)
|
68
|
+
from .operations import (
|
69
|
+
ARTIFACT_COLLECTION_MEMBERSHIP_FILES_GQL,
|
70
|
+
ARTIFACT_VERSION_FILES_GQL,
|
71
|
+
CREATE_ARTIFACT_COLLECTION_TAG_ASSIGNMENTS_GQL,
|
72
|
+
DELETE_ARTIFACT_COLLECTION_TAG_ASSIGNMENTS_GQL,
|
73
|
+
DELETE_ARTIFACT_PORTFOLIO_GQL,
|
74
|
+
DELETE_ARTIFACT_SEQUENCE_GQL,
|
75
|
+
MOVE_ARTIFACT_COLLECTION_GQL,
|
76
|
+
PROJECT_ARTIFACT_COLLECTION_GQL,
|
77
|
+
PROJECT_ARTIFACT_COLLECTIONS_GQL,
|
78
|
+
PROJECT_ARTIFACT_TYPE_GQL,
|
79
|
+
PROJECT_ARTIFACT_TYPES_GQL,
|
80
|
+
PROJECT_ARTIFACTS_GQL,
|
81
|
+
RUN_INPUT_ARTIFACTS_GQL,
|
82
|
+
RUN_OUTPUT_ARTIFACTS_GQL,
|
83
|
+
UPDATE_ARTIFACT_PORTFOLIO_GQL,
|
84
|
+
UPDATE_ARTIFACT_SEQUENCE_GQL,
|
85
|
+
)
|
86
|
+
from .project_artifact_collection import (
|
87
|
+
ProjectArtifactCollection,
|
88
|
+
ProjectArtifactCollectionProject,
|
89
|
+
ProjectArtifactCollectionProjectArtifactType,
|
90
|
+
ProjectArtifactCollectionProjectArtifactTypeArtifactCollection,
|
91
|
+
ProjectArtifactCollectionProjectArtifactTypeArtifactCollectionAliases,
|
92
|
+
ProjectArtifactCollectionProjectArtifactTypeArtifactCollectionAliasesEdges,
|
93
|
+
ProjectArtifactCollectionProjectArtifactTypeArtifactCollectionAliasesEdgesNode,
|
94
|
+
ProjectArtifactCollectionProjectArtifactTypeArtifactCollectionAliasesPageInfo,
|
95
|
+
ProjectArtifactCollectionProjectArtifactTypeArtifactCollectionTags,
|
96
|
+
ProjectArtifactCollectionProjectArtifactTypeArtifactCollectionTagsEdges,
|
97
|
+
ProjectArtifactCollectionProjectArtifactTypeArtifactCollectionTagsEdgesNode,
|
98
|
+
ProjectArtifactCollectionProjectArtifactTypeArtifactSequence,
|
99
|
+
)
|
100
|
+
from .project_artifact_collections import (
|
101
|
+
ProjectArtifactCollections,
|
102
|
+
ProjectArtifactCollectionsProject,
|
103
|
+
ProjectArtifactCollectionsProjectArtifactType,
|
104
|
+
)
|
105
|
+
from .project_artifact_type import ProjectArtifactType, ProjectArtifactTypeProject
|
106
|
+
from .project_artifact_types import ProjectArtifactTypes, ProjectArtifactTypesProject
|
107
|
+
from .project_artifacts import (
|
108
|
+
ProjectArtifacts,
|
109
|
+
ProjectArtifactsProject,
|
110
|
+
ProjectArtifactsProjectArtifactType,
|
111
|
+
ProjectArtifactsProjectArtifactTypeArtifactCollection,
|
112
|
+
)
|
113
|
+
from .run_input_artifacts import (
|
114
|
+
RunInputArtifacts,
|
115
|
+
RunInputArtifactsProject,
|
116
|
+
RunInputArtifactsProjectRun,
|
117
|
+
RunInputArtifactsProjectRunInputArtifacts,
|
118
|
+
RunInputArtifactsProjectRunInputArtifactsEdges,
|
119
|
+
RunInputArtifactsProjectRunInputArtifactsPageInfo,
|
120
|
+
)
|
121
|
+
from .run_output_artifacts import (
|
122
|
+
RunOutputArtifacts,
|
123
|
+
RunOutputArtifactsProject,
|
124
|
+
RunOutputArtifactsProjectRun,
|
125
|
+
RunOutputArtifactsProjectRunOutputArtifacts,
|
126
|
+
RunOutputArtifactsProjectRunOutputArtifactsEdges,
|
127
|
+
RunOutputArtifactsProjectRunOutputArtifactsPageInfo,
|
128
|
+
)
|
129
|
+
from .update_artifact_portfolio import (
|
130
|
+
UpdateArtifactPortfolio,
|
131
|
+
UpdateArtifactPortfolioUpdateArtifactPortfolio,
|
132
|
+
UpdateArtifactPortfolioUpdateArtifactPortfolioArtifactCollection,
|
133
|
+
)
|
134
|
+
from .update_artifact_sequence import (
|
135
|
+
UpdateArtifactSequence,
|
136
|
+
UpdateArtifactSequenceUpdateArtifactSequence,
|
137
|
+
UpdateArtifactSequenceUpdateArtifactSequenceArtifactCollection,
|
138
|
+
)
|
139
|
+
|
140
|
+
__all__ = [
|
141
|
+
"ARTIFACT_COLLECTION_MEMBERSHIP_FILES_GQL",
|
142
|
+
"ARTIFACT_VERSION_FILES_GQL",
|
143
|
+
"CREATE_ARTIFACT_COLLECTION_TAG_ASSIGNMENTS_GQL",
|
144
|
+
"DELETE_ARTIFACT_COLLECTION_TAG_ASSIGNMENTS_GQL",
|
145
|
+
"DELETE_ARTIFACT_PORTFOLIO_GQL",
|
146
|
+
"DELETE_ARTIFACT_SEQUENCE_GQL",
|
147
|
+
"MOVE_ARTIFACT_COLLECTION_GQL",
|
148
|
+
"PROJECT_ARTIFACTS_GQL",
|
149
|
+
"PROJECT_ARTIFACT_COLLECTIONS_GQL",
|
150
|
+
"PROJECT_ARTIFACT_COLLECTION_GQL",
|
151
|
+
"PROJECT_ARTIFACT_TYPES_GQL",
|
152
|
+
"PROJECT_ARTIFACT_TYPE_GQL",
|
153
|
+
"RUN_INPUT_ARTIFACTS_GQL",
|
154
|
+
"RUN_OUTPUT_ARTIFACTS_GQL",
|
155
|
+
"UPDATE_ARTIFACT_PORTFOLIO_GQL",
|
156
|
+
"UPDATE_ARTIFACT_SEQUENCE_GQL",
|
157
|
+
"DeleteArtifactSequence",
|
158
|
+
"DeleteArtifactSequenceDeleteArtifactSequence",
|
159
|
+
"DeleteArtifactSequenceDeleteArtifactSequenceArtifactCollection",
|
160
|
+
"DeleteArtifactPortfolio",
|
161
|
+
"DeleteArtifactPortfolioDeleteArtifactPortfolio",
|
162
|
+
"DeleteArtifactPortfolioDeleteArtifactPortfolioArtifactCollection",
|
163
|
+
"UpdateArtifactSequence",
|
164
|
+
"UpdateArtifactSequenceUpdateArtifactSequence",
|
165
|
+
"UpdateArtifactSequenceUpdateArtifactSequenceArtifactCollection",
|
166
|
+
"UpdateArtifactPortfolio",
|
167
|
+
"UpdateArtifactPortfolioUpdateArtifactPortfolio",
|
168
|
+
"UpdateArtifactPortfolioUpdateArtifactPortfolioArtifactCollection",
|
169
|
+
"MoveArtifactCollection",
|
170
|
+
"MoveArtifactCollectionMoveArtifactSequence",
|
171
|
+
"MoveArtifactCollectionMoveArtifactSequenceArtifactCollection",
|
172
|
+
"CreateArtifactCollectionTagAssignments",
|
173
|
+
"CreateArtifactCollectionTagAssignmentsCreateArtifactCollectionTagAssignments",
|
174
|
+
"CreateArtifactCollectionTagAssignmentsCreateArtifactCollectionTagAssignmentsTags",
|
175
|
+
"DeleteArtifactCollectionTagAssignments",
|
176
|
+
"DeleteArtifactCollectionTagAssignmentsDeleteArtifactCollectionTagAssignments",
|
177
|
+
"ProjectArtifactCollections",
|
178
|
+
"ProjectArtifactCollectionsProject",
|
179
|
+
"ProjectArtifactCollectionsProjectArtifactType",
|
180
|
+
"ProjectArtifactCollection",
|
181
|
+
"ProjectArtifactCollectionProject",
|
182
|
+
"ProjectArtifactCollectionProjectArtifactType",
|
183
|
+
"ProjectArtifactCollectionProjectArtifactTypeArtifactCollection",
|
184
|
+
"ProjectArtifactCollectionProjectArtifactTypeArtifactCollectionAliases",
|
185
|
+
"ProjectArtifactCollectionProjectArtifactTypeArtifactCollectionAliasesEdges",
|
186
|
+
"ProjectArtifactCollectionProjectArtifactTypeArtifactCollectionAliasesEdgesNode",
|
187
|
+
"ProjectArtifactCollectionProjectArtifactTypeArtifactCollectionAliasesPageInfo",
|
188
|
+
"ProjectArtifactCollectionProjectArtifactTypeArtifactCollectionTags",
|
189
|
+
"ProjectArtifactCollectionProjectArtifactTypeArtifactCollectionTagsEdges",
|
190
|
+
"ProjectArtifactCollectionProjectArtifactTypeArtifactCollectionTagsEdgesNode",
|
191
|
+
"ProjectArtifactCollectionProjectArtifactTypeArtifactSequence",
|
192
|
+
"ArtifactVersionFiles",
|
193
|
+
"ArtifactVersionFilesProject",
|
194
|
+
"ArtifactVersionFilesProjectArtifactType",
|
195
|
+
"ArtifactVersionFilesProjectArtifactTypeArtifact",
|
196
|
+
"ArtifactCollectionMembershipFiles",
|
197
|
+
"ArtifactCollectionMembershipFilesProject",
|
198
|
+
"ArtifactCollectionMembershipFilesProjectArtifactCollection",
|
199
|
+
"ArtifactCollectionMembershipFilesProjectArtifactCollectionArtifactMembership",
|
200
|
+
"ProjectArtifactTypes",
|
201
|
+
"ProjectArtifactTypesProject",
|
202
|
+
"ProjectArtifactType",
|
203
|
+
"ProjectArtifactTypeProject",
|
204
|
+
"ProjectArtifacts",
|
205
|
+
"ProjectArtifactsProject",
|
206
|
+
"ProjectArtifactsProjectArtifactType",
|
207
|
+
"ProjectArtifactsProjectArtifactTypeArtifactCollection",
|
208
|
+
"RunOutputArtifacts",
|
209
|
+
"RunOutputArtifactsProject",
|
210
|
+
"RunOutputArtifactsProjectRun",
|
211
|
+
"RunOutputArtifactsProjectRunOutputArtifacts",
|
212
|
+
"RunOutputArtifactsProjectRunOutputArtifactsEdges",
|
213
|
+
"RunOutputArtifactsProjectRunOutputArtifactsPageInfo",
|
214
|
+
"RunInputArtifacts",
|
215
|
+
"RunInputArtifactsProject",
|
216
|
+
"RunInputArtifactsProjectRun",
|
217
|
+
"RunInputArtifactsProjectRunInputArtifacts",
|
218
|
+
"RunInputArtifactsProjectRunInputArtifactsEdges",
|
219
|
+
"RunInputArtifactsProjectRunInputArtifactsPageInfo",
|
220
|
+
"TagInput",
|
221
|
+
"ArtifactCollectionsFragment",
|
222
|
+
"ArtifactCollectionsFragmentEdges",
|
223
|
+
"ArtifactCollectionsFragmentEdgesNode",
|
224
|
+
"ArtifactCollectionsFragmentPageInfo",
|
225
|
+
"ArtifactFragment",
|
226
|
+
"ArtifactFragmentAliases",
|
227
|
+
"ArtifactFragmentAliasesArtifactCollection",
|
228
|
+
"ArtifactFragmentAliasesArtifactCollectionProject",
|
229
|
+
"ArtifactFragmentArtifactSequence",
|
230
|
+
"ArtifactFragmentArtifactSequenceProject",
|
231
|
+
"ArtifactFragmentArtifactType",
|
232
|
+
"ArtifactFragmentCurrentManifest",
|
233
|
+
"ArtifactFragmentCurrentManifestFile",
|
234
|
+
"ArtifactFragmentTags",
|
235
|
+
"ArtifactTypeFragment",
|
236
|
+
"ArtifactTypesFragment",
|
237
|
+
"ArtifactTypesFragmentEdges",
|
238
|
+
"ArtifactTypesFragmentPageInfo",
|
239
|
+
"ArtifactsFragment",
|
240
|
+
"ArtifactsFragmentEdges",
|
241
|
+
"ArtifactsFragmentPageInfo",
|
242
|
+
"FilesFragment",
|
243
|
+
"FilesFragmentEdges",
|
244
|
+
"FilesFragmentEdgesNode",
|
245
|
+
"FilesFragmentPageInfo",
|
246
|
+
"ArtifactCollectionState",
|
247
|
+
"ArtifactState",
|
248
|
+
]
|
@@ -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()
|
@@ -0,0 +1,25 @@
|
|
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 DeleteArtifactCollectionTagAssignments(GQLBase):
|
14
|
+
delete_artifact_collection_tag_assignments: Optional[
|
15
|
+
DeleteArtifactCollectionTagAssignmentsDeleteArtifactCollectionTagAssignments
|
16
|
+
] = Field(alias="deleteArtifactCollectionTagAssignments")
|
17
|
+
|
18
|
+
|
19
|
+
class DeleteArtifactCollectionTagAssignmentsDeleteArtifactCollectionTagAssignments(
|
20
|
+
GQLBase
|
21
|
+
):
|
22
|
+
success: bool
|
23
|
+
|
24
|
+
|
25
|
+
DeleteArtifactCollectionTagAssignments.model_rebuild()
|
@@ -0,0 +1,35 @@
|
|
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 .enums import ArtifactCollectionState
|
13
|
+
|
14
|
+
|
15
|
+
class DeleteArtifactPortfolio(GQLBase):
|
16
|
+
delete_artifact_portfolio: Optional[
|
17
|
+
DeleteArtifactPortfolioDeleteArtifactPortfolio
|
18
|
+
] = Field(alias="deleteArtifactPortfolio")
|
19
|
+
|
20
|
+
|
21
|
+
class DeleteArtifactPortfolioDeleteArtifactPortfolio(GQLBase):
|
22
|
+
artifact_collection: DeleteArtifactPortfolioDeleteArtifactPortfolioArtifactCollection = Field(
|
23
|
+
alias="artifactCollection"
|
24
|
+
)
|
25
|
+
|
26
|
+
|
27
|
+
class DeleteArtifactPortfolioDeleteArtifactPortfolioArtifactCollection(GQLBase):
|
28
|
+
typename__: Typename[
|
29
|
+
Literal["ArtifactCollection", "ArtifactPortfolio", "ArtifactSequence"]
|
30
|
+
]
|
31
|
+
state: ArtifactCollectionState
|
32
|
+
|
33
|
+
|
34
|
+
DeleteArtifactPortfolio.model_rebuild()
|
35
|
+
DeleteArtifactPortfolioDeleteArtifactPortfolio.model_rebuild()
|