wandb 0.22.2__py3-none-win32.whl → 0.22.3__py3-none-win32.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 +2 -2
 - wandb/_pydantic/__init__.py +8 -1
 - wandb/_pydantic/base.py +54 -18
 - wandb/_pydantic/field_types.py +8 -3
 - wandb/_pydantic/pagination.py +46 -0
 - wandb/_pydantic/utils.py +2 -2
 - wandb/apis/public/api.py +24 -19
 - wandb/apis/public/artifacts.py +259 -270
 - wandb/apis/public/registries/_utils.py +40 -54
 - wandb/apis/public/registries/registries_search.py +70 -85
 - wandb/apis/public/registries/registry.py +173 -156
 - wandb/apis/public/runs.py +27 -6
 - wandb/apis/public/utils.py +43 -20
 - wandb/automations/_generated/create_automation.py +2 -2
 - wandb/automations/_generated/create_generic_webhook_integration.py +4 -4
 - wandb/automations/_generated/delete_automation.py +2 -2
 - wandb/automations/_generated/fragments.py +31 -52
 - wandb/automations/_generated/generic_webhook_integrations_by_entity.py +3 -3
 - wandb/automations/_generated/get_automations.py +3 -3
 - wandb/automations/_generated/get_automations_by_entity.py +3 -3
 - wandb/automations/_generated/input_types.py +9 -9
 - wandb/automations/_generated/integrations_by_entity.py +3 -3
 - wandb/automations/_generated/operations.py +6 -6
 - wandb/automations/_generated/slack_integrations_by_entity.py +3 -3
 - wandb/automations/_generated/update_automation.py +2 -2
 - wandb/automations/_utils.py +3 -3
 - wandb/automations/actions.py +3 -3
 - wandb/automations/automations.py +6 -5
 - wandb/bin/gpu_stats.exe +0 -0
 - wandb/bin/wandb-core +0 -0
 - wandb/cli/beta.py +8 -2
 - wandb/cli/beta_leet.py +2 -1
 - wandb/cli/beta_sync.py +1 -1
 - wandb/errors/term.py +8 -8
 - wandb/jupyter.py +0 -51
 - wandb/old/settings.py +6 -6
 - wandb/proto/v3/wandb_internal_pb2.py +351 -352
 - wandb/proto/v3/wandb_server_pb2.py +38 -37
 - wandb/proto/v3/wandb_settings_pb2.py +2 -2
 - wandb/proto/v3/wandb_sync_pb2.py +19 -6
 - wandb/proto/v4/wandb_internal_pb2.py +351 -352
 - wandb/proto/v4/wandb_server_pb2.py +38 -37
 - wandb/proto/v4/wandb_settings_pb2.py +2 -2
 - wandb/proto/v4/wandb_sync_pb2.py +10 -6
 - wandb/proto/v5/wandb_internal_pb2.py +351 -352
 - wandb/proto/v5/wandb_server_pb2.py +38 -37
 - wandb/proto/v5/wandb_settings_pb2.py +2 -2
 - wandb/proto/v5/wandb_sync_pb2.py +10 -6
 - wandb/proto/v6/wandb_internal_pb2.py +351 -352
 - wandb/proto/v6/wandb_server_pb2.py +38 -37
 - wandb/proto/v6/wandb_settings_pb2.py +2 -2
 - wandb/proto/v6/wandb_sync_pb2.py +10 -6
 - wandb/sdk/artifacts/_generated/__init__.py +96 -40
 - wandb/sdk/artifacts/_generated/add_aliases.py +3 -3
 - wandb/sdk/artifacts/_generated/add_artifact_collection_tags.py +26 -0
 - wandb/sdk/artifacts/_generated/artifact_by_id.py +2 -2
 - wandb/sdk/artifacts/_generated/artifact_by_name.py +3 -3
 - wandb/sdk/artifacts/_generated/artifact_collection_membership_file_urls.py +27 -8
 - wandb/sdk/artifacts/_generated/artifact_collection_membership_files.py +27 -8
 - wandb/sdk/artifacts/_generated/artifact_created_by.py +7 -20
 - wandb/sdk/artifacts/_generated/artifact_file_urls.py +19 -6
 - wandb/sdk/artifacts/_generated/artifact_membership_by_name.py +26 -0
 - wandb/sdk/artifacts/_generated/artifact_type.py +5 -5
 - wandb/sdk/artifacts/_generated/artifact_used_by.py +8 -17
 - wandb/sdk/artifacts/_generated/artifact_version_files.py +19 -8
 - wandb/sdk/artifacts/_generated/delete_aliases.py +3 -3
 - wandb/sdk/artifacts/_generated/delete_artifact.py +4 -4
 - wandb/sdk/artifacts/_generated/delete_artifact_collection_tags.py +23 -0
 - wandb/sdk/artifacts/_generated/delete_artifact_portfolio.py +4 -4
 - wandb/sdk/artifacts/_generated/delete_artifact_sequence.py +4 -4
 - wandb/sdk/artifacts/_generated/delete_registry.py +21 -0
 - wandb/sdk/artifacts/_generated/fetch_artifact_manifest.py +8 -20
 - wandb/sdk/artifacts/_generated/fetch_linked_artifacts.py +13 -35
 - wandb/sdk/artifacts/_generated/fetch_org_info_from_entity.py +28 -0
 - wandb/sdk/artifacts/_generated/fetch_registries.py +18 -8
 - wandb/sdk/{projects → artifacts}/_generated/fetch_registry.py +4 -4
 - wandb/sdk/artifacts/_generated/fragments.py +183 -333
 - wandb/sdk/artifacts/_generated/input_types.py +133 -7
 - wandb/sdk/artifacts/_generated/link_artifact.py +5 -5
 - wandb/sdk/artifacts/_generated/operations.py +1053 -548
 - wandb/sdk/artifacts/_generated/project_artifact_collection.py +9 -77
 - wandb/sdk/artifacts/_generated/project_artifact_collections.py +21 -9
 - wandb/sdk/artifacts/_generated/project_artifact_type.py +3 -3
 - wandb/sdk/artifacts/_generated/project_artifact_types.py +19 -6
 - wandb/sdk/artifacts/_generated/project_artifacts.py +7 -8
 - wandb/sdk/artifacts/_generated/registry_collections.py +21 -9
 - wandb/sdk/artifacts/_generated/registry_versions.py +20 -9
 - wandb/sdk/artifacts/_generated/rename_registry.py +25 -0
 - wandb/sdk/artifacts/_generated/run_input_artifacts.py +5 -9
 - wandb/sdk/artifacts/_generated/run_output_artifacts.py +5 -9
 - wandb/sdk/artifacts/_generated/type_info.py +2 -2
 - wandb/sdk/artifacts/_generated/unlink_artifact.py +3 -5
 - wandb/sdk/artifacts/_generated/update_artifact.py +3 -3
 - wandb/sdk/artifacts/_generated/update_artifact_collection_type.py +28 -0
 - wandb/sdk/artifacts/_generated/update_artifact_portfolio.py +7 -16
 - wandb/sdk/artifacts/_generated/update_artifact_sequence.py +7 -16
 - wandb/sdk/artifacts/_generated/upsert_registry.py +25 -0
 - wandb/sdk/artifacts/_gqlutils.py +170 -6
 - wandb/sdk/artifacts/_models/__init__.py +9 -0
 - wandb/sdk/artifacts/_models/artifact_collection.py +109 -0
 - wandb/sdk/artifacts/_models/manifest.py +26 -0
 - wandb/sdk/artifacts/_models/pagination.py +26 -0
 - wandb/sdk/artifacts/_models/registry.py +100 -0
 - wandb/sdk/artifacts/_validators.py +45 -27
 - wandb/sdk/artifacts/artifact.py +220 -215
 - wandb/sdk/artifacts/artifact_file_cache.py +1 -1
 - wandb/sdk/artifacts/artifact_manifest.py +37 -32
 - wandb/sdk/artifacts/artifact_manifest_entry.py +80 -125
 - wandb/sdk/artifacts/artifact_manifests/artifact_manifest_v1.py +43 -61
 - wandb/sdk/artifacts/storage_handlers/gcs_handler.py +8 -6
 - wandb/sdk/data_types/image.py +2 -2
 - wandb/sdk/interface/interface.py +72 -64
 - wandb/sdk/interface/interface_queue.py +27 -18
 - wandb/sdk/interface/interface_shared.py +61 -23
 - wandb/sdk/interface/interface_sock.py +9 -5
 - wandb/sdk/internal/_generated/server_features_query.py +4 -4
 - wandb/sdk/launch/inputs/schema.py +13 -10
 - wandb/sdk/lib/apikey.py +8 -12
 - wandb/sdk/lib/asyncio_compat.py +1 -1
 - wandb/sdk/lib/asyncio_manager.py +5 -5
 - wandb/sdk/lib/console_capture.py +38 -30
 - wandb/sdk/lib/progress.py +159 -64
 - wandb/sdk/lib/retry.py +3 -2
 - wandb/sdk/lib/service/service_connection.py +2 -2
 - wandb/sdk/lib/wb_logging.py +2 -1
 - wandb/sdk/mailbox/mailbox.py +1 -1
 - wandb/sdk/wandb_init.py +10 -13
 - wandb/sdk/wandb_run.py +9 -46
 - wandb/sdk/wandb_settings.py +102 -19
 - {wandb-0.22.2.dist-info → wandb-0.22.3.dist-info}/METADATA +2 -1
 - {wandb-0.22.2.dist-info → wandb-0.22.3.dist-info}/RECORD +135 -134
 - wandb/sdk/artifacts/_generated/artifact_via_membership_by_name.py +0 -26
 - wandb/sdk/artifacts/_generated/create_artifact_collection_tag_assignments.py +0 -36
 - wandb/sdk/artifacts/_generated/delete_artifact_collection_tag_assignments.py +0 -25
 - wandb/sdk/artifacts/_generated/move_artifact_collection.py +0 -35
 - wandb/sdk/projects/_generated/__init__.py +0 -26
 - wandb/sdk/projects/_generated/delete_project.py +0 -22
 - wandb/sdk/projects/_generated/enums.py +0 -4
 - wandb/sdk/projects/_generated/fragments.py +0 -41
 - wandb/sdk/projects/_generated/input_types.py +0 -13
 - wandb/sdk/projects/_generated/operations.py +0 -88
 - wandb/sdk/projects/_generated/rename_project.py +0 -27
 - wandb/sdk/projects/_generated/upsert_registry_project.py +0 -27
 - {wandb-0.22.2.dist-info → wandb-0.22.3.dist-info}/WHEEL +0 -0
 - {wandb-0.22.2.dist-info → wandb-0.22.3.dist-info}/entry_points.txt +0 -0
 - {wandb-0.22.2.dist-info → wandb-0.22.3.dist-info}/licenses/LICENSE +0 -0
 
| 
         @@ -26,9 +26,10 @@ from wandb.proto import wandb_base_pb2 as wandb_dot_proto_dot_wandb__base__pb2 
     | 
|
| 
       26 
26 
     | 
    
         
             
            from wandb.proto import wandb_internal_pb2 as wandb_dot_proto_dot_wandb__internal__pb2
         
     | 
| 
       27 
27 
     | 
    
         
             
            from wandb.proto import wandb_settings_pb2 as wandb_dot_proto_dot_wandb__settings__pb2
         
     | 
| 
       28 
28 
     | 
    
         
             
            from wandb.proto import wandb_sync_pb2 as wandb_dot_proto_dot_wandb__sync__pb2
         
     | 
| 
      
 29 
     | 
    
         
            +
            from wandb.proto import wandb_api_pb2 as wandb_dot_proto_dot_wandb__api__pb2
         
     | 
| 
       29 
30 
     | 
    
         | 
| 
       30 
31 
     | 
    
         | 
| 
       31 
     | 
    
         
            -
            DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1ewandb/proto/wandb_server.proto\x12\x0ewandb_internal\x1a\x1cwandb/proto/wandb_base.proto\x1a wandb/proto/wandb_internal.proto\x1a wandb/proto/wandb_settings.proto\x1a\x1cwandb/proto/wandb_sync.proto\"k\n\x19ServerAuthenticateRequest\x12\x0f\n\x07\x61pi_key\x18\x01 \x01(\t\x12\x10\n\x08\x62\x61se_url\x18\x02 \x01(\t\x12+\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1b.wandb_internal._RecordInfo\"w\n\x1aServerAuthenticateResponse\x12\x16\n\x0e\x64\x65\x66\x61ult_entity\x18\x01 \x01(\t\x12\x14\n\x0c\x65rror_status\x18\x02 \x01(\t\x12+\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1b.wandb_internal._RecordInfo\"D\n\x15ServerShutdownRequest\x12+\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1b.wandb_internal._RecordInfo\"\x18\n\x16ServerShutdownResponse\"B\n\x13ServerStatusRequest\x12+\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1b.wandb_internal._RecordInfo\"\x16\n\x14ServerStatusResponse\"r\n\x17ServerInformInitRequest\x12*\n\x08settings\x18\x01 \x01(\x0b\x32\x18.wandb_internal.Settings\x12+\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1b.wandb_internal._RecordInfo\"\x1a\n\x18ServerInformInitResponse\"H\n\x19ServerInformFinishRequest\x12+\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1b.wandb_internal._RecordInfo\"\x1c\n\x1aServerInformFinishResponse\"H\n\x19ServerInformAttachRequest\x12+\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1b.wandb_internal._RecordInfo\"u\n\x1aServerInformAttachResponse\x12*\n\x08settings\x18\x01 \x01(\x0b\x32\x18.wandb_internal.Settings\x12+\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1b.wandb_internal._RecordInfo\"H\n\x19ServerInformDetachRequest\x12+\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1b.wandb_internal._RecordInfo\"\x1c\n\x1aServerInformDetachResponse\"]\n\x1bServerInformTeardownRequest\x12\x11\n\texit_code\x18\x01 \x01(\x05\x12+\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1b.wandb_internal._RecordInfo\"\x1e\n\x1cServerInformTeardownResponse\"\ 
     | 
| 
      
 32 
     | 
    
         
            +
            DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1ewandb/proto/wandb_server.proto\x12\x0ewandb_internal\x1a\x1cwandb/proto/wandb_base.proto\x1a wandb/proto/wandb_internal.proto\x1a wandb/proto/wandb_settings.proto\x1a\x1cwandb/proto/wandb_sync.proto\x1a\x1bwandb/proto/wandb_api.proto\"k\n\x19ServerAuthenticateRequest\x12\x0f\n\x07\x61pi_key\x18\x01 \x01(\t\x12\x10\n\x08\x62\x61se_url\x18\x02 \x01(\t\x12+\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1b.wandb_internal._RecordInfo\"w\n\x1aServerAuthenticateResponse\x12\x16\n\x0e\x64\x65\x66\x61ult_entity\x18\x01 \x01(\t\x12\x14\n\x0c\x65rror_status\x18\x02 \x01(\t\x12+\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1b.wandb_internal._RecordInfo\"D\n\x15ServerShutdownRequest\x12+\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1b.wandb_internal._RecordInfo\"\x18\n\x16ServerShutdownResponse\"B\n\x13ServerStatusRequest\x12+\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1b.wandb_internal._RecordInfo\"\x16\n\x14ServerStatusResponse\"r\n\x17ServerInformInitRequest\x12*\n\x08settings\x18\x01 \x01(\x0b\x32\x18.wandb_internal.Settings\x12+\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1b.wandb_internal._RecordInfo\"\x1a\n\x18ServerInformInitResponse\"H\n\x19ServerInformFinishRequest\x12+\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1b.wandb_internal._RecordInfo\"\x1c\n\x1aServerInformFinishResponse\"H\n\x19ServerInformAttachRequest\x12+\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1b.wandb_internal._RecordInfo\"u\n\x1aServerInformAttachResponse\x12*\n\x08settings\x18\x01 \x01(\x0b\x32\x18.wandb_internal.Settings\x12+\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1b.wandb_internal._RecordInfo\"H\n\x19ServerInformDetachRequest\x12+\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1b.wandb_internal._RecordInfo\"\x1c\n\x1aServerInformDetachResponse\"]\n\x1bServerInformTeardownRequest\x12\x11\n\texit_code\x18\x01 \x01(\x05\x12+\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1b.wandb_internal._RecordInfo\"\x1e\n\x1cServerInformTeardownResponse\"\xa1\x06\n\rServerRequest\x12\x12\n\nrequest_id\x18\n \x01(\t\x12\x30\n\x0erecord_publish\x18\x01 \x01(\x0b\x32\x16.wandb_internal.RecordH\x00\x12\x34\n\x12record_communicate\x18\x02 \x01(\x0b\x32\x16.wandb_internal.RecordH\x00\x12>\n\x0binform_init\x18\x03 \x01(\x0b\x32\'.wandb_internal.ServerInformInitRequestH\x00\x12\x42\n\rinform_finish\x18\x04 \x01(\x0b\x32).wandb_internal.ServerInformFinishRequestH\x00\x12\x42\n\rinform_attach\x18\x05 \x01(\x0b\x32).wandb_internal.ServerInformAttachRequestH\x00\x12\x42\n\rinform_detach\x18\x06 \x01(\x0b\x32).wandb_internal.ServerInformDetachRequestH\x00\x12\x46\n\x0finform_teardown\x18\x07 \x01(\x0b\x32+.wandb_internal.ServerInformTeardownRequestH\x00\x12\x41\n\x0c\x61uthenticate\x18\t \x01(\x0b\x32).wandb_internal.ServerAuthenticateRequestH\x00\x12:\n\tinit_sync\x18\x0b \x01(\x0b\x32%.wandb_internal.ServerInitSyncRequestH\x00\x12\x31\n\x04sync\x18\x0c \x01(\x0b\x32!.wandb_internal.ServerSyncRequestH\x00\x12>\n\x0bsync_status\x18\r \x01(\x0b\x32\'.wandb_internal.ServerSyncStatusRequestH\x00\x12\x31\n\x0b\x61pi_request\x18\x0e \x01(\x0b\x32\x1a.wandb_internal.ApiRequestH\x00\x42\x15\n\x13server_request_typeJ\x04\x08\x08\x10\t\"\xcd\x06\n\x0eServerResponse\x12\x12\n\nrequest_id\x18\n \x01(\t\x12\x34\n\x12result_communicate\x18\x02 \x01(\x0b\x32\x16.wandb_internal.ResultH\x00\x12H\n\x14inform_init_response\x18\x03 \x01(\x0b\x32(.wandb_internal.ServerInformInitResponseH\x00\x12L\n\x16inform_finish_response\x18\x04 \x01(\x0b\x32*.wandb_internal.ServerInformFinishResponseH\x00\x12L\n\x16inform_attach_response\x18\x05 \x01(\x0b\x32*.wandb_internal.ServerInformAttachResponseH\x00\x12L\n\x16inform_detach_response\x18\x06 \x01(\x0b\x32*.wandb_internal.ServerInformDetachResponseH\x00\x12P\n\x18inform_teardown_response\x18\x07 \x01(\x0b\x32,.wandb_internal.ServerInformTeardownResponseH\x00\x12K\n\x15\x61uthenticate_response\x18\t \x01(\x0b\x32*.wandb_internal.ServerAuthenticateResponseH\x00\x12\x44\n\x12init_sync_response\x18\x0b \x01(\x0b\x32&.wandb_internal.ServerInitSyncResponseH\x00\x12;\n\rsync_response\x18\x0c \x01(\x0b\x32\".wandb_internal.ServerSyncResponseH\x00\x12H\n\x14sync_status_response\x18\r \x01(\x0b\x32(.wandb_internal.ServerSyncStatusResponseH\x00\x12\x33\n\x0c\x61pi_response\x18\x0e \x01(\x0b\x32\x1b.wandb_internal.ApiResponseH\x00\x42\x16\n\x14server_response_typeJ\x04\x08\x08\x10\tB\x1bZ\x19\x63ore/pkg/service_go_protob\x06proto3')
         
     | 
| 
       32 
33 
     | 
    
         | 
| 
       33 
34 
     | 
    
         
             
            _globals = globals()
         
     | 
| 
       34 
35 
     | 
    
         
             
            _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
         
     | 
| 
         @@ -36,40 +37,40 @@ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'wandb.proto.wandb_server_pb 
     | 
|
| 
       36 
37 
     | 
    
         
             
            if not _descriptor._USE_C_DESCRIPTORS:
         
     | 
| 
       37 
38 
     | 
    
         
             
              _globals['DESCRIPTOR']._loaded_options = None
         
     | 
| 
       38 
39 
     | 
    
         
             
              _globals['DESCRIPTOR']._serialized_options = b'Z\031core/pkg/service_go_proto'
         
     | 
| 
       39 
     | 
    
         
            -
              _globals['_SERVERAUTHENTICATEREQUEST']._serialized_start= 
     | 
| 
       40 
     | 
    
         
            -
              _globals['_SERVERAUTHENTICATEREQUEST']._serialized_end= 
     | 
| 
       41 
     | 
    
         
            -
              _globals['_SERVERAUTHENTICATERESPONSE']._serialized_start= 
     | 
| 
       42 
     | 
    
         
            -
              _globals['_SERVERAUTHENTICATERESPONSE']._serialized_end= 
     | 
| 
       43 
     | 
    
         
            -
              _globals['_SERVERSHUTDOWNREQUEST']._serialized_start= 
     | 
| 
       44 
     | 
    
         
            -
              _globals['_SERVERSHUTDOWNREQUEST']._serialized_end= 
     | 
| 
       45 
     | 
    
         
            -
              _globals['_SERVERSHUTDOWNRESPONSE']._serialized_start= 
     | 
| 
       46 
     | 
    
         
            -
              _globals['_SERVERSHUTDOWNRESPONSE']._serialized_end= 
     | 
| 
       47 
     | 
    
         
            -
              _globals['_SERVERSTATUSREQUEST']._serialized_start= 
     | 
| 
       48 
     | 
    
         
            -
              _globals['_SERVERSTATUSREQUEST']._serialized_end= 
     | 
| 
       49 
     | 
    
         
            -
              _globals['_SERVERSTATUSRESPONSE']._serialized_start= 
     | 
| 
       50 
     | 
    
         
            -
              _globals['_SERVERSTATUSRESPONSE']._serialized_end= 
     | 
| 
       51 
     | 
    
         
            -
              _globals['_SERVERINFORMINITREQUEST']._serialized_start= 
     | 
| 
       52 
     | 
    
         
            -
              _globals['_SERVERINFORMINITREQUEST']._serialized_end= 
     | 
| 
       53 
     | 
    
         
            -
              _globals['_SERVERINFORMINITRESPONSE']._serialized_start= 
     | 
| 
       54 
     | 
    
         
            -
              _globals['_SERVERINFORMINITRESPONSE']._serialized_end= 
     | 
| 
       55 
     | 
    
         
            -
              _globals['_SERVERINFORMFINISHREQUEST']._serialized_start= 
     | 
| 
       56 
     | 
    
         
            -
              _globals['_SERVERINFORMFINISHREQUEST']._serialized_end= 
     | 
| 
       57 
     | 
    
         
            -
              _globals['_SERVERINFORMFINISHRESPONSE']._serialized_start= 
     | 
| 
       58 
     | 
    
         
            -
              _globals['_SERVERINFORMFINISHRESPONSE']._serialized_end= 
     | 
| 
       59 
     | 
    
         
            -
              _globals['_SERVERINFORMATTACHREQUEST']._serialized_start= 
     | 
| 
       60 
     | 
    
         
            -
              _globals['_SERVERINFORMATTACHREQUEST']._serialized_end= 
     | 
| 
       61 
     | 
    
         
            -
              _globals['_SERVERINFORMATTACHRESPONSE']._serialized_start= 
     | 
| 
       62 
     | 
    
         
            -
              _globals['_SERVERINFORMATTACHRESPONSE']._serialized_end= 
     | 
| 
       63 
     | 
    
         
            -
              _globals['_SERVERINFORMDETACHREQUEST']._serialized_start= 
     | 
| 
       64 
     | 
    
         
            -
              _globals['_SERVERINFORMDETACHREQUEST']._serialized_end= 
     | 
| 
       65 
     | 
    
         
            -
              _globals['_SERVERINFORMDETACHRESPONSE']._serialized_start= 
     | 
| 
       66 
     | 
    
         
            -
              _globals['_SERVERINFORMDETACHRESPONSE']._serialized_end= 
     | 
| 
       67 
     | 
    
         
            -
              _globals['_SERVERINFORMTEARDOWNREQUEST']._serialized_start= 
     | 
| 
       68 
     | 
    
         
            -
              _globals['_SERVERINFORMTEARDOWNREQUEST']._serialized_end= 
     | 
| 
       69 
     | 
    
         
            -
              _globals['_SERVERINFORMTEARDOWNRESPONSE']._serialized_start= 
     | 
| 
       70 
     | 
    
         
            -
              _globals['_SERVERINFORMTEARDOWNRESPONSE']._serialized_end= 
     | 
| 
       71 
     | 
    
         
            -
              _globals['_SERVERREQUEST']._serialized_start= 
     | 
| 
       72 
     | 
    
         
            -
              _globals['_SERVERREQUEST']._serialized_end= 
     | 
| 
       73 
     | 
    
         
            -
              _globals['_SERVERRESPONSE']._serialized_start= 
     | 
| 
       74 
     | 
    
         
            -
              _globals['_SERVERRESPONSE']._serialized_end= 
     | 
| 
      
 40 
     | 
    
         
            +
              _globals['_SERVERAUTHENTICATEREQUEST']._serialized_start=207
         
     | 
| 
      
 41 
     | 
    
         
            +
              _globals['_SERVERAUTHENTICATEREQUEST']._serialized_end=314
         
     | 
| 
      
 42 
     | 
    
         
            +
              _globals['_SERVERAUTHENTICATERESPONSE']._serialized_start=316
         
     | 
| 
      
 43 
     | 
    
         
            +
              _globals['_SERVERAUTHENTICATERESPONSE']._serialized_end=435
         
     | 
| 
      
 44 
     | 
    
         
            +
              _globals['_SERVERSHUTDOWNREQUEST']._serialized_start=437
         
     | 
| 
      
 45 
     | 
    
         
            +
              _globals['_SERVERSHUTDOWNREQUEST']._serialized_end=505
         
     | 
| 
      
 46 
     | 
    
         
            +
              _globals['_SERVERSHUTDOWNRESPONSE']._serialized_start=507
         
     | 
| 
      
 47 
     | 
    
         
            +
              _globals['_SERVERSHUTDOWNRESPONSE']._serialized_end=531
         
     | 
| 
      
 48 
     | 
    
         
            +
              _globals['_SERVERSTATUSREQUEST']._serialized_start=533
         
     | 
| 
      
 49 
     | 
    
         
            +
              _globals['_SERVERSTATUSREQUEST']._serialized_end=599
         
     | 
| 
      
 50 
     | 
    
         
            +
              _globals['_SERVERSTATUSRESPONSE']._serialized_start=601
         
     | 
| 
      
 51 
     | 
    
         
            +
              _globals['_SERVERSTATUSRESPONSE']._serialized_end=623
         
     | 
| 
      
 52 
     | 
    
         
            +
              _globals['_SERVERINFORMINITREQUEST']._serialized_start=625
         
     | 
| 
      
 53 
     | 
    
         
            +
              _globals['_SERVERINFORMINITREQUEST']._serialized_end=739
         
     | 
| 
      
 54 
     | 
    
         
            +
              _globals['_SERVERINFORMINITRESPONSE']._serialized_start=741
         
     | 
| 
      
 55 
     | 
    
         
            +
              _globals['_SERVERINFORMINITRESPONSE']._serialized_end=767
         
     | 
| 
      
 56 
     | 
    
         
            +
              _globals['_SERVERINFORMFINISHREQUEST']._serialized_start=769
         
     | 
| 
      
 57 
     | 
    
         
            +
              _globals['_SERVERINFORMFINISHREQUEST']._serialized_end=841
         
     | 
| 
      
 58 
     | 
    
         
            +
              _globals['_SERVERINFORMFINISHRESPONSE']._serialized_start=843
         
     | 
| 
      
 59 
     | 
    
         
            +
              _globals['_SERVERINFORMFINISHRESPONSE']._serialized_end=871
         
     | 
| 
      
 60 
     | 
    
         
            +
              _globals['_SERVERINFORMATTACHREQUEST']._serialized_start=873
         
     | 
| 
      
 61 
     | 
    
         
            +
              _globals['_SERVERINFORMATTACHREQUEST']._serialized_end=945
         
     | 
| 
      
 62 
     | 
    
         
            +
              _globals['_SERVERINFORMATTACHRESPONSE']._serialized_start=947
         
     | 
| 
      
 63 
     | 
    
         
            +
              _globals['_SERVERINFORMATTACHRESPONSE']._serialized_end=1064
         
     | 
| 
      
 64 
     | 
    
         
            +
              _globals['_SERVERINFORMDETACHREQUEST']._serialized_start=1066
         
     | 
| 
      
 65 
     | 
    
         
            +
              _globals['_SERVERINFORMDETACHREQUEST']._serialized_end=1138
         
     | 
| 
      
 66 
     | 
    
         
            +
              _globals['_SERVERINFORMDETACHRESPONSE']._serialized_start=1140
         
     | 
| 
      
 67 
     | 
    
         
            +
              _globals['_SERVERINFORMDETACHRESPONSE']._serialized_end=1168
         
     | 
| 
      
 68 
     | 
    
         
            +
              _globals['_SERVERINFORMTEARDOWNREQUEST']._serialized_start=1170
         
     | 
| 
      
 69 
     | 
    
         
            +
              _globals['_SERVERINFORMTEARDOWNREQUEST']._serialized_end=1263
         
     | 
| 
      
 70 
     | 
    
         
            +
              _globals['_SERVERINFORMTEARDOWNRESPONSE']._serialized_start=1265
         
     | 
| 
      
 71 
     | 
    
         
            +
              _globals['_SERVERINFORMTEARDOWNRESPONSE']._serialized_end=1295
         
     | 
| 
      
 72 
     | 
    
         
            +
              _globals['_SERVERREQUEST']._serialized_start=1298
         
     | 
| 
      
 73 
     | 
    
         
            +
              _globals['_SERVERREQUEST']._serialized_end=2099
         
     | 
| 
      
 74 
     | 
    
         
            +
              _globals['_SERVERRESPONSE']._serialized_start=2102
         
     | 
| 
      
 75 
     | 
    
         
            +
              _globals['_SERVERRESPONSE']._serialized_end=2947
         
     | 
| 
       75 
76 
     | 
    
         
             
            # @@protoc_insertion_point(module_scope)
         
     | 
| 
         @@ -25,7 +25,7 @@ _sym_db = _symbol_database.Default() 
     | 
|
| 
       25 
25 
     | 
    
         
             
            from google.protobuf import wrappers_pb2 as google_dot_protobuf_dot_wrappers__pb2
         
     | 
| 
       26 
26 
     | 
    
         | 
| 
       27 
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\"\xc2M\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\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\x37\n\x11x_stats_cpu_count\x18\xc2\x01 \x01(\x0b\x32\x1b.google.protobuf.Int32Value\x12?\n\x19x_stats_cpu_logical_count\x18\xc3\x01 \x01(\x0b\x32\x1b.google.protobuf.Int32Value\x12\x37\n\x11x_stats_gpu_count\x18\xc4\x01 \x01(\x0b\x32\x1b.google.protobuf.Int32Value\x12\x37\n\x10x_stats_gpu_type\x18\xc5\x01 \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12?\n\x1ax_stats_track_process_tree\x18\xc6\x01 \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12.\n\x07x_label\x18\xb5\x01 \x01(\x0b\x32\x1c.google.protobuf.StringValue\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\x16x_skip_transaction_log\x18\xbf\x01 \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12J\n#x_stats_coreweave_metadata_base_url\x18\xc0\x01 \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12J\n#x_stats_coreweave_metadata_endpoint\x18\xc1\x01 \x01(\x0b\x32\x1c.google.protobuf.StringValue\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\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\x08\x10\tJ\x04\x08\t\x10\nJ\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\x46\x10GJ\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\xad\x01\x10\xae\x01J\x06\x08\xb0\x01\x10\xb1\x01J\x06\x08\xb4\x01\x10\xb5\x01\x42\x1bZ\x19\x63ore/pkg/service_go_protob\x06proto3')
         
     | 
| 
      
 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\"\xc2N\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\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\x37\n\x11x_stats_cpu_count\x18\xc2\x01 \x01(\x0b\x32\x1b.google.protobuf.Int32Value\x12?\n\x19x_stats_cpu_logical_count\x18\xc3\x01 \x01(\x0b\x32\x1b.google.protobuf.Int32Value\x12\x37\n\x11x_stats_gpu_count\x18\xc4\x01 \x01(\x0b\x32\x1b.google.protobuf.Int32Value\x12\x37\n\x10x_stats_gpu_type\x18\xc5\x01 \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12?\n\x1ax_stats_track_process_tree\x18\xc6\x01 \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12.\n\x07x_label\x18\xb5\x01 \x01(\x0b\x32\x1c.google.protobuf.StringValue\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=\n\x17\x63onsole_chunk_max_bytes\x18\xc7\x01 \x01(\x0b\x32\x1b.google.protobuf.Int32Value\x12?\n\x19\x63onsole_chunk_max_seconds\x18\xc9\x01 \x01(\x0b\x32\x1b.google.protobuf.Int32Value\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\x16x_skip_transaction_log\x18\xbf\x01 \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12J\n#x_stats_coreweave_metadata_base_url\x18\xc0\x01 \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12J\n#x_stats_coreweave_metadata_endpoint\x18\xc1\x01 \x01(\x0b\x32\x1c.google.protobuf.StringValue\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\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\x08\x10\tJ\x04\x08\t\x10\nJ\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\x46\x10GJ\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\xad\x01\x10\xae\x01J\x06\x08\xb0\x01\x10\xb1\x01J\x06\x08\xb4\x01\x10\xb5\x01\x42\x1bZ\x19\x63ore/pkg/service_go_protob\x06proto3')
         
     | 
| 
       29 
29 
     | 
    
         | 
| 
       30 
30 
     | 
    
         
             
            _globals = globals()
         
     | 
| 
       31 
31 
     | 
    
         
             
            _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
         
     | 
| 
         @@ -54,5 +54,5 @@ if not _descriptor._USE_C_DESCRIPTORS: 
     | 
|
| 
       54 
54 
     | 
    
         
             
              _globals['_RUNMOMENT']._serialized_start=653
         
     | 
| 
       55 
55 
     | 
    
         
             
              _globals['_RUNMOMENT']._serialized_end=708
         
     | 
| 
       56 
56 
     | 
    
         
             
              _globals['_SETTINGS']._serialized_start=711
         
     | 
| 
       57 
     | 
    
         
            -
              _globals['_SETTINGS']._serialized_end= 
     | 
| 
      
 57 
     | 
    
         
            +
              _globals['_SETTINGS']._serialized_end=10761
         
     | 
| 
       58 
58 
     | 
    
         
             
            # @@protoc_insertion_point(module_scope)
         
     | 
    
        wandb/proto/v6/wandb_sync_pb2.py
    CHANGED
    
    | 
         @@ -26,7 +26,7 @@ from wandb.proto import wandb_internal_pb2 as wandb_dot_proto_dot_wandb__interna 
     | 
|
| 
       26 
26 
     | 
    
         
             
            from wandb.proto import wandb_settings_pb2 as wandb_dot_proto_dot_wandb__settings__pb2
         
     | 
| 
       27 
27 
     | 
    
         | 
| 
       28 
28 
     | 
    
         | 
| 
       29 
     | 
    
         
            -
            DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1cwandb/proto/wandb_sync.proto\x12\x0ewandb_internal\x1a wandb/proto/wandb_internal.proto\x1a wandb/proto/wandb_settings.proto\"Q\n\x15ServerInitSyncRequest\x12\x0c\n\x04path\x18\x01 \x03(\t\x12*\n\x08settings\x18\x02 \x01(\x0b\x32\x18.wandb_internal.Settings\"$\n\x16ServerInitSyncResponse\x12\n\n\x02id\x18\x01 \x01(\t\"4\n\x11ServerSyncRequest\x12\n\n\x02id\x18\x01 \x01(\t\x12\x13\n\x0bparallelism\x18\x02 \x01(\r\"I\n\x12ServerSyncResponse\x12\x33\n\x08messages\x18\x01 \x03(\x0b\x32!.wandb_internal.ServerSyncMessage\"%\n\x17ServerSyncStatusRequest\x12\n\n\x02id\x18\x01 \x01(\t\"\ 
     | 
| 
      
 29 
     | 
    
         
            +
            DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1cwandb/proto/wandb_sync.proto\x12\x0ewandb_internal\x1a wandb/proto/wandb_internal.proto\x1a wandb/proto/wandb_settings.proto\"Q\n\x15ServerInitSyncRequest\x12\x0c\n\x04path\x18\x01 \x03(\t\x12*\n\x08settings\x18\x02 \x01(\x0b\x32\x18.wandb_internal.Settings\"$\n\x16ServerInitSyncResponse\x12\n\n\x02id\x18\x01 \x01(\t\"4\n\x11ServerSyncRequest\x12\n\n\x02id\x18\x01 \x01(\t\x12\x13\n\x0bparallelism\x18\x02 \x01(\r\"I\n\x12ServerSyncResponse\x12\x33\n\x08messages\x18\x01 \x03(\x0b\x32!.wandb_internal.ServerSyncMessage\"%\n\x17ServerSyncStatusRequest\x12\n\n\x02id\x18\x01 \x01(\t\"\xe5\x01\n\x18ServerSyncStatusResponse\x12\x42\n\x05stats\x18\x01 \x03(\x0b\x32\x33.wandb_internal.ServerSyncStatusResponse.StatsEntry\x12\x37\n\x0cnew_messages\x18\x02 \x03(\x0b\x32!.wandb_internal.ServerSyncMessage\x1aL\n\nStatsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12-\n\x05value\x18\x02 \x01(\x0b\x32\x1e.wandb_internal.OperationStats:\x02\x38\x01\"\xaa\x01\n\x11ServerSyncMessage\x12<\n\x08severity\x18\x01 \x01(\x0e\x32*.wandb_internal.ServerSyncMessage.Severity\x12\x0f\n\x07\x63ontent\x18\x02 \x01(\t\"F\n\x08Severity\x12\x13\n\x0fSEVERITY_NOTSET\x10\x00\x12\x11\n\rSEVERITY_INFO\x10\x14\x12\x12\n\x0eSEVERITY_ERROR\x10(B\x1bZ\x19\x63ore/pkg/service_go_protob\x06proto3')
         
     | 
| 
       30 
30 
     | 
    
         | 
| 
       31 
31 
     | 
    
         
             
            _globals = globals()
         
     | 
| 
       32 
32 
     | 
    
         
             
            _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
         
     | 
| 
         @@ -34,6 +34,8 @@ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'wandb.proto.wandb_sync_pb2' 
     | 
|
| 
       34 
34 
     | 
    
         
             
            if not _descriptor._USE_C_DESCRIPTORS:
         
     | 
| 
       35 
35 
     | 
    
         
             
              _globals['DESCRIPTOR']._loaded_options = None
         
     | 
| 
       36 
36 
     | 
    
         
             
              _globals['DESCRIPTOR']._serialized_options = b'Z\031core/pkg/service_go_proto'
         
     | 
| 
      
 37 
     | 
    
         
            +
              _globals['_SERVERSYNCSTATUSRESPONSE_STATSENTRY']._loaded_options = None
         
     | 
| 
      
 38 
     | 
    
         
            +
              _globals['_SERVERSYNCSTATUSRESPONSE_STATSENTRY']._serialized_options = b'8\001'
         
     | 
| 
       37 
39 
     | 
    
         
             
              _globals['_SERVERINITSYNCREQUEST']._serialized_start=116
         
     | 
| 
       38 
40 
     | 
    
         
             
              _globals['_SERVERINITSYNCREQUEST']._serialized_end=197
         
     | 
| 
       39 
41 
     | 
    
         
             
              _globals['_SERVERINITSYNCRESPONSE']._serialized_start=199
         
     | 
| 
         @@ -45,9 +47,11 @@ if not _descriptor._USE_C_DESCRIPTORS: 
     | 
|
| 
       45 
47 
     | 
    
         
             
              _globals['_SERVERSYNCSTATUSREQUEST']._serialized_start=366
         
     | 
| 
       46 
48 
     | 
    
         
             
              _globals['_SERVERSYNCSTATUSREQUEST']._serialized_end=403
         
     | 
| 
       47 
49 
     | 
    
         
             
              _globals['_SERVERSYNCSTATUSRESPONSE']._serialized_start=406
         
     | 
| 
       48 
     | 
    
         
            -
              _globals['_SERVERSYNCSTATUSRESPONSE']._serialized_end= 
     | 
| 
       49 
     | 
    
         
            -
              _globals[' 
     | 
| 
       50 
     | 
    
         
            -
              _globals[' 
     | 
| 
       51 
     | 
    
         
            -
              _globals[' 
     | 
| 
       52 
     | 
    
         
            -
              _globals[' 
     | 
| 
      
 50 
     | 
    
         
            +
              _globals['_SERVERSYNCSTATUSRESPONSE']._serialized_end=635
         
     | 
| 
      
 51 
     | 
    
         
            +
              _globals['_SERVERSYNCSTATUSRESPONSE_STATSENTRY']._serialized_start=559
         
     | 
| 
      
 52 
     | 
    
         
            +
              _globals['_SERVERSYNCSTATUSRESPONSE_STATSENTRY']._serialized_end=635
         
     | 
| 
      
 53 
     | 
    
         
            +
              _globals['_SERVERSYNCMESSAGE']._serialized_start=638
         
     | 
| 
      
 54 
     | 
    
         
            +
              _globals['_SERVERSYNCMESSAGE']._serialized_end=808
         
     | 
| 
      
 55 
     | 
    
         
            +
              _globals['_SERVERSYNCMESSAGE_SEVERITY']._serialized_start=738
         
     | 
| 
      
 56 
     | 
    
         
            +
              _globals['_SERVERSYNCMESSAGE_SEVERITY']._serialized_end=808
         
     | 
| 
       53 
57 
     | 
    
         
             
            # @@protoc_insertion_point(module_scope)
         
     | 
| 
         @@ -2,27 +2,29 @@ 
     | 
|
| 
       2 
2 
     | 
    
         | 
| 
       3 
3 
     | 
    
         
             
            __all__ = [
         
     | 
| 
       4 
4 
     | 
    
         
             
                "ADD_ALIASES_GQL",
         
     | 
| 
      
 5 
     | 
    
         
            +
                "ADD_ARTIFACT_COLLECTION_TAGS_GQL",
         
     | 
| 
       5 
6 
     | 
    
         
             
                "ARTIFACT_BY_ID_GQL",
         
     | 
| 
       6 
7 
     | 
    
         
             
                "ARTIFACT_BY_NAME_GQL",
         
     | 
| 
       7 
8 
     | 
    
         
             
                "ARTIFACT_COLLECTION_MEMBERSHIP_FILES_GQL",
         
     | 
| 
       8 
9 
     | 
    
         
             
                "ARTIFACT_COLLECTION_MEMBERSHIP_FILE_URLS_GQL",
         
     | 
| 
       9 
10 
     | 
    
         
             
                "ARTIFACT_CREATED_BY_GQL",
         
     | 
| 
       10 
11 
     | 
    
         
             
                "ARTIFACT_FILE_URLS_GQL",
         
     | 
| 
      
 12 
     | 
    
         
            +
                "ARTIFACT_MEMBERSHIP_BY_NAME_GQL",
         
     | 
| 
       11 
13 
     | 
    
         
             
                "ARTIFACT_TYPE_GQL",
         
     | 
| 
       12 
14 
     | 
    
         
             
                "ARTIFACT_USED_BY_GQL",
         
     | 
| 
       13 
15 
     | 
    
         
             
                "ARTIFACT_VERSION_FILES_GQL",
         
     | 
| 
       14 
     | 
    
         
            -
                "ARTIFACT_VIA_MEMBERSHIP_BY_NAME_GQL",
         
     | 
| 
       15 
     | 
    
         
            -
                "CREATE_ARTIFACT_COLLECTION_TAG_ASSIGNMENTS_GQL",
         
     | 
| 
       16 
16 
     | 
    
         
             
                "DELETE_ALIASES_GQL",
         
     | 
| 
       17 
     | 
    
         
            -
                " 
     | 
| 
      
 17 
     | 
    
         
            +
                "DELETE_ARTIFACT_COLLECTION_TAGS_GQL",
         
     | 
| 
       18 
18 
     | 
    
         
             
                "DELETE_ARTIFACT_GQL",
         
     | 
| 
       19 
19 
     | 
    
         
             
                "DELETE_ARTIFACT_PORTFOLIO_GQL",
         
     | 
| 
       20 
20 
     | 
    
         
             
                "DELETE_ARTIFACT_SEQUENCE_GQL",
         
     | 
| 
      
 21 
     | 
    
         
            +
                "DELETE_REGISTRY_GQL",
         
     | 
| 
       21 
22 
     | 
    
         
             
                "FETCH_ARTIFACT_MANIFEST_GQL",
         
     | 
| 
       22 
23 
     | 
    
         
             
                "FETCH_LINKED_ARTIFACTS_GQL",
         
     | 
| 
      
 24 
     | 
    
         
            +
                "FETCH_ORG_INFO_FROM_ENTITY_GQL",
         
     | 
| 
       23 
25 
     | 
    
         
             
                "FETCH_REGISTRIES_GQL",
         
     | 
| 
      
 26 
     | 
    
         
            +
                "FETCH_REGISTRY_GQL",
         
     | 
| 
       24 
27 
     | 
    
         
             
                "LINK_ARTIFACT_GQL",
         
     | 
| 
       25 
     | 
    
         
            -
                "MOVE_ARTIFACT_COLLECTION_GQL",
         
     | 
| 
       26 
28 
     | 
    
         
             
                "PROJECT_ARTIFACTS_GQL",
         
     | 
| 
       27 
29 
     | 
    
         
             
                "PROJECT_ARTIFACT_COLLECTIONS_GQL",
         
     | 
| 
       28 
30 
     | 
    
         
             
                "PROJECT_ARTIFACT_COLLECTION_GQL",
         
     | 
| 
         @@ -30,20 +32,23 @@ __all__ = [ 
     | 
|
| 
       30 
32 
     | 
    
         
             
                "PROJECT_ARTIFACT_TYPE_GQL",
         
     | 
| 
       31 
33 
     | 
    
         
             
                "REGISTRY_COLLECTIONS_GQL",
         
     | 
| 
       32 
34 
     | 
    
         
             
                "REGISTRY_VERSIONS_GQL",
         
     | 
| 
      
 35 
     | 
    
         
            +
                "RENAME_REGISTRY_GQL",
         
     | 
| 
       33 
36 
     | 
    
         
             
                "RUN_INPUT_ARTIFACTS_GQL",
         
     | 
| 
       34 
37 
     | 
    
         
             
                "RUN_OUTPUT_ARTIFACTS_GQL",
         
     | 
| 
       35 
38 
     | 
    
         
             
                "TYPE_INFO_GQL",
         
     | 
| 
       36 
39 
     | 
    
         
             
                "UNLINK_ARTIFACT_GQL",
         
     | 
| 
      
 40 
     | 
    
         
            +
                "UPDATE_ARTIFACT_COLLECTION_TYPE_GQL",
         
     | 
| 
       37 
41 
     | 
    
         
             
                "UPDATE_ARTIFACT_GQL",
         
     | 
| 
       38 
42 
     | 
    
         
             
                "UPDATE_ARTIFACT_PORTFOLIO_GQL",
         
     | 
| 
       39 
43 
     | 
    
         
             
                "UPDATE_ARTIFACT_SEQUENCE_GQL",
         
     | 
| 
      
 44 
     | 
    
         
            +
                "UPSERT_REGISTRY_GQL",
         
     | 
| 
       40 
45 
     | 
    
         
             
                "DeleteArtifactSequence",
         
     | 
| 
       41 
46 
     | 
    
         
             
                "DeleteArtifactPortfolio",
         
     | 
| 
       42 
47 
     | 
    
         
             
                "UpdateArtifactSequence",
         
     | 
| 
       43 
48 
     | 
    
         
             
                "UpdateArtifactPortfolio",
         
     | 
| 
       44 
     | 
    
         
            -
                " 
     | 
| 
       45 
     | 
    
         
            -
                " 
     | 
| 
       46 
     | 
    
         
            -
                " 
     | 
| 
      
 49 
     | 
    
         
            +
                "UpdateArtifactCollectionType",
         
     | 
| 
      
 50 
     | 
    
         
            +
                "AddArtifactCollectionTags",
         
     | 
| 
      
 51 
     | 
    
         
            +
                "DeleteArtifactCollectionTags",
         
     | 
| 
       47 
52 
     | 
    
         
             
                "ProjectArtifactCollections",
         
     | 
| 
       48 
53 
     | 
    
         
             
                "ProjectArtifactCollection",
         
     | 
| 
       49 
54 
     | 
    
         
             
                "ArtifactVersionFiles",
         
     | 
| 
         @@ -59,7 +64,7 @@ __all__ = [ 
     | 
|
| 
       59 
64 
     | 
    
         
             
                "FetchArtifactManifest",
         
     | 
| 
       60 
65 
     | 
    
         
             
                "ArtifactByID",
         
     | 
| 
       61 
66 
     | 
    
         
             
                "ArtifactByName",
         
     | 
| 
       62 
     | 
    
         
            -
                " 
     | 
| 
      
 67 
     | 
    
         
            +
                "ArtifactMembershipByName",
         
     | 
| 
       63 
68 
     | 
    
         
             
                "ArtifactUsedBy",
         
     | 
| 
       64 
69 
     | 
    
         
             
                "ArtifactCreatedBy",
         
     | 
| 
       65 
70 
     | 
    
         
             
                "ArtifactType",
         
     | 
| 
         @@ -70,36 +75,62 @@ __all__ = [ 
     | 
|
| 
       70 
75 
     | 
    
         
             
                "LinkArtifact",
         
     | 
| 
       71 
76 
     | 
    
         
             
                "UnlinkArtifact",
         
     | 
| 
       72 
77 
     | 
    
         
             
                "TypeInfo",
         
     | 
| 
      
 78 
     | 
    
         
            +
                "FetchOrgInfoFromEntity",
         
     | 
| 
       73 
79 
     | 
    
         
             
                "RegistryVersions",
         
     | 
| 
       74 
80 
     | 
    
         
             
                "RegistryCollections",
         
     | 
| 
      
 81 
     | 
    
         
            +
                "FetchRegistry",
         
     | 
| 
       75 
82 
     | 
    
         
             
                "FetchRegistries",
         
     | 
| 
      
 83 
     | 
    
         
            +
                "RenameRegistry",
         
     | 
| 
      
 84 
     | 
    
         
            +
                "UpsertRegistry",
         
     | 
| 
      
 85 
     | 
    
         
            +
                "DeleteRegistry",
         
     | 
| 
      
 86 
     | 
    
         
            +
                "AddAliasesInput",
         
     | 
| 
       76 
87 
     | 
    
         
             
                "ArtifactAliasInput",
         
     | 
| 
       77 
88 
     | 
    
         
             
                "ArtifactCollectionAliasInput",
         
     | 
| 
      
 89 
     | 
    
         
            +
                "ArtifactTypeInput",
         
     | 
| 
      
 90 
     | 
    
         
            +
                "CreateArtifactCollectionTagAssignmentsInput",
         
     | 
| 
      
 91 
     | 
    
         
            +
                "DeleteAliasesInput",
         
     | 
| 
      
 92 
     | 
    
         
            +
                "DeleteArtifactCollectionTagAssignmentsInput",
         
     | 
| 
      
 93 
     | 
    
         
            +
                "DeleteArtifactInput",
         
     | 
| 
       78 
94 
     | 
    
         
             
                "LinkArtifactInput",
         
     | 
| 
      
 95 
     | 
    
         
            +
                "MoveArtifactSequenceInput",
         
     | 
| 
      
 96 
     | 
    
         
            +
                "RateLimitsInput",
         
     | 
| 
      
 97 
     | 
    
         
            +
                "RenameProjectInput",
         
     | 
| 
       79 
98 
     | 
    
         
             
                "TagInput",
         
     | 
| 
       80 
     | 
    
         
            -
                " 
     | 
| 
      
 99 
     | 
    
         
            +
                "UnlinkArtifactInput",
         
     | 
| 
      
 100 
     | 
    
         
            +
                "UpdateArtifactInput",
         
     | 
| 
      
 101 
     | 
    
         
            +
                "UpdateArtifactPortfolioInput",
         
     | 
| 
      
 102 
     | 
    
         
            +
                "UpdateArtifactSequenceInput",
         
     | 
| 
      
 103 
     | 
    
         
            +
                "UpsertModelInput",
         
     | 
| 
      
 104 
     | 
    
         
            +
                "ArtifactAliasFragment",
         
     | 
| 
      
 105 
     | 
    
         
            +
                "ArtifactCollectionFragment",
         
     | 
| 
      
 106 
     | 
    
         
            +
                "ArtifactCollectionSummary",
         
     | 
| 
       81 
107 
     | 
    
         
             
                "ArtifactFragment",
         
     | 
| 
       82 
     | 
    
         
            -
                " 
     | 
| 
      
 108 
     | 
    
         
            +
                "ArtifactMembershipFragment",
         
     | 
| 
       83 
109 
     | 
    
         
             
                "ArtifactPortfolioTypeFields",
         
     | 
| 
       84 
110 
     | 
    
         
             
                "ArtifactSequenceTypeFields",
         
     | 
| 
       85 
111 
     | 
    
         
             
                "ArtifactTypeFragment",
         
     | 
| 
       86 
     | 
    
         
            -
                " 
     | 
| 
       87 
     | 
    
         
            -
                " 
     | 
| 
       88 
     | 
    
         
            -
                " 
     | 
| 
       89 
     | 
    
         
            -
                " 
     | 
| 
       90 
     | 
    
         
            -
                " 
     | 
| 
       91 
     | 
    
         
            -
                " 
     | 
| 
       92 
     | 
    
         
            -
                " 
     | 
| 
      
 112 
     | 
    
         
            +
                "CollectionInfoFragment",
         
     | 
| 
      
 113 
     | 
    
         
            +
                "DeferredManifestFragment",
         
     | 
| 
      
 114 
     | 
    
         
            +
                "FileFragment",
         
     | 
| 
      
 115 
     | 
    
         
            +
                "FileWithUrlFragment",
         
     | 
| 
      
 116 
     | 
    
         
            +
                "OrgInfoFragment",
         
     | 
| 
      
 117 
     | 
    
         
            +
                "PageInfoFragment",
         
     | 
| 
      
 118 
     | 
    
         
            +
                "ProjectInfoFragment",
         
     | 
| 
      
 119 
     | 
    
         
            +
                "RegistryCollectionFragment",
         
     | 
| 
       93 
120 
     | 
    
         
             
                "RegistryFragment",
         
     | 
| 
       94 
     | 
    
         
            -
                " 
     | 
| 
      
 121 
     | 
    
         
            +
                "RunInfoFragment",
         
     | 
| 
       95 
122 
     | 
    
         
             
                "RunInputArtifactConnectionFragment",
         
     | 
| 
       96 
123 
     | 
    
         
             
                "RunOutputArtifactConnectionFragment",
         
     | 
| 
      
 124 
     | 
    
         
            +
                "SourceCollectionInfoFragment",
         
     | 
| 
      
 125 
     | 
    
         
            +
                "TagFragment",
         
     | 
| 
       97 
126 
     | 
    
         
             
                "TypeInfoFragment",
         
     | 
| 
      
 127 
     | 
    
         
            +
                "VersionedArtifactConnectionFragment",
         
     | 
| 
       98 
128 
     | 
    
         
             
                "ArtifactCollectionState",
         
     | 
| 
       99 
129 
     | 
    
         
             
                "ArtifactCollectionType",
         
     | 
| 
       100 
130 
     | 
    
         
             
                "ArtifactState",
         
     | 
| 
       101 
131 
     | 
    
         
             
            ]
         
     | 
| 
       102 
132 
     | 
    
         
             
            from .add_aliases import AddAliases
         
     | 
| 
      
 133 
     | 
    
         
            +
            from .add_artifact_collection_tags import AddArtifactCollectionTags
         
     | 
| 
       103 
134 
     | 
    
         
             
            from .artifact_by_id import ArtifactByID
         
     | 
| 
       104 
135 
     | 
    
         
             
            from .artifact_by_name import ArtifactByName
         
     | 
| 
       105 
136 
     | 
    
         
             
            from .artifact_collection_membership_file_urls import (
         
     | 
| 
         @@ -108,75 +139,94 @@ from .artifact_collection_membership_file_urls import ( 
     | 
|
| 
       108 
139 
     | 
    
         
             
            from .artifact_collection_membership_files import ArtifactCollectionMembershipFiles
         
     | 
| 
       109 
140 
     | 
    
         
             
            from .artifact_created_by import ArtifactCreatedBy
         
     | 
| 
       110 
141 
     | 
    
         
             
            from .artifact_file_urls import ArtifactFileUrls
         
     | 
| 
      
 142 
     | 
    
         
            +
            from .artifact_membership_by_name import ArtifactMembershipByName
         
     | 
| 
       111 
143 
     | 
    
         
             
            from .artifact_type import ArtifactType
         
     | 
| 
       112 
144 
     | 
    
         
             
            from .artifact_used_by import ArtifactUsedBy
         
     | 
| 
       113 
145 
     | 
    
         
             
            from .artifact_version_files import ArtifactVersionFiles
         
     | 
| 
       114 
     | 
    
         
            -
            from .artifact_via_membership_by_name import ArtifactViaMembershipByName
         
     | 
| 
       115 
     | 
    
         
            -
            from .create_artifact_collection_tag_assignments import (
         
     | 
| 
       116 
     | 
    
         
            -
                CreateArtifactCollectionTagAssignments,
         
     | 
| 
       117 
     | 
    
         
            -
            )
         
     | 
| 
       118 
146 
     | 
    
         
             
            from .delete_aliases import DeleteAliases
         
     | 
| 
       119 
147 
     | 
    
         
             
            from .delete_artifact import DeleteArtifact
         
     | 
| 
       120 
     | 
    
         
            -
            from . 
     | 
| 
       121 
     | 
    
         
            -
                DeleteArtifactCollectionTagAssignments,
         
     | 
| 
       122 
     | 
    
         
            -
            )
         
     | 
| 
      
 148 
     | 
    
         
            +
            from .delete_artifact_collection_tags import DeleteArtifactCollectionTags
         
     | 
| 
       123 
149 
     | 
    
         
             
            from .delete_artifact_portfolio import DeleteArtifactPortfolio
         
     | 
| 
       124 
150 
     | 
    
         
             
            from .delete_artifact_sequence import DeleteArtifactSequence
         
     | 
| 
      
 151 
     | 
    
         
            +
            from .delete_registry import DeleteRegistry
         
     | 
| 
       125 
152 
     | 
    
         
             
            from .enums import ArtifactCollectionState, ArtifactCollectionType, ArtifactState
         
     | 
| 
       126 
153 
     | 
    
         
             
            from .fetch_artifact_manifest import FetchArtifactManifest
         
     | 
| 
       127 
154 
     | 
    
         
             
            from .fetch_linked_artifacts import FetchLinkedArtifacts
         
     | 
| 
      
 155 
     | 
    
         
            +
            from .fetch_org_info_from_entity import FetchOrgInfoFromEntity
         
     | 
| 
       128 
156 
     | 
    
         
             
            from .fetch_registries import FetchRegistries
         
     | 
| 
      
 157 
     | 
    
         
            +
            from .fetch_registry import FetchRegistry
         
     | 
| 
       129 
158 
     | 
    
         
             
            from .fragments import (
         
     | 
| 
       130 
     | 
    
         
            -
                 
     | 
| 
      
 159 
     | 
    
         
            +
                ArtifactAliasFragment,
         
     | 
| 
      
 160 
     | 
    
         
            +
                ArtifactCollectionFragment,
         
     | 
| 
      
 161 
     | 
    
         
            +
                ArtifactCollectionSummary,
         
     | 
| 
       131 
162 
     | 
    
         
             
                ArtifactFragment,
         
     | 
| 
       132 
     | 
    
         
            -
                 
     | 
| 
      
 163 
     | 
    
         
            +
                ArtifactMembershipFragment,
         
     | 
| 
       133 
164 
     | 
    
         
             
                ArtifactPortfolioTypeFields,
         
     | 
| 
       134 
165 
     | 
    
         
             
                ArtifactSequenceTypeFields,
         
     | 
| 
       135 
     | 
    
         
            -
                ArtifactsFragment,
         
     | 
| 
       136 
166 
     | 
    
         
             
                ArtifactTypeFragment,
         
     | 
| 
       137 
     | 
    
         
            -
                 
     | 
| 
       138 
     | 
    
         
            -
                 
     | 
| 
       139 
     | 
    
         
            -
                 
     | 
| 
       140 
     | 
    
         
            -
                 
     | 
| 
       141 
     | 
    
         
            -
                 
     | 
| 
       142 
     | 
    
         
            -
                 
     | 
| 
      
 167 
     | 
    
         
            +
                CollectionInfoFragment,
         
     | 
| 
      
 168 
     | 
    
         
            +
                DeferredManifestFragment,
         
     | 
| 
      
 169 
     | 
    
         
            +
                FileFragment,
         
     | 
| 
      
 170 
     | 
    
         
            +
                FileWithUrlFragment,
         
     | 
| 
      
 171 
     | 
    
         
            +
                OrgInfoFragment,
         
     | 
| 
      
 172 
     | 
    
         
            +
                PageInfoFragment,
         
     | 
| 
      
 173 
     | 
    
         
            +
                ProjectInfoFragment,
         
     | 
| 
      
 174 
     | 
    
         
            +
                RegistryCollectionFragment,
         
     | 
| 
       143 
175 
     | 
    
         
             
                RegistryFragment,
         
     | 
| 
       144 
     | 
    
         
            -
                 
     | 
| 
      
 176 
     | 
    
         
            +
                RunInfoFragment,
         
     | 
| 
       145 
177 
     | 
    
         
             
                RunInputArtifactConnectionFragment,
         
     | 
| 
       146 
178 
     | 
    
         
             
                RunOutputArtifactConnectionFragment,
         
     | 
| 
      
 179 
     | 
    
         
            +
                SourceCollectionInfoFragment,
         
     | 
| 
      
 180 
     | 
    
         
            +
                TagFragment,
         
     | 
| 
       147 
181 
     | 
    
         
             
                TypeInfoFragment,
         
     | 
| 
      
 182 
     | 
    
         
            +
                VersionedArtifactConnectionFragment,
         
     | 
| 
       148 
183 
     | 
    
         
             
            )
         
     | 
| 
       149 
184 
     | 
    
         
             
            from .input_types import (
         
     | 
| 
      
 185 
     | 
    
         
            +
                AddAliasesInput,
         
     | 
| 
       150 
186 
     | 
    
         
             
                ArtifactAliasInput,
         
     | 
| 
       151 
187 
     | 
    
         
             
                ArtifactCollectionAliasInput,
         
     | 
| 
      
 188 
     | 
    
         
            +
                ArtifactTypeInput,
         
     | 
| 
      
 189 
     | 
    
         
            +
                CreateArtifactCollectionTagAssignmentsInput,
         
     | 
| 
      
 190 
     | 
    
         
            +
                DeleteAliasesInput,
         
     | 
| 
      
 191 
     | 
    
         
            +
                DeleteArtifactCollectionTagAssignmentsInput,
         
     | 
| 
      
 192 
     | 
    
         
            +
                DeleteArtifactInput,
         
     | 
| 
       152 
193 
     | 
    
         
             
                LinkArtifactInput,
         
     | 
| 
      
 194 
     | 
    
         
            +
                MoveArtifactSequenceInput,
         
     | 
| 
      
 195 
     | 
    
         
            +
                RateLimitsInput,
         
     | 
| 
      
 196 
     | 
    
         
            +
                RenameProjectInput,
         
     | 
| 
       153 
197 
     | 
    
         
             
                TagInput,
         
     | 
| 
      
 198 
     | 
    
         
            +
                UnlinkArtifactInput,
         
     | 
| 
      
 199 
     | 
    
         
            +
                UpdateArtifactInput,
         
     | 
| 
      
 200 
     | 
    
         
            +
                UpdateArtifactPortfolioInput,
         
     | 
| 
      
 201 
     | 
    
         
            +
                UpdateArtifactSequenceInput,
         
     | 
| 
      
 202 
     | 
    
         
            +
                UpsertModelInput,
         
     | 
| 
       154 
203 
     | 
    
         
             
            )
         
     | 
| 
       155 
204 
     | 
    
         
             
            from .link_artifact import LinkArtifact
         
     | 
| 
       156 
     | 
    
         
            -
            from .move_artifact_collection import MoveArtifactCollection
         
     | 
| 
       157 
205 
     | 
    
         
             
            from .operations import (
         
     | 
| 
       158 
206 
     | 
    
         
             
                ADD_ALIASES_GQL,
         
     | 
| 
      
 207 
     | 
    
         
            +
                ADD_ARTIFACT_COLLECTION_TAGS_GQL,
         
     | 
| 
       159 
208 
     | 
    
         
             
                ARTIFACT_BY_ID_GQL,
         
     | 
| 
       160 
209 
     | 
    
         
             
                ARTIFACT_BY_NAME_GQL,
         
     | 
| 
       161 
210 
     | 
    
         
             
                ARTIFACT_COLLECTION_MEMBERSHIP_FILE_URLS_GQL,
         
     | 
| 
       162 
211 
     | 
    
         
             
                ARTIFACT_COLLECTION_MEMBERSHIP_FILES_GQL,
         
     | 
| 
       163 
212 
     | 
    
         
             
                ARTIFACT_CREATED_BY_GQL,
         
     | 
| 
       164 
213 
     | 
    
         
             
                ARTIFACT_FILE_URLS_GQL,
         
     | 
| 
      
 214 
     | 
    
         
            +
                ARTIFACT_MEMBERSHIP_BY_NAME_GQL,
         
     | 
| 
       165 
215 
     | 
    
         
             
                ARTIFACT_TYPE_GQL,
         
     | 
| 
       166 
216 
     | 
    
         
             
                ARTIFACT_USED_BY_GQL,
         
     | 
| 
       167 
217 
     | 
    
         
             
                ARTIFACT_VERSION_FILES_GQL,
         
     | 
| 
       168 
     | 
    
         
            -
                ARTIFACT_VIA_MEMBERSHIP_BY_NAME_GQL,
         
     | 
| 
       169 
     | 
    
         
            -
                CREATE_ARTIFACT_COLLECTION_TAG_ASSIGNMENTS_GQL,
         
     | 
| 
       170 
218 
     | 
    
         
             
                DELETE_ALIASES_GQL,
         
     | 
| 
       171 
     | 
    
         
            -
                 
     | 
| 
      
 219 
     | 
    
         
            +
                DELETE_ARTIFACT_COLLECTION_TAGS_GQL,
         
     | 
| 
       172 
220 
     | 
    
         
             
                DELETE_ARTIFACT_GQL,
         
     | 
| 
       173 
221 
     | 
    
         
             
                DELETE_ARTIFACT_PORTFOLIO_GQL,
         
     | 
| 
       174 
222 
     | 
    
         
             
                DELETE_ARTIFACT_SEQUENCE_GQL,
         
     | 
| 
      
 223 
     | 
    
         
            +
                DELETE_REGISTRY_GQL,
         
     | 
| 
       175 
224 
     | 
    
         
             
                FETCH_ARTIFACT_MANIFEST_GQL,
         
     | 
| 
       176 
225 
     | 
    
         
             
                FETCH_LINKED_ARTIFACTS_GQL,
         
     | 
| 
      
 226 
     | 
    
         
            +
                FETCH_ORG_INFO_FROM_ENTITY_GQL,
         
     | 
| 
       177 
227 
     | 
    
         
             
                FETCH_REGISTRIES_GQL,
         
     | 
| 
      
 228 
     | 
    
         
            +
                FETCH_REGISTRY_GQL,
         
     | 
| 
       178 
229 
     | 
    
         
             
                LINK_ARTIFACT_GQL,
         
     | 
| 
       179 
     | 
    
         
            -
                MOVE_ARTIFACT_COLLECTION_GQL,
         
     | 
| 
       180 
230 
     | 
    
         
             
                PROJECT_ARTIFACT_COLLECTION_GQL,
         
     | 
| 
       181 
231 
     | 
    
         
             
                PROJECT_ARTIFACT_COLLECTIONS_GQL,
         
     | 
| 
       182 
232 
     | 
    
         
             
                PROJECT_ARTIFACT_TYPE_GQL,
         
     | 
| 
         @@ -184,13 +234,16 @@ from .operations import ( 
     | 
|
| 
       184 
234 
     | 
    
         
             
                PROJECT_ARTIFACTS_GQL,
         
     | 
| 
       185 
235 
     | 
    
         
             
                REGISTRY_COLLECTIONS_GQL,
         
     | 
| 
       186 
236 
     | 
    
         
             
                REGISTRY_VERSIONS_GQL,
         
     | 
| 
      
 237 
     | 
    
         
            +
                RENAME_REGISTRY_GQL,
         
     | 
| 
       187 
238 
     | 
    
         
             
                RUN_INPUT_ARTIFACTS_GQL,
         
     | 
| 
       188 
239 
     | 
    
         
             
                RUN_OUTPUT_ARTIFACTS_GQL,
         
     | 
| 
       189 
240 
     | 
    
         
             
                TYPE_INFO_GQL,
         
     | 
| 
       190 
241 
     | 
    
         
             
                UNLINK_ARTIFACT_GQL,
         
     | 
| 
      
 242 
     | 
    
         
            +
                UPDATE_ARTIFACT_COLLECTION_TYPE_GQL,
         
     | 
| 
       191 
243 
     | 
    
         
             
                UPDATE_ARTIFACT_GQL,
         
     | 
| 
       192 
244 
     | 
    
         
             
                UPDATE_ARTIFACT_PORTFOLIO_GQL,
         
     | 
| 
       193 
245 
     | 
    
         
             
                UPDATE_ARTIFACT_SEQUENCE_GQL,
         
     | 
| 
      
 246 
     | 
    
         
            +
                UPSERT_REGISTRY_GQL,
         
     | 
| 
       194 
247 
     | 
    
         
             
            )
         
     | 
| 
       195 
248 
     | 
    
         
             
            from .project_artifact_collection import ProjectArtifactCollection
         
     | 
| 
       196 
249 
     | 
    
         
             
            from .project_artifact_collections import ProjectArtifactCollections
         
     | 
| 
         @@ -199,10 +252,13 @@ from .project_artifact_types import ProjectArtifactTypes 
     | 
|
| 
       199 
252 
     | 
    
         
             
            from .project_artifacts import ProjectArtifacts
         
     | 
| 
       200 
253 
     | 
    
         
             
            from .registry_collections import RegistryCollections
         
     | 
| 
       201 
254 
     | 
    
         
             
            from .registry_versions import RegistryVersions
         
     | 
| 
      
 255 
     | 
    
         
            +
            from .rename_registry import RenameRegistry
         
     | 
| 
       202 
256 
     | 
    
         
             
            from .run_input_artifacts import RunInputArtifacts
         
     | 
| 
       203 
257 
     | 
    
         
             
            from .run_output_artifacts import RunOutputArtifacts
         
     | 
| 
       204 
258 
     | 
    
         
             
            from .type_info import TypeInfo
         
     | 
| 
       205 
259 
     | 
    
         
             
            from .unlink_artifact import UnlinkArtifact
         
     | 
| 
       206 
260 
     | 
    
         
             
            from .update_artifact import UpdateArtifact
         
     | 
| 
      
 261 
     | 
    
         
            +
            from .update_artifact_collection_type import UpdateArtifactCollectionType
         
     | 
| 
       207 
262 
     | 
    
         
             
            from .update_artifact_portfolio import UpdateArtifactPortfolio
         
     | 
| 
       208 
263 
     | 
    
         
             
            from .update_artifact_sequence import UpdateArtifactSequence
         
     | 
| 
      
 264 
     | 
    
         
            +
            from .upsert_registry import UpsertRegistry
         
     | 
| 
         @@ -7,14 +7,14 @@ from typing import Optional 
     | 
|
| 
       7 
7 
     | 
    
         | 
| 
       8 
8 
     | 
    
         
             
            from pydantic import Field
         
     | 
| 
       9 
9 
     | 
    
         | 
| 
       10 
     | 
    
         
            -
            from wandb._pydantic import  
     | 
| 
      
 10 
     | 
    
         
            +
            from wandb._pydantic import GQLResult
         
     | 
| 
       11 
11 
     | 
    
         | 
| 
       12 
12 
     | 
    
         | 
| 
       13 
     | 
    
         
            -
            class AddAliases( 
     | 
| 
      
 13 
     | 
    
         
            +
            class AddAliases(GQLResult):
         
     | 
| 
       14 
14 
     | 
    
         
             
                add_aliases: Optional[AddAliasesAddAliases] = Field(alias="addAliases")
         
     | 
| 
       15 
15 
     | 
    
         | 
| 
       16 
16 
     | 
    
         | 
| 
       17 
     | 
    
         
            -
            class AddAliasesAddAliases( 
     | 
| 
      
 17 
     | 
    
         
            +
            class AddAliasesAddAliases(GQLResult):
         
     | 
| 
       18 
18 
     | 
    
         
             
                success: bool
         
     | 
| 
       19 
19 
     | 
    
         | 
| 
       20 
20 
     | 
    
         | 
| 
         @@ -0,0 +1,26 @@ 
     | 
|
| 
      
 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 GQLResult
         
     | 
| 
      
 11 
     | 
    
         
            +
             
     | 
| 
      
 12 
     | 
    
         
            +
            from .fragments import TagFragment
         
     | 
| 
      
 13 
     | 
    
         
            +
             
     | 
| 
      
 14 
     | 
    
         
            +
             
     | 
| 
      
 15 
     | 
    
         
            +
            class AddArtifactCollectionTags(GQLResult):
         
     | 
| 
      
 16 
     | 
    
         
            +
                create_artifact_collection_tag_assignments: Optional[
         
     | 
| 
      
 17 
     | 
    
         
            +
                    AddArtifactCollectionTagsCreateArtifactCollectionTagAssignments
         
     | 
| 
      
 18 
     | 
    
         
            +
                ] = Field(alias="createArtifactCollectionTagAssignments")
         
     | 
| 
      
 19 
     | 
    
         
            +
             
     | 
| 
      
 20 
     | 
    
         
            +
             
     | 
| 
      
 21 
     | 
    
         
            +
            class AddArtifactCollectionTagsCreateArtifactCollectionTagAssignments(GQLResult):
         
     | 
| 
      
 22 
     | 
    
         
            +
                tags: List[TagFragment]
         
     | 
| 
      
 23 
     | 
    
         
            +
             
     | 
| 
      
 24 
     | 
    
         
            +
             
     | 
| 
      
 25 
     | 
    
         
            +
            AddArtifactCollectionTags.model_rebuild()
         
     | 
| 
      
 26 
     | 
    
         
            +
            AddArtifactCollectionTagsCreateArtifactCollectionTagAssignments.model_rebuild()
         
     | 
| 
         @@ -5,12 +5,12 @@ from __future__ import annotations 
     | 
|
| 
       5 
5 
     | 
    
         | 
| 
       6 
6 
     | 
    
         
             
            from typing import Optional
         
     | 
| 
       7 
7 
     | 
    
         | 
| 
       8 
     | 
    
         
            -
            from wandb._pydantic import  
     | 
| 
      
 8 
     | 
    
         
            +
            from wandb._pydantic import GQLResult
         
     | 
| 
       9 
9 
     | 
    
         | 
| 
       10 
10 
     | 
    
         
             
            from .fragments import ArtifactFragment
         
     | 
| 
       11 
11 
     | 
    
         | 
| 
       12 
12 
     | 
    
         | 
| 
       13 
     | 
    
         
            -
            class ArtifactByID( 
     | 
| 
      
 13 
     | 
    
         
            +
            class ArtifactByID(GQLResult):
         
     | 
| 
       14 
14 
     | 
    
         
             
                artifact: Optional[ArtifactFragment]
         
     | 
| 
       15 
15 
     | 
    
         | 
| 
       16 
16 
     | 
    
         | 
| 
         @@ -5,16 +5,16 @@ from __future__ import annotations 
     | 
|
| 
       5 
5 
     | 
    
         | 
| 
       6 
6 
     | 
    
         
             
            from typing import Optional
         
     | 
| 
       7 
7 
     | 
    
         | 
| 
       8 
     | 
    
         
            -
            from wandb._pydantic import  
     | 
| 
      
 8 
     | 
    
         
            +
            from wandb._pydantic import GQLResult
         
     | 
| 
       9 
9 
     | 
    
         | 
| 
       10 
10 
     | 
    
         
             
            from .fragments import ArtifactFragment
         
     | 
| 
       11 
11 
     | 
    
         | 
| 
       12 
12 
     | 
    
         | 
| 
       13 
     | 
    
         
            -
            class ArtifactByName( 
     | 
| 
      
 13 
     | 
    
         
            +
            class ArtifactByName(GQLResult):
         
     | 
| 
       14 
14 
     | 
    
         
             
                project: Optional[ArtifactByNameProject]
         
     | 
| 
       15 
15 
     | 
    
         | 
| 
       16 
16 
     | 
    
         | 
| 
       17 
     | 
    
         
            -
            class ArtifactByNameProject( 
     | 
| 
      
 17 
     | 
    
         
            +
            class ArtifactByNameProject(GQLResult):
         
     | 
| 
       18 
18 
     | 
    
         
             
                artifact: Optional[ArtifactFragment]
         
     | 
| 
       19 
19 
     | 
    
         | 
| 
       20 
20 
     | 
    
         |