wandb 0.22.1__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 +7 -4
 - 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 +23 -3
 - wandb/cli/beta_leet.py +75 -0
 - wandb/cli/beta_sync.py +1 -1
 - wandb/cli/cli.py +34 -7
 - wandb/errors/term.py +8 -8
 - wandb/jupyter.py +0 -51
 - wandb/old/settings.py +6 -6
 - wandb/proto/v3/wandb_api_pb2.py +86 -0
 - 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_api_pb2.py +37 -0
 - 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_api_pb2.py +38 -0
 - 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_api_pb2.py +48 -0
 - 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/proto/wandb_api_pb2.py +18 -0
 - wandb/proto/wandb_generate_proto.py +1 -0
 - 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 +249 -244
 - wandb/sdk/artifacts/artifact_file_cache.py +1 -1
 - wandb/sdk/artifacts/artifact_manifest.py +37 -32
 - wandb/sdk/artifacts/artifact_manifest_entry.py +82 -133
 - wandb/sdk/artifacts/artifact_manifests/artifact_manifest_v1.py +43 -61
 - wandb/sdk/artifacts/storage_handler.py +18 -12
 - wandb/sdk/artifacts/storage_handlers/azure_handler.py +11 -6
 - wandb/sdk/artifacts/storage_handlers/gcs_handler.py +17 -12
 - wandb/sdk/artifacts/storage_handlers/http_handler.py +9 -4
 - wandb/sdk/artifacts/storage_handlers/local_file_handler.py +10 -6
 - wandb/sdk/artifacts/storage_handlers/multi_handler.py +5 -4
 - wandb/sdk/artifacts/storage_handlers/s3_handler.py +10 -8
 - wandb/sdk/artifacts/storage_handlers/tracking_handler.py +6 -4
 - wandb/sdk/artifacts/storage_handlers/wb_artifact_handler.py +24 -21
 - wandb/sdk/artifacts/storage_handlers/wb_local_artifact_handler.py +4 -2
 - wandb/sdk/artifacts/storage_policies/_multipart.py +187 -0
 - wandb/sdk/artifacts/storage_policies/wandb_storage_policy.py +61 -242
 - wandb/sdk/artifacts/storage_policy.py +25 -12
 - wandb/sdk/data_types/image.py +2 -2
 - wandb/sdk/data_types/object_3d.py +67 -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/internal/job_builder.py +27 -10
 - wandb/sdk/internal/sender.py +4 -1
 - wandb/sdk/launch/create_job.py +2 -1
 - 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 +151 -125
 - 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 +11 -14
 - wandb/sdk/wandb_run.py +14 -48
 - wandb/sdk/wandb_settings.py +114 -30
 - {wandb-0.22.1.dist-info → wandb-0.22.3.dist-info}/METADATA +2 -1
 - {wandb-0.22.1.dist-info → wandb-0.22.3.dist-info}/RECORD +154 -146
 - 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.1.dist-info → wandb-0.22.3.dist-info}/WHEEL +0 -0
 - {wandb-0.22.1.dist-info → wandb-0.22.3.dist-info}/entry_points.txt +0 -0
 - {wandb-0.22.1.dist-info → wandb-0.22.3.dist-info}/licenses/LICENSE +0 -0
 
    
        wandb/cli/beta_leet.py
    ADDED
    
    | 
         @@ -0,0 +1,75 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            from __future__ import annotations
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            import os
         
     | 
| 
      
 4 
     | 
    
         
            +
            import pathlib
         
     | 
| 
      
 5 
     | 
    
         
            +
            import subprocess
         
     | 
| 
      
 6 
     | 
    
         
            +
            import sys
         
     | 
| 
      
 7 
     | 
    
         
            +
             
     | 
| 
      
 8 
     | 
    
         
            +
            import click
         
     | 
| 
      
 9 
     | 
    
         
            +
            from typing_extensions import Never
         
     | 
| 
      
 10 
     | 
    
         
            +
             
     | 
| 
      
 11 
     | 
    
         
            +
            import wandb
         
     | 
| 
      
 12 
     | 
    
         
            +
            from wandb.env import error_reporting_enabled, is_debug
         
     | 
| 
      
 13 
     | 
    
         
            +
            from wandb.sdk import wandb_setup
         
     | 
| 
      
 14 
     | 
    
         
            +
            from wandb.util import get_core_path
         
     | 
| 
      
 15 
     | 
    
         
            +
             
     | 
| 
      
 16 
     | 
    
         
            +
            from .beta_sync import _find_wandb_files
         
     | 
| 
      
 17 
     | 
    
         
            +
             
     | 
| 
      
 18 
     | 
    
         
            +
             
     | 
| 
      
 19 
     | 
    
         
            +
            def _fatal(message: str) -> Never:
         
     | 
| 
      
 20 
     | 
    
         
            +
                """Print an error message and exit with code 1."""
         
     | 
| 
      
 21 
     | 
    
         
            +
                click.echo(f"Error: {message}", err=True)
         
     | 
| 
      
 22 
     | 
    
         
            +
                sys.exit(1)
         
     | 
| 
      
 23 
     | 
    
         
            +
             
     | 
| 
      
 24 
     | 
    
         
            +
             
     | 
| 
      
 25 
     | 
    
         
            +
            def _wandb_file_path(path: str | None) -> str:
         
     | 
| 
      
 26 
     | 
    
         
            +
                """Returns absolute path to the .wandb file to display with LEET.
         
     | 
| 
      
 27 
     | 
    
         
            +
             
     | 
| 
      
 28 
     | 
    
         
            +
                If `path` is not provided, looks for the latest W&B run.
         
     | 
| 
      
 29 
     | 
    
         
            +
             
     | 
| 
      
 30 
     | 
    
         
            +
                Prints an error and exits if a valid path is not found.
         
     | 
| 
      
 31 
     | 
    
         
            +
                """
         
     | 
| 
      
 32 
     | 
    
         
            +
                if not path:
         
     | 
| 
      
 33 
     | 
    
         
            +
                    wandb_dir = wandb_setup.singleton().settings.wandb_dir
         
     | 
| 
      
 34 
     | 
    
         
            +
             
     | 
| 
      
 35 
     | 
    
         
            +
                    wandb_run_path = (pathlib.Path(wandb_dir) / "latest-run").resolve()
         
     | 
| 
      
 36 
     | 
    
         
            +
                else:
         
     | 
| 
      
 37 
     | 
    
         
            +
                    wandb_run_path = pathlib.Path(path).resolve()
         
     | 
| 
      
 38 
     | 
    
         
            +
             
     | 
| 
      
 39 
     | 
    
         
            +
                wandb_files = list(_find_wandb_files(wandb_run_path, skip_synced=False))
         
     | 
| 
      
 40 
     | 
    
         
            +
             
     | 
| 
      
 41 
     | 
    
         
            +
                if len(wandb_files) == 0:
         
     | 
| 
      
 42 
     | 
    
         
            +
                    _fatal(f"Could not find a .wandb file in {wandb_run_path}.")
         
     | 
| 
      
 43 
     | 
    
         
            +
                elif len(wandb_files) > 1:
         
     | 
| 
      
 44 
     | 
    
         
            +
                    _fatal(f"Found multiple .wandb files in {wandb_run_path}.")
         
     | 
| 
      
 45 
     | 
    
         
            +
             
     | 
| 
      
 46 
     | 
    
         
            +
                return wandb_files[0]
         
     | 
| 
      
 47 
     | 
    
         
            +
             
     | 
| 
      
 48 
     | 
    
         
            +
             
     | 
| 
      
 49 
     | 
    
         
            +
            def launch(path: str | None) -> Never:
         
     | 
| 
      
 50 
     | 
    
         
            +
                wandb._sentry.configure_scope(process_context="leet")
         
     | 
| 
      
 51 
     | 
    
         
            +
             
     | 
| 
      
 52 
     | 
    
         
            +
                wandb_file = _wandb_file_path(path)
         
     | 
| 
      
 53 
     | 
    
         
            +
             
     | 
| 
      
 54 
     | 
    
         
            +
                try:
         
     | 
| 
      
 55 
     | 
    
         
            +
                    core_path = get_core_path()
         
     | 
| 
      
 56 
     | 
    
         
            +
             
     | 
| 
      
 57 
     | 
    
         
            +
                    args = [core_path, "leet"]
         
     | 
| 
      
 58 
     | 
    
         
            +
             
     | 
| 
      
 59 
     | 
    
         
            +
                    if not error_reporting_enabled():
         
     | 
| 
      
 60 
     | 
    
         
            +
                        args.append("--no-observability")
         
     | 
| 
      
 61 
     | 
    
         
            +
             
     | 
| 
      
 62 
     | 
    
         
            +
                    if is_debug(default="False"):
         
     | 
| 
      
 63 
     | 
    
         
            +
                        args.extend(["--log-level", "-4"])
         
     | 
| 
      
 64 
     | 
    
         
            +
             
     | 
| 
      
 65 
     | 
    
         
            +
                    args.append(wandb_file)
         
     | 
| 
      
 66 
     | 
    
         
            +
             
     | 
| 
      
 67 
     | 
    
         
            +
                    result = subprocess.run(
         
     | 
| 
      
 68 
     | 
    
         
            +
                        args,
         
     | 
| 
      
 69 
     | 
    
         
            +
                        env=os.environ,
         
     | 
| 
      
 70 
     | 
    
         
            +
                        close_fds=True,
         
     | 
| 
      
 71 
     | 
    
         
            +
                    )
         
     | 
| 
      
 72 
     | 
    
         
            +
                    sys.exit(result.returncode)
         
     | 
| 
      
 73 
     | 
    
         
            +
             
     | 
| 
      
 74 
     | 
    
         
            +
                except Exception as e:
         
     | 
| 
      
 75 
     | 
    
         
            +
                    wandb._sentry.reraise(e)
         
     | 
    
        wandb/cli/beta_sync.py
    CHANGED
    
    | 
         @@ -141,7 +141,7 @@ class _SyncStatusLoop: 
     | 
|
| 
       141 
141 
     | 
    
         | 
| 
       142 
142 
     | 
    
         
             
                            for msg in response.new_messages:
         
     | 
| 
       143 
143 
     | 
    
         
             
                                self._printer.display(msg.content, level=msg.severity)
         
     | 
| 
       144 
     | 
    
         
            -
                            progress.update(response.stats)
         
     | 
| 
      
 144 
     | 
    
         
            +
                            progress.update(dict(response.stats))
         
     | 
| 
       145 
145 
     | 
    
         | 
| 
       146 
146 
     | 
    
         
             
                async def _rate_limit_check_done(self) -> bool:
         
     | 
| 
       147 
147 
     | 
    
         
             
                    """Wait for rate limit and return whether _done is set."""
         
     | 
    
        wandb/cli/cli.py
    CHANGED
    
    | 
         @@ -244,7 +244,7 @@ def projects(entity, display=True): 
     | 
|
| 
       244 
244 
     | 
    
         
             
                return projects
         
     | 
| 
       245 
245 
     | 
    
         | 
| 
       246 
246 
     | 
    
         | 
| 
       247 
     | 
    
         
            -
            @cli.command(context_settings=CONTEXT 
     | 
| 
      
 247 
     | 
    
         
            +
            @cli.command(context_settings=CONTEXT)
         
     | 
| 
       248 
248 
     | 
    
         
             
            @click.argument("key", nargs=-1)
         
     | 
| 
       249 
249 
     | 
    
         
             
            @click.option("--cloud", is_flag=True, help="Login to the cloud instead of local")
         
     | 
| 
       250 
250 
     | 
    
         
             
            @click.option(
         
     | 
| 
         @@ -262,6 +262,16 @@ def projects(entity, display=True): 
     | 
|
| 
       262 
262 
     | 
    
         
             
            )
         
     | 
| 
       263 
263 
     | 
    
         
             
            @display_error
         
     | 
| 
       264 
264 
     | 
    
         
             
            def login(key, host, cloud, relogin, anonymously, verify, no_offline=False):
         
     | 
| 
      
 265 
     | 
    
         
            +
                """Verify and store your API key for authentication with W&B services.
         
     | 
| 
      
 266 
     | 
    
         
            +
             
     | 
| 
      
 267 
     | 
    
         
            +
                By default, only store credentials locally without verifying them with W&B.
         
     | 
| 
      
 268 
     | 
    
         
            +
                To verify credentials, set `--verify=True`.
         
     | 
| 
      
 269 
     | 
    
         
            +
             
     | 
| 
      
 270 
     | 
    
         
            +
                For server deployments (dedicated cloud or customer-managed instances),
         
     | 
| 
      
 271 
     | 
    
         
            +
                specify the host URL using the `--host` flag. You can also set environment
         
     | 
| 
      
 272 
     | 
    
         
            +
                variables `WANDB_BASE_URL` and `WANDB_API_KEY` instead of running
         
     | 
| 
      
 273 
     | 
    
         
            +
                the `login` command with host parameters.
         
     | 
| 
      
 274 
     | 
    
         
            +
                """
         
     | 
| 
       265 
275 
     | 
    
         
             
                # TODO: handle no_offline
         
     | 
| 
       266 
276 
     | 
    
         
             
                anon_mode = "must" if anonymously else "never"
         
     | 
| 
       267 
277 
     | 
    
         | 
| 
         @@ -422,9 +432,7 @@ def init(ctx, project, entity, reset, mode): 
     | 
|
| 
       422 
432 
     | 
    
         
             
                )
         
     | 
| 
       423 
433 
     | 
    
         | 
| 
       424 
434 
     | 
    
         | 
| 
       425 
     | 
    
         
            -
            @cli.command(
         
     | 
| 
       426 
     | 
    
         
            -
                context_settings=CONTEXT, help="Upload an offline training directory to W&B"
         
     | 
| 
       427 
     | 
    
         
            -
            )
         
     | 
| 
      
 435 
     | 
    
         
            +
            @cli.command(context_settings=CONTEXT)
         
     | 
| 
       428 
436 
     | 
    
         
             
            @click.pass_context
         
     | 
| 
       429 
437 
     | 
    
         
             
            @click.argument("path", nargs=-1, type=click.Path(exists=True))
         
     | 
| 
       430 
438 
     | 
    
         
             
            @click.option("--view", is_flag=True, default=False, help="View runs", hidden=True)
         
     | 
| 
         @@ -518,9 +526,23 @@ def sync( 
     | 
|
| 
       518 
526 
     | 
    
         
             
                skip_console=None,
         
     | 
| 
       519 
527 
     | 
    
         
             
                replace_tags=None,
         
     | 
| 
       520 
528 
     | 
    
         
             
            ):
         
     | 
| 
      
 529 
     | 
    
         
            +
                """Synchronize W&B run data to the cloud.
         
     | 
| 
      
 530 
     | 
    
         
            +
             
     | 
| 
      
 531 
     | 
    
         
            +
                If PATH is provided, sync runs found at the given path. If a path
         
     | 
| 
      
 532 
     | 
    
         
            +
                is not specified, search for `./wandb` first, then search for a
         
     | 
| 
      
 533 
     | 
    
         
            +
                `wandb/` subdirectory.
         
     | 
| 
      
 534 
     | 
    
         
            +
             
     | 
| 
      
 535 
     | 
    
         
            +
                To sync a specific run:
         
     | 
| 
      
 536 
     | 
    
         
            +
             
     | 
| 
      
 537 
     | 
    
         
            +
                    wandb sync ./wandb/run-20250813_124246-n67z9ude
         
     | 
| 
      
 538 
     | 
    
         
            +
             
     | 
| 
      
 539 
     | 
    
         
            +
                Or equivalently:
         
     | 
| 
      
 540 
     | 
    
         
            +
             
     | 
| 
      
 541 
     | 
    
         
            +
                    wandb sync ./wandb/run-20250813_124246-n67z9ude/run-n67z9ude.wandb
         
     | 
| 
      
 542 
     | 
    
         
            +
                """
         
     | 
| 
       521 
543 
     | 
    
         
             
                api = _get_cling_api()
         
     | 
| 
       522 
544 
     | 
    
         
             
                if not api.is_authenticated:
         
     | 
| 
       523 
     | 
    
         
            -
                    wandb.termlog("Login to W&B to sync  
     | 
| 
      
 545 
     | 
    
         
            +
                    wandb.termlog("Login to W&B to sync runs")
         
     | 
| 
       524 
546 
     | 
    
         
             
                    ctx.invoke(login, no_offline=True)
         
     | 
| 
       525 
547 
     | 
    
         
             
                    api = _get_cling_api(reset=True)
         
     | 
| 
       526 
548 
     | 
    
         | 
| 
         @@ -2700,9 +2722,10 @@ Run `git clone {repo}` and restore from there or pass the --no-git flag.""" 
     | 
|
| 
       2700 
2722 
     | 
    
         
             
                return commit, json_config, patch_content, repo, metadata
         
     | 
| 
       2701 
2723 
     | 
    
         | 
| 
       2702 
2724 
     | 
    
         | 
| 
       2703 
     | 
    
         
            -
            @cli.command("online" 
     | 
| 
      
 2725 
     | 
    
         
            +
            @cli.command("online")
         
     | 
| 
       2704 
2726 
     | 
    
         
             
            @display_error
         
     | 
| 
       2705 
2727 
     | 
    
         
             
            def online():
         
     | 
| 
      
 2728 
     | 
    
         
            +
                """Undo `wandb offline`."""
         
     | 
| 
       2706 
2729 
     | 
    
         
             
                api = InternalApi()
         
     | 
| 
       2707 
2730 
     | 
    
         
             
                try:
         
     | 
| 
       2708 
2731 
     | 
    
         
             
                    api.clear_setting("mode", persist=True)
         
     | 
| 
         @@ -2713,9 +2736,13 @@ def online(): 
     | 
|
| 
       2713 
2736 
     | 
    
         
             
                )
         
     | 
| 
       2714 
2737 
     | 
    
         | 
| 
       2715 
2738 
     | 
    
         | 
| 
       2716 
     | 
    
         
            -
            @cli.command("offline" 
     | 
| 
      
 2739 
     | 
    
         
            +
            @cli.command("offline")
         
     | 
| 
       2717 
2740 
     | 
    
         
             
            @display_error
         
     | 
| 
       2718 
2741 
     | 
    
         
             
            def offline():
         
     | 
| 
      
 2742 
     | 
    
         
            +
                """Save data logged to W&B locally without uploading it to the cloud.
         
     | 
| 
      
 2743 
     | 
    
         
            +
             
     | 
| 
      
 2744 
     | 
    
         
            +
                Use `wandb online` or `wandb sync` to upload offline runs.
         
     | 
| 
      
 2745 
     | 
    
         
            +
                """
         
     | 
| 
       2719 
2746 
     | 
    
         
             
                api = InternalApi()
         
     | 
| 
       2720 
2747 
     | 
    
         
             
                try:
         
     | 
| 
       2721 
2748 
     | 
    
         
             
                    api.set_setting("mode", "offline", persist=True)
         
     | 
    
        wandb/errors/term.py
    CHANGED
    
    | 
         @@ -224,10 +224,10 @@ class DynamicBlock: 
     | 
|
| 
       224 
224 
     | 
    
         
             
                """A handle to a changeable text area in the terminal."""
         
     | 
| 
       225 
225 
     | 
    
         | 
| 
       226 
226 
     | 
    
         
             
                def __init__(self):
         
     | 
| 
       227 
     | 
    
         
            -
                    self._lines_to_print = []
         
     | 
| 
      
 227 
     | 
    
         
            +
                    self._lines_to_print: list[str] = []
         
     | 
| 
       228 
228 
     | 
    
         
             
                    self._num_lines_printed = 0
         
     | 
| 
       229 
229 
     | 
    
         | 
| 
       230 
     | 
    
         
            -
                def set_text(self, text: str, prefix=True) -> None:
         
     | 
| 
      
 230 
     | 
    
         
            +
                def set_text(self, text: str, prefix: bool = True) -> None:
         
     | 
| 
       231 
231 
     | 
    
         
             
                    r"""Replace the text in this block.
         
     | 
| 
       232 
232 
     | 
    
         | 
| 
       233 
233 
     | 
    
         
             
                    Args:
         
     | 
| 
         @@ -335,12 +335,12 @@ def _raw_shorten(text: str, width: int) -> str: 
     | 
|
| 
       335 
335 
     | 
    
         | 
| 
       336 
336 
     | 
    
         | 
| 
       337 
337 
     | 
    
         
             
            def _log(
         
     | 
| 
       338 
     | 
    
         
            -
                string="",
         
     | 
| 
       339 
     | 
    
         
            -
                newline=True,
         
     | 
| 
       340 
     | 
    
         
            -
                repeat=True,
         
     | 
| 
       341 
     | 
    
         
            -
                prefix=True,
         
     | 
| 
       342 
     | 
    
         
            -
                silent=False,
         
     | 
| 
       343 
     | 
    
         
            -
                level=logging.INFO,
         
     | 
| 
      
 338 
     | 
    
         
            +
                string: str = "",
         
     | 
| 
      
 339 
     | 
    
         
            +
                newline: bool = True,
         
     | 
| 
      
 340 
     | 
    
         
            +
                repeat: bool = True,
         
     | 
| 
      
 341 
     | 
    
         
            +
                prefix: bool = True,
         
     | 
| 
      
 342 
     | 
    
         
            +
                silent: bool = False,
         
     | 
| 
      
 343 
     | 
    
         
            +
                level: int = logging.INFO,
         
     | 
| 
       344 
344 
     | 
    
         
             
            ) -> None:
         
     | 
| 
       345 
345 
     | 
    
         
             
                with _dynamic_text_lock, _l_above_dynamic_text():
         
     | 
| 
       346 
346 
     | 
    
         
             
                    if not repeat:
         
     | 
    
        wandb/jupyter.py
    CHANGED
    
    | 
         @@ -305,57 +305,6 @@ def attempt_kaggle_load_ipynb(): 
     | 
|
| 
       305 
305 
     | 
    
         
             
                return parsed
         
     | 
| 
       306 
306 
     | 
    
         | 
| 
       307 
307 
     | 
    
         | 
| 
       308 
     | 
    
         
            -
            def attempt_colab_login(
         
     | 
| 
       309 
     | 
    
         
            -
                app_url: str,
         
     | 
| 
       310 
     | 
    
         
            -
                referrer: str | None = None,
         
     | 
| 
       311 
     | 
    
         
            -
            ):
         
     | 
| 
       312 
     | 
    
         
            -
                """This renders an iframe to wandb in the hopes it posts back an api key."""
         
     | 
| 
       313 
     | 
    
         
            -
                from google.colab import output  # type: ignore
         
     | 
| 
       314 
     | 
    
         
            -
                from google.colab._message import MessageError  # type: ignore
         
     | 
| 
       315 
     | 
    
         
            -
                from IPython import display
         
     | 
| 
       316 
     | 
    
         
            -
             
     | 
| 
       317 
     | 
    
         
            -
                display.display(
         
     | 
| 
       318 
     | 
    
         
            -
                    display.Javascript(
         
     | 
| 
       319 
     | 
    
         
            -
                        """
         
     | 
| 
       320 
     | 
    
         
            -
                    window._wandbApiKey = new Promise((resolve, reject) => {{
         
     | 
| 
       321 
     | 
    
         
            -
                        function loadScript(url) {{
         
     | 
| 
       322 
     | 
    
         
            -
                        return new Promise(function(resolve, reject) {{
         
     | 
| 
       323 
     | 
    
         
            -
                            let newScript = document.createElement("script");
         
     | 
| 
       324 
     | 
    
         
            -
                            newScript.onerror = reject;
         
     | 
| 
       325 
     | 
    
         
            -
                            newScript.onload = resolve;
         
     | 
| 
       326 
     | 
    
         
            -
                            document.body.appendChild(newScript);
         
     | 
| 
       327 
     | 
    
         
            -
                            newScript.src = url;
         
     | 
| 
       328 
     | 
    
         
            -
                        }});
         
     | 
| 
       329 
     | 
    
         
            -
                        }}
         
     | 
| 
       330 
     | 
    
         
            -
                        loadScript("https://cdn.jsdelivr.net/npm/postmate/build/postmate.min.js").then(() => {{
         
     | 
| 
       331 
     | 
    
         
            -
                        const iframe = document.createElement('iframe')
         
     | 
| 
       332 
     | 
    
         
            -
                        iframe.style.cssText = "width:0;height:0;border:none"
         
     | 
| 
       333 
     | 
    
         
            -
                        document.body.appendChild(iframe)
         
     | 
| 
       334 
     | 
    
         
            -
                        const handshake = new Postmate({{
         
     | 
| 
       335 
     | 
    
         
            -
                            container: iframe,
         
     | 
| 
       336 
     | 
    
         
            -
                            url: '{}/authorize{}'
         
     | 
| 
       337 
     | 
    
         
            -
                        }});
         
     | 
| 
       338 
     | 
    
         
            -
                        const timeout = setTimeout(() => reject("Couldn't auto authenticate"), 5000)
         
     | 
| 
       339 
     | 
    
         
            -
                        handshake.then(function(child) {{
         
     | 
| 
       340 
     | 
    
         
            -
                            child.on('authorize', data => {{
         
     | 
| 
       341 
     | 
    
         
            -
                                clearTimeout(timeout)
         
     | 
| 
       342 
     | 
    
         
            -
                                resolve(data)
         
     | 
| 
       343 
     | 
    
         
            -
                            }});
         
     | 
| 
       344 
     | 
    
         
            -
                        }});
         
     | 
| 
       345 
     | 
    
         
            -
                        }})
         
     | 
| 
       346 
     | 
    
         
            -
                    }});
         
     | 
| 
       347 
     | 
    
         
            -
                """.format(
         
     | 
| 
       348 
     | 
    
         
            -
                            app_url.replace("http:", "https:"),
         
     | 
| 
       349 
     | 
    
         
            -
                            f"?ref={referrer}" if referrer else "",
         
     | 
| 
       350 
     | 
    
         
            -
                        )
         
     | 
| 
       351 
     | 
    
         
            -
                    )
         
     | 
| 
       352 
     | 
    
         
            -
                )
         
     | 
| 
       353 
     | 
    
         
            -
                try:
         
     | 
| 
       354 
     | 
    
         
            -
                    return output.eval_js("_wandbApiKey")
         
     | 
| 
       355 
     | 
    
         
            -
                except MessageError:
         
     | 
| 
       356 
     | 
    
         
            -
                    return None
         
     | 
| 
       357 
     | 
    
         
            -
             
     | 
| 
       358 
     | 
    
         
            -
             
     | 
| 
       359 
308 
     | 
    
         
             
            class Notebook:
         
     | 
| 
       360 
309 
     | 
    
         
             
                def __init__(self, settings: wandb.Settings) -> None:
         
     | 
| 
       361 
310 
     | 
    
         
             
                    self.outputs: dict[int, Any] = {}
         
     | 
    
        wandb/old/settings.py
    CHANGED
    
    | 
         @@ -51,15 +51,15 @@ class Settings: 
     | 
|
| 
       51 
51 
     | 
    
         
             
                    # write a temp file and then move it to the settings path
         
     | 
| 
       52 
52 
     | 
    
         
             
                    target_dir = os.path.dirname(settings_path)
         
     | 
| 
       53 
53 
     | 
    
         
             
                    with tempfile.NamedTemporaryFile(
         
     | 
| 
       54 
     | 
    
         
            -
                        "w 
     | 
| 
      
 54 
     | 
    
         
            +
                        mode="w", suffix=".tmp", delete=False, dir=target_dir
         
     | 
| 
       55 
55 
     | 
    
         
             
                    ) as fp:
         
     | 
| 
       56 
     | 
    
         
            -
                         
     | 
| 
       57 
     | 
    
         
            -
                         
     | 
| 
       58 
     | 
    
         
            -
             
     | 
| 
      
 56 
     | 
    
         
            +
                        settings.write(fp)
         
     | 
| 
      
 57 
     | 
    
         
            +
                        temp_path = fp.name
         
     | 
| 
      
 58 
     | 
    
         
            +
             
     | 
| 
       59 
59 
     | 
    
         
             
                    try:
         
     | 
| 
       60 
     | 
    
         
            -
                        os.replace( 
     | 
| 
      
 60 
     | 
    
         
            +
                        os.replace(temp_path, settings_path)
         
     | 
| 
       61 
61 
     | 
    
         
             
                    except AttributeError:
         
     | 
| 
       62 
     | 
    
         
            -
                        os.rename( 
     | 
| 
      
 62 
     | 
    
         
            +
                        os.rename(temp_path, settings_path)
         
     | 
| 
       63 
63 
     | 
    
         | 
| 
       64 
64 
     | 
    
         
             
                def set(self, section, key, value, globally=False, persist=False) -> None:
         
     | 
| 
       65 
65 
     | 
    
         
             
                    """Persist settings to disk if persist = True"""
         
     | 
| 
         @@ -0,0 +1,86 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            # -*- coding: utf-8 -*-
         
     | 
| 
      
 2 
     | 
    
         
            +
            # Generated by the protocol buffer compiler.  DO NOT EDIT!
         
     | 
| 
      
 3 
     | 
    
         
            +
            # source: wandb/proto/wandb_api.proto
         
     | 
| 
      
 4 
     | 
    
         
            +
            """Generated protocol buffer code."""
         
     | 
| 
      
 5 
     | 
    
         
            +
            from google.protobuf import descriptor as _descriptor
         
     | 
| 
      
 6 
     | 
    
         
            +
            from google.protobuf import descriptor_pool as _descriptor_pool
         
     | 
| 
      
 7 
     | 
    
         
            +
            from google.protobuf import message as _message
         
     | 
| 
      
 8 
     | 
    
         
            +
            from google.protobuf import reflection as _reflection
         
     | 
| 
      
 9 
     | 
    
         
            +
            from google.protobuf import symbol_database as _symbol_database
         
     | 
| 
      
 10 
     | 
    
         
            +
            # @@protoc_insertion_point(imports)
         
     | 
| 
      
 11 
     | 
    
         
            +
             
     | 
| 
      
 12 
     | 
    
         
            +
            _sym_db = _symbol_database.Default()
         
     | 
| 
      
 13 
     | 
    
         
            +
             
     | 
| 
      
 14 
     | 
    
         
            +
             
     | 
| 
      
 15 
     | 
    
         
            +
            from wandb.proto import wandb_base_pb2 as wandb_dot_proto_dot_wandb__base__pb2
         
     | 
| 
      
 16 
     | 
    
         
            +
             
     | 
| 
      
 17 
     | 
    
         
            +
             
     | 
| 
      
 18 
     | 
    
         
            +
            DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1bwandb/proto/wandb_api.proto\x12\x0ewandb_internal\x1a\x1cwandb/proto/wandb_base.proto\"]\n\nApiRequest\x12\x44\n\x10read_run_history\x18\x01 \x01(\x0b\x32(.wandb_internal.ReadRunHistoryApiRequestH\x00\x42\t\n\x07request\"`\n\x0b\x41piResponse\x12\x45\n\x10read_run_history\x18\x01 \x01(\x0b\x32).wandb_internal.ReadRunHistoryApiResponseH\x00\x42\n\n\x08response\"\xaa\x01\n\x18ReadRunHistoryApiRequest\x12\x0e\n\x06\x65ntity\x18\x01 \x01(\t\x12\x0f\n\x07project\x18\x02 \x01(\t\x12\x0e\n\x06run_id\x18\x03 \x01(\t\x12\x0c\n\x04keys\x18\x04 \x03(\t\x12\x10\n\x08min_step\x18\x05 \x01(\x03\x12\x10\n\x08max_step\x18\x06 \x01(\x03\x12+\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1b.wandb_internal._RecordInfo\"d\n\x19ReadRunHistoryApiResponse\x12\x30\n\x0chistory_rows\x18\x01 \x03(\x0b\x32\x1a.wandb_internal.HistoryRow\x12\x15\n\rerror_message\x18\x02 \x01(\t\"G\n\nHistoryRow\x12\x39\n\rhistory_items\x18\x01 \x03(\x0b\x32\".wandb_internal.ParquetHistoryItem\"5\n\x12ParquetHistoryItem\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x12\n\nvalue_json\x18\x10 \x01(\tB\x1bZ\x19\x63ore/pkg/service_go_protob\x06proto3')
         
     | 
| 
      
 19 
     | 
    
         
            +
             
     | 
| 
      
 20 
     | 
    
         
            +
             
     | 
| 
      
 21 
     | 
    
         
            +
             
     | 
| 
      
 22 
     | 
    
         
            +
            _APIREQUEST = DESCRIPTOR.message_types_by_name['ApiRequest']
         
     | 
| 
      
 23 
     | 
    
         
            +
            _APIRESPONSE = DESCRIPTOR.message_types_by_name['ApiResponse']
         
     | 
| 
      
 24 
     | 
    
         
            +
            _READRUNHISTORYAPIREQUEST = DESCRIPTOR.message_types_by_name['ReadRunHistoryApiRequest']
         
     | 
| 
      
 25 
     | 
    
         
            +
            _READRUNHISTORYAPIRESPONSE = DESCRIPTOR.message_types_by_name['ReadRunHistoryApiResponse']
         
     | 
| 
      
 26 
     | 
    
         
            +
            _HISTORYROW = DESCRIPTOR.message_types_by_name['HistoryRow']
         
     | 
| 
      
 27 
     | 
    
         
            +
            _PARQUETHISTORYITEM = DESCRIPTOR.message_types_by_name['ParquetHistoryItem']
         
     | 
| 
      
 28 
     | 
    
         
            +
            ApiRequest = _reflection.GeneratedProtocolMessageType('ApiRequest', (_message.Message,), {
         
     | 
| 
      
 29 
     | 
    
         
            +
              'DESCRIPTOR' : _APIREQUEST,
         
     | 
| 
      
 30 
     | 
    
         
            +
              '__module__' : 'wandb.proto.wandb_api_pb2'
         
     | 
| 
      
 31 
     | 
    
         
            +
              # @@protoc_insertion_point(class_scope:wandb_internal.ApiRequest)
         
     | 
| 
      
 32 
     | 
    
         
            +
              })
         
     | 
| 
      
 33 
     | 
    
         
            +
            _sym_db.RegisterMessage(ApiRequest)
         
     | 
| 
      
 34 
     | 
    
         
            +
             
     | 
| 
      
 35 
     | 
    
         
            +
            ApiResponse = _reflection.GeneratedProtocolMessageType('ApiResponse', (_message.Message,), {
         
     | 
| 
      
 36 
     | 
    
         
            +
              'DESCRIPTOR' : _APIRESPONSE,
         
     | 
| 
      
 37 
     | 
    
         
            +
              '__module__' : 'wandb.proto.wandb_api_pb2'
         
     | 
| 
      
 38 
     | 
    
         
            +
              # @@protoc_insertion_point(class_scope:wandb_internal.ApiResponse)
         
     | 
| 
      
 39 
     | 
    
         
            +
              })
         
     | 
| 
      
 40 
     | 
    
         
            +
            _sym_db.RegisterMessage(ApiResponse)
         
     | 
| 
      
 41 
     | 
    
         
            +
             
     | 
| 
      
 42 
     | 
    
         
            +
            ReadRunHistoryApiRequest = _reflection.GeneratedProtocolMessageType('ReadRunHistoryApiRequest', (_message.Message,), {
         
     | 
| 
      
 43 
     | 
    
         
            +
              'DESCRIPTOR' : _READRUNHISTORYAPIREQUEST,
         
     | 
| 
      
 44 
     | 
    
         
            +
              '__module__' : 'wandb.proto.wandb_api_pb2'
         
     | 
| 
      
 45 
     | 
    
         
            +
              # @@protoc_insertion_point(class_scope:wandb_internal.ReadRunHistoryApiRequest)
         
     | 
| 
      
 46 
     | 
    
         
            +
              })
         
     | 
| 
      
 47 
     | 
    
         
            +
            _sym_db.RegisterMessage(ReadRunHistoryApiRequest)
         
     | 
| 
      
 48 
     | 
    
         
            +
             
     | 
| 
      
 49 
     | 
    
         
            +
            ReadRunHistoryApiResponse = _reflection.GeneratedProtocolMessageType('ReadRunHistoryApiResponse', (_message.Message,), {
         
     | 
| 
      
 50 
     | 
    
         
            +
              'DESCRIPTOR' : _READRUNHISTORYAPIRESPONSE,
         
     | 
| 
      
 51 
     | 
    
         
            +
              '__module__' : 'wandb.proto.wandb_api_pb2'
         
     | 
| 
      
 52 
     | 
    
         
            +
              # @@protoc_insertion_point(class_scope:wandb_internal.ReadRunHistoryApiResponse)
         
     | 
| 
      
 53 
     | 
    
         
            +
              })
         
     | 
| 
      
 54 
     | 
    
         
            +
            _sym_db.RegisterMessage(ReadRunHistoryApiResponse)
         
     | 
| 
      
 55 
     | 
    
         
            +
             
     | 
| 
      
 56 
     | 
    
         
            +
            HistoryRow = _reflection.GeneratedProtocolMessageType('HistoryRow', (_message.Message,), {
         
     | 
| 
      
 57 
     | 
    
         
            +
              'DESCRIPTOR' : _HISTORYROW,
         
     | 
| 
      
 58 
     | 
    
         
            +
              '__module__' : 'wandb.proto.wandb_api_pb2'
         
     | 
| 
      
 59 
     | 
    
         
            +
              # @@protoc_insertion_point(class_scope:wandb_internal.HistoryRow)
         
     | 
| 
      
 60 
     | 
    
         
            +
              })
         
     | 
| 
      
 61 
     | 
    
         
            +
            _sym_db.RegisterMessage(HistoryRow)
         
     | 
| 
      
 62 
     | 
    
         
            +
             
     | 
| 
      
 63 
     | 
    
         
            +
            ParquetHistoryItem = _reflection.GeneratedProtocolMessageType('ParquetHistoryItem', (_message.Message,), {
         
     | 
| 
      
 64 
     | 
    
         
            +
              'DESCRIPTOR' : _PARQUETHISTORYITEM,
         
     | 
| 
      
 65 
     | 
    
         
            +
              '__module__' : 'wandb.proto.wandb_api_pb2'
         
     | 
| 
      
 66 
     | 
    
         
            +
              # @@protoc_insertion_point(class_scope:wandb_internal.ParquetHistoryItem)
         
     | 
| 
      
 67 
     | 
    
         
            +
              })
         
     | 
| 
      
 68 
     | 
    
         
            +
            _sym_db.RegisterMessage(ParquetHistoryItem)
         
     | 
| 
      
 69 
     | 
    
         
            +
             
     | 
| 
      
 70 
     | 
    
         
            +
            if _descriptor._USE_C_DESCRIPTORS == False:
         
     | 
| 
      
 71 
     | 
    
         
            +
             
     | 
| 
      
 72 
     | 
    
         
            +
              DESCRIPTOR._options = None
         
     | 
| 
      
 73 
     | 
    
         
            +
              DESCRIPTOR._serialized_options = b'Z\031core/pkg/service_go_proto'
         
     | 
| 
      
 74 
     | 
    
         
            +
              _APIREQUEST._serialized_start=77
         
     | 
| 
      
 75 
     | 
    
         
            +
              _APIREQUEST._serialized_end=170
         
     | 
| 
      
 76 
     | 
    
         
            +
              _APIRESPONSE._serialized_start=172
         
     | 
| 
      
 77 
     | 
    
         
            +
              _APIRESPONSE._serialized_end=268
         
     | 
| 
      
 78 
     | 
    
         
            +
              _READRUNHISTORYAPIREQUEST._serialized_start=271
         
     | 
| 
      
 79 
     | 
    
         
            +
              _READRUNHISTORYAPIREQUEST._serialized_end=441
         
     | 
| 
      
 80 
     | 
    
         
            +
              _READRUNHISTORYAPIRESPONSE._serialized_start=443
         
     | 
| 
      
 81 
     | 
    
         
            +
              _READRUNHISTORYAPIRESPONSE._serialized_end=543
         
     | 
| 
      
 82 
     | 
    
         
            +
              _HISTORYROW._serialized_start=545
         
     | 
| 
      
 83 
     | 
    
         
            +
              _HISTORYROW._serialized_end=616
         
     | 
| 
      
 84 
     | 
    
         
            +
              _PARQUETHISTORYITEM._serialized_start=618
         
     | 
| 
      
 85 
     | 
    
         
            +
              _PARQUETHISTORYITEM._serialized_end=671
         
     | 
| 
      
 86 
     | 
    
         
            +
            # @@protoc_insertion_point(module_scope)
         
     | 
| 
         @@ -16,9 +16,10 @@ from wandb.proto import wandb_base_pb2 as wandb_dot_proto_dot_wandb__base__pb2 
     | 
|
| 
       16 
16 
     | 
    
         
             
            from wandb.proto import wandb_internal_pb2 as wandb_dot_proto_dot_wandb__internal__pb2
         
     | 
| 
       17 
17 
     | 
    
         
             
            from wandb.proto import wandb_settings_pb2 as wandb_dot_proto_dot_wandb__settings__pb2
         
     | 
| 
       18 
18 
     | 
    
         
             
            from wandb.proto import wandb_sync_pb2 as wandb_dot_proto_dot_wandb__sync__pb2
         
     | 
| 
      
 19 
     | 
    
         
            +
            from wandb.proto import wandb_api_pb2 as wandb_dot_proto_dot_wandb__api__pb2
         
     | 
| 
       19 
20 
     | 
    
         | 
| 
       20 
21 
     | 
    
         | 
| 
       21 
     | 
    
         
            -
            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\"\ 
     | 
| 
      
 22 
     | 
    
         
            +
            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')
         
     | 
| 
       22 
23 
     | 
    
         | 
| 
       23 
24 
     | 
    
         | 
| 
       24 
25 
     | 
    
         | 
| 
         @@ -170,40 +171,40 @@ if _descriptor._USE_C_DESCRIPTORS == False: 
     | 
|
| 
       170 
171 
     | 
    
         | 
| 
       171 
172 
     | 
    
         
             
              DESCRIPTOR._options = None
         
     | 
| 
       172 
173 
     | 
    
         
             
              DESCRIPTOR._serialized_options = b'Z\031core/pkg/service_go_proto'
         
     | 
| 
       173 
     | 
    
         
            -
              _SERVERAUTHENTICATEREQUEST._serialized_start= 
     | 
| 
       174 
     | 
    
         
            -
              _SERVERAUTHENTICATEREQUEST._serialized_end= 
     | 
| 
       175 
     | 
    
         
            -
              _SERVERAUTHENTICATERESPONSE._serialized_start= 
     | 
| 
       176 
     | 
    
         
            -
              _SERVERAUTHENTICATERESPONSE._serialized_end= 
     | 
| 
       177 
     | 
    
         
            -
              _SERVERSHUTDOWNREQUEST._serialized_start= 
     | 
| 
       178 
     | 
    
         
            -
              _SERVERSHUTDOWNREQUEST._serialized_end= 
     | 
| 
       179 
     | 
    
         
            -
              _SERVERSHUTDOWNRESPONSE._serialized_start= 
     | 
| 
       180 
     | 
    
         
            -
              _SERVERSHUTDOWNRESPONSE._serialized_end= 
     | 
| 
       181 
     | 
    
         
            -
              _SERVERSTATUSREQUEST._serialized_start= 
     | 
| 
       182 
     | 
    
         
            -
              _SERVERSTATUSREQUEST._serialized_end= 
     | 
| 
       183 
     | 
    
         
            -
              _SERVERSTATUSRESPONSE._serialized_start= 
     | 
| 
       184 
     | 
    
         
            -
              _SERVERSTATUSRESPONSE._serialized_end= 
     | 
| 
       185 
     | 
    
         
            -
              _SERVERINFORMINITREQUEST._serialized_start= 
     | 
| 
       186 
     | 
    
         
            -
              _SERVERINFORMINITREQUEST._serialized_end= 
     | 
| 
       187 
     | 
    
         
            -
              _SERVERINFORMINITRESPONSE._serialized_start= 
     | 
| 
       188 
     | 
    
         
            -
              _SERVERINFORMINITRESPONSE._serialized_end= 
     | 
| 
       189 
     | 
    
         
            -
              _SERVERINFORMFINISHREQUEST._serialized_start= 
     | 
| 
       190 
     | 
    
         
            -
              _SERVERINFORMFINISHREQUEST._serialized_end= 
     | 
| 
       191 
     | 
    
         
            -
              _SERVERINFORMFINISHRESPONSE._serialized_start= 
     | 
| 
       192 
     | 
    
         
            -
              _SERVERINFORMFINISHRESPONSE._serialized_end= 
     | 
| 
       193 
     | 
    
         
            -
              _SERVERINFORMATTACHREQUEST._serialized_start= 
     | 
| 
       194 
     | 
    
         
            -
              _SERVERINFORMATTACHREQUEST._serialized_end= 
     | 
| 
       195 
     | 
    
         
            -
              _SERVERINFORMATTACHRESPONSE._serialized_start= 
     | 
| 
       196 
     | 
    
         
            -
              _SERVERINFORMATTACHRESPONSE._serialized_end= 
     | 
| 
       197 
     | 
    
         
            -
              _SERVERINFORMDETACHREQUEST._serialized_start= 
     | 
| 
       198 
     | 
    
         
            -
              _SERVERINFORMDETACHREQUEST._serialized_end= 
     | 
| 
       199 
     | 
    
         
            -
              _SERVERINFORMDETACHRESPONSE._serialized_start= 
     | 
| 
       200 
     | 
    
         
            -
              _SERVERINFORMDETACHRESPONSE._serialized_end= 
     | 
| 
       201 
     | 
    
         
            -
              _SERVERINFORMTEARDOWNREQUEST._serialized_start= 
     | 
| 
       202 
     | 
    
         
            -
              _SERVERINFORMTEARDOWNREQUEST._serialized_end= 
     | 
| 
       203 
     | 
    
         
            -
              _SERVERINFORMTEARDOWNRESPONSE._serialized_start= 
     | 
| 
       204 
     | 
    
         
            -
              _SERVERINFORMTEARDOWNRESPONSE._serialized_end= 
     | 
| 
       205 
     | 
    
         
            -
              _SERVERREQUEST._serialized_start= 
     | 
| 
       206 
     | 
    
         
            -
              _SERVERREQUEST._serialized_end= 
     | 
| 
       207 
     | 
    
         
            -
              _SERVERRESPONSE._serialized_start= 
     | 
| 
       208 
     | 
    
         
            -
              _SERVERRESPONSE._serialized_end= 
     | 
| 
      
 174 
     | 
    
         
            +
              _SERVERAUTHENTICATEREQUEST._serialized_start=207
         
     | 
| 
      
 175 
     | 
    
         
            +
              _SERVERAUTHENTICATEREQUEST._serialized_end=314
         
     | 
| 
      
 176 
     | 
    
         
            +
              _SERVERAUTHENTICATERESPONSE._serialized_start=316
         
     | 
| 
      
 177 
     | 
    
         
            +
              _SERVERAUTHENTICATERESPONSE._serialized_end=435
         
     | 
| 
      
 178 
     | 
    
         
            +
              _SERVERSHUTDOWNREQUEST._serialized_start=437
         
     | 
| 
      
 179 
     | 
    
         
            +
              _SERVERSHUTDOWNREQUEST._serialized_end=505
         
     | 
| 
      
 180 
     | 
    
         
            +
              _SERVERSHUTDOWNRESPONSE._serialized_start=507
         
     | 
| 
      
 181 
     | 
    
         
            +
              _SERVERSHUTDOWNRESPONSE._serialized_end=531
         
     | 
| 
      
 182 
     | 
    
         
            +
              _SERVERSTATUSREQUEST._serialized_start=533
         
     | 
| 
      
 183 
     | 
    
         
            +
              _SERVERSTATUSREQUEST._serialized_end=599
         
     | 
| 
      
 184 
     | 
    
         
            +
              _SERVERSTATUSRESPONSE._serialized_start=601
         
     | 
| 
      
 185 
     | 
    
         
            +
              _SERVERSTATUSRESPONSE._serialized_end=623
         
     | 
| 
      
 186 
     | 
    
         
            +
              _SERVERINFORMINITREQUEST._serialized_start=625
         
     | 
| 
      
 187 
     | 
    
         
            +
              _SERVERINFORMINITREQUEST._serialized_end=739
         
     | 
| 
      
 188 
     | 
    
         
            +
              _SERVERINFORMINITRESPONSE._serialized_start=741
         
     | 
| 
      
 189 
     | 
    
         
            +
              _SERVERINFORMINITRESPONSE._serialized_end=767
         
     | 
| 
      
 190 
     | 
    
         
            +
              _SERVERINFORMFINISHREQUEST._serialized_start=769
         
     | 
| 
      
 191 
     | 
    
         
            +
              _SERVERINFORMFINISHREQUEST._serialized_end=841
         
     | 
| 
      
 192 
     | 
    
         
            +
              _SERVERINFORMFINISHRESPONSE._serialized_start=843
         
     | 
| 
      
 193 
     | 
    
         
            +
              _SERVERINFORMFINISHRESPONSE._serialized_end=871
         
     | 
| 
      
 194 
     | 
    
         
            +
              _SERVERINFORMATTACHREQUEST._serialized_start=873
         
     | 
| 
      
 195 
     | 
    
         
            +
              _SERVERINFORMATTACHREQUEST._serialized_end=945
         
     | 
| 
      
 196 
     | 
    
         
            +
              _SERVERINFORMATTACHRESPONSE._serialized_start=947
         
     | 
| 
      
 197 
     | 
    
         
            +
              _SERVERINFORMATTACHRESPONSE._serialized_end=1064
         
     | 
| 
      
 198 
     | 
    
         
            +
              _SERVERINFORMDETACHREQUEST._serialized_start=1066
         
     | 
| 
      
 199 
     | 
    
         
            +
              _SERVERINFORMDETACHREQUEST._serialized_end=1138
         
     | 
| 
      
 200 
     | 
    
         
            +
              _SERVERINFORMDETACHRESPONSE._serialized_start=1140
         
     | 
| 
      
 201 
     | 
    
         
            +
              _SERVERINFORMDETACHRESPONSE._serialized_end=1168
         
     | 
| 
      
 202 
     | 
    
         
            +
              _SERVERINFORMTEARDOWNREQUEST._serialized_start=1170
         
     | 
| 
      
 203 
     | 
    
         
            +
              _SERVERINFORMTEARDOWNREQUEST._serialized_end=1263
         
     | 
| 
      
 204 
     | 
    
         
            +
              _SERVERINFORMTEARDOWNRESPONSE._serialized_start=1265
         
     | 
| 
      
 205 
     | 
    
         
            +
              _SERVERINFORMTEARDOWNRESPONSE._serialized_end=1295
         
     | 
| 
      
 206 
     | 
    
         
            +
              _SERVERREQUEST._serialized_start=1298
         
     | 
| 
      
 207 
     | 
    
         
            +
              _SERVERREQUEST._serialized_end=2099
         
     | 
| 
      
 208 
     | 
    
         
            +
              _SERVERRESPONSE._serialized_start=2102
         
     | 
| 
      
 209 
     | 
    
         
            +
              _SERVERRESPONSE._serialized_end=2947
         
     | 
| 
       209 
210 
     | 
    
         
             
            # @@protoc_insertion_point(module_scope)
         
     | 
| 
         @@ -15,7 +15,7 @@ _sym_db = _symbol_database.Default() 
     | 
|
| 
       15 
15 
     | 
    
         
             
            from google.protobuf import wrappers_pb2 as google_dot_protobuf_dot_wrappers__pb2
         
     | 
| 
       16 
16 
     | 
    
         | 
| 
       17 
17 
     | 
    
         | 
| 
       18 
     | 
    
         
            -
            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\"\x99N\n\x08Settings\x12-\n\x07\x61pi_key\x18\x37 \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12:\n\x13identity_token_file\x18\xaa\x01 \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12\x37\n\x10\x63redentials_file\x18\xab\x01 \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12\x39\n\x14insecure_disable_ssl\x18\xb9\x01 \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12,\n\x08_offline\x18\x1e \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12*\n\x06x_sync\x18\x1f \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12\x30\n\tsync_file\x18\x86\x01 \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12,\n\x07_shared\x18\xa2\x01 \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12,\n\x06run_id\x18k \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12-\n\x07run_url\x18q \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12-\n\x07project\x18\x61 \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12,\n\x06\x65ntity\x18\x45 \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12\x33\n\x0corganization\x18\xbc\x01 \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12\x32\n\x0cx_start_time\x18) \x01(\x0b\x32\x1c.google.protobuf.DoubleValue\x12.\n\x08root_dir\x18i \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12-\n\x07log_dir\x18U \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12\x32\n\x0clog_internal\x18V \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12/\n\tfiles_dir\x18\x46 \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12\x32\n\x0bx_files_dir\x18\xb4\x01 \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12\x35\n\x0cignore_globs\x18N \x01(\x0b\x32\x1f.wandb_internal.ListStringValue\x12.\n\x08\x62\x61se_url\x18\x39 \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12=\n\x17x_file_stream_max_bytes\x18\xac\x01 \x01(\x0b\x32\x1b.google.protobuf.Int32Value\x12\x46\n\x1fx_file_stream_transmit_interval\x18\xaf\x01 \x01(\x0b\x32\x1c.google.protobuf.DoubleValue\x12\x45\n\x14x_extra_http_headers\x18\x0e \x01(\x0b\x32\'.wandb_internal.MapStringKeyStringValue\x12=\n\x17x_file_stream_retry_max\x18\x93\x01 \x01(\x0b\x32\x1b.google.protobuf.Int32Value\x12K\n$x_file_stream_retry_wait_min_seconds\x18\x94\x01 \x01(\x0b\x32\x1c.google.protobuf.DoubleValue\x12K\n$x_file_stream_retry_wait_max_seconds\x18\x95\x01 \x01(\x0b\x32\x1c.google.protobuf.DoubleValue\x12\x43\n\x1dx_file_stream_timeout_seconds\x18\x0f \x01(\x0b\x32\x1c.google.protobuf.DoubleValue\x12\x42\n\x1cx_file_stream_max_line_bytes\x18\xb2\x01 \x01(\x0b\x32\x1b.google.protobuf.Int32Value\x12?\n\x19x_file_transfer_retry_max\x18\x96\x01 \x01(\x0b\x32\x1b.google.protobuf.Int32Value\x12M\n&x_file_transfer_retry_wait_min_seconds\x18\x97\x01 \x01(\x0b\x32\x1c.google.protobuf.DoubleValue\x12M\n&x_file_transfer_retry_wait_max_seconds\x18\x98\x01 \x01(\x0b\x32\x1c.google.protobuf.DoubleValue\x12\x46\n\x1fx_file_transfer_timeout_seconds\x18\x99\x01 \x01(\x0b\x32\x1c.google.protobuf.DoubleValue\x12\x39\n\x13x_graphql_retry_max\x18\x9a\x01 \x01(\x0b\x32\x1b.google.protobuf.Int32Value\x12G\n x_graphql_retry_wait_min_seconds\x18\x9b\x01 \x01(\x0b\x32\x1c.google.protobuf.DoubleValue\x12G\n x_graphql_retry_wait_max_seconds\x18\x9c\x01 \x01(\x0b\x32\x1c.google.protobuf.DoubleValue\x12@\n\x19x_graphql_timeout_seconds\x18\x9d\x01 \x01(\x0b\x32\x1c.google.protobuf.DoubleValue\x12\x31\n\nhttp_proxy\x18\xa8\x01 \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12\x32\n\x0bhttps_proxy\x18\xa9\x01 \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12;\n\tx_proxies\x18\xc8\x01 \x01(\x0b\x32\'.wandb_internal.MapStringKeyStringValue\x12-\n\x07program\x18_ \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12\x35\n\x0fprogram_relpath\x18` \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12\x37\n\x10_code_path_local\x18\xa3\x01 \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12\x36\n\x0fprogram_abspath\x18\x9f\x01 \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12.\n\x05_args\x18\x01 \x01(\x0b\x32\x1f.wandb_internal.ListStringValue\x12)\n\x03_os\x18  \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12,\n\x06\x64ocker\x18\x43 \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12\x32\n\x0cx_executable\x18\r \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12-\n\x07_python\x18\" \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12\x30\n\tcolab_url\x18\xa0\x01 \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12*\n\x04host\x18M \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12/\n\x08username\x18\x8d\x01 \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12+\n\x05\x65mail\x18\x44 \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12,\n\x06resume\x18\x66 \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12/\n\x0bresume_from\x18\xa7\x01 \x01(\x0b\x32\x19.wandb_internal.RunMoment\x12-\n\tfork_from\x18\xa4\x01 \x01(\x0b\x32\x19.wandb_internal.RunMoment\x12\x38\n\x14\x64isable_job_creation\x18\x41 \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12\x30\n\tsweep_url\x18\x83\x01 \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12;\n\x16x_disable_update_check\x18\xa5\x01 \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12\x32\n\x0ex_disable_meta\x18\x07 \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12-\n\tsave_code\x18s \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12/\n\x0b\x64isable_git\x18? \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12;\n\x16x_disable_machine_info\x18\x9e\x01 \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12\x33\n\x0fx_disable_stats\x18\n \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12\x39\n\x13x_stats_buffer_size\x18\xa1\x01 \x01(\x0b\x32\x1b.google.protobuf.Int32Value\x12@\n\x19x_stats_sampling_interval\x18\xae\x01 \x01(\x0b\x32\x1c.google.protobuf.DoubleValue\x12\x30\n\x0bx_stats_pid\x18* \x01(\x0b\x32\x1b.google.protobuf.Int32Value\x12<\n\x12x_stats_disk_paths\x18\x92\x01 \x01(\x0b\x32\x1f.wandb_internal.ListStringValue\x12H\n\"x_stats_neuron_monitor_config_path\x18. \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12<\n\x15x_stats_dcgm_exporter\x18\xbb\x01 \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12O\n\x1ex_stats_open_metrics_endpoints\x18/ \x01(\x0b\x32\'.wandb_internal.MapStringKeyStringValue\x12H\n\x1cx_stats_open_metrics_filters\x18\x30 \x01(\x0b\x32\".wandb_internal.OpenMetricsFilters\x12S\n!x_stats_open_metrics_http_headers\x18\xb8\x01 \x01(\x0b\x32\'.wandb_internal.MapStringKeyStringValue\x12=\n\x16x_stats_gpu_device_ids\x18\xba\x01 \x01(\x0b\x32\x1c.wandb_internal.ListIntValue\x12\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[\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\x01\x42\x1bZ\x19\x63ore/pkg/service_go_protob\x06proto3')
         
     | 
| 
      
 18 
     | 
    
         
            +
            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')
         
     | 
| 
       19 
19 
     | 
    
         | 
| 
       20 
20 
     | 
    
         | 
| 
       21 
21 
     | 
    
         | 
| 
         @@ -118,5 +118,5 @@ if _descriptor._USE_C_DESCRIPTORS == False: 
     | 
|
| 
       118 
118 
     | 
    
         
             
              _RUNMOMENT._serialized_start=653
         
     | 
| 
       119 
119 
     | 
    
         
             
              _RUNMOMENT._serialized_end=708
         
     | 
| 
       120 
120 
     | 
    
         
             
              _SETTINGS._serialized_start=711
         
     | 
| 
       121 
     | 
    
         
            -
              _SETTINGS._serialized_end= 
     | 
| 
      
 121 
     | 
    
         
            +
              _SETTINGS._serialized_end=10761
         
     | 
| 
       122 
122 
     | 
    
         
             
            # @@protoc_insertion_point(module_scope)
         
     | 
    
        wandb/proto/v3/wandb_sync_pb2.py
    CHANGED
    
    | 
         @@ -16,7 +16,7 @@ from wandb.proto import wandb_internal_pb2 as wandb_dot_proto_dot_wandb__interna 
     | 
|
| 
       16 
16 
     | 
    
         
             
            from wandb.proto import wandb_settings_pb2 as wandb_dot_proto_dot_wandb__settings__pb2
         
     | 
| 
       17 
17 
     | 
    
         | 
| 
       18 
18 
     | 
    
         | 
| 
       19 
     | 
    
         
            -
            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\"\ 
     | 
| 
      
 19 
     | 
    
         
            +
            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')
         
     | 
| 
       20 
20 
     | 
    
         | 
| 
       21 
21 
     | 
    
         | 
| 
       22 
22 
     | 
    
         | 
| 
         @@ -26,6 +26,7 @@ _SERVERSYNCREQUEST = DESCRIPTOR.message_types_by_name['ServerSyncRequest'] 
     | 
|
| 
       26 
26 
     | 
    
         
             
            _SERVERSYNCRESPONSE = DESCRIPTOR.message_types_by_name['ServerSyncResponse']
         
     | 
| 
       27 
27 
     | 
    
         
             
            _SERVERSYNCSTATUSREQUEST = DESCRIPTOR.message_types_by_name['ServerSyncStatusRequest']
         
     | 
| 
       28 
28 
     | 
    
         
             
            _SERVERSYNCSTATUSRESPONSE = DESCRIPTOR.message_types_by_name['ServerSyncStatusResponse']
         
     | 
| 
      
 29 
     | 
    
         
            +
            _SERVERSYNCSTATUSRESPONSE_STATSENTRY = _SERVERSYNCSTATUSRESPONSE.nested_types_by_name['StatsEntry']
         
     | 
| 
       29 
30 
     | 
    
         
             
            _SERVERSYNCMESSAGE = DESCRIPTOR.message_types_by_name['ServerSyncMessage']
         
     | 
| 
       30 
31 
     | 
    
         
             
            _SERVERSYNCMESSAGE_SEVERITY = _SERVERSYNCMESSAGE.enum_types_by_name['Severity']
         
     | 
| 
       31 
32 
     | 
    
         
             
            ServerInitSyncRequest = _reflection.GeneratedProtocolMessageType('ServerInitSyncRequest', (_message.Message,), {
         
     | 
| 
         @@ -64,11 +65,19 @@ ServerSyncStatusRequest = _reflection.GeneratedProtocolMessageType('ServerSyncSt 
     | 
|
| 
       64 
65 
     | 
    
         
             
            _sym_db.RegisterMessage(ServerSyncStatusRequest)
         
     | 
| 
       65 
66 
     | 
    
         | 
| 
       66 
67 
     | 
    
         
             
            ServerSyncStatusResponse = _reflection.GeneratedProtocolMessageType('ServerSyncStatusResponse', (_message.Message,), {
         
     | 
| 
      
 68 
     | 
    
         
            +
             
     | 
| 
      
 69 
     | 
    
         
            +
              'StatsEntry' : _reflection.GeneratedProtocolMessageType('StatsEntry', (_message.Message,), {
         
     | 
| 
      
 70 
     | 
    
         
            +
                'DESCRIPTOR' : _SERVERSYNCSTATUSRESPONSE_STATSENTRY,
         
     | 
| 
      
 71 
     | 
    
         
            +
                '__module__' : 'wandb.proto.wandb_sync_pb2'
         
     | 
| 
      
 72 
     | 
    
         
            +
                # @@protoc_insertion_point(class_scope:wandb_internal.ServerSyncStatusResponse.StatsEntry)
         
     | 
| 
      
 73 
     | 
    
         
            +
                })
         
     | 
| 
      
 74 
     | 
    
         
            +
              ,
         
     | 
| 
       67 
75 
     | 
    
         
             
              'DESCRIPTOR' : _SERVERSYNCSTATUSRESPONSE,
         
     | 
| 
       68 
76 
     | 
    
         
             
              '__module__' : 'wandb.proto.wandb_sync_pb2'
         
     | 
| 
       69 
77 
     | 
    
         
             
              # @@protoc_insertion_point(class_scope:wandb_internal.ServerSyncStatusResponse)
         
     | 
| 
       70 
78 
     | 
    
         
             
              })
         
     | 
| 
       71 
79 
     | 
    
         
             
            _sym_db.RegisterMessage(ServerSyncStatusResponse)
         
     | 
| 
      
 80 
     | 
    
         
            +
            _sym_db.RegisterMessage(ServerSyncStatusResponse.StatsEntry)
         
     | 
| 
       72 
81 
     | 
    
         | 
| 
       73 
82 
     | 
    
         
             
            ServerSyncMessage = _reflection.GeneratedProtocolMessageType('ServerSyncMessage', (_message.Message,), {
         
     | 
| 
       74 
83 
     | 
    
         
             
              'DESCRIPTOR' : _SERVERSYNCMESSAGE,
         
     | 
| 
         @@ -81,6 +90,8 @@ if _descriptor._USE_C_DESCRIPTORS == False: 
     | 
|
| 
       81 
90 
     | 
    
         | 
| 
       82 
91 
     | 
    
         
             
              DESCRIPTOR._options = None
         
     | 
| 
       83 
92 
     | 
    
         
             
              DESCRIPTOR._serialized_options = b'Z\031core/pkg/service_go_proto'
         
     | 
| 
      
 93 
     | 
    
         
            +
              _SERVERSYNCSTATUSRESPONSE_STATSENTRY._options = None
         
     | 
| 
      
 94 
     | 
    
         
            +
              _SERVERSYNCSTATUSRESPONSE_STATSENTRY._serialized_options = b'8\001'
         
     | 
| 
       84 
95 
     | 
    
         
             
              _SERVERINITSYNCREQUEST._serialized_start=116
         
     | 
| 
       85 
96 
     | 
    
         
             
              _SERVERINITSYNCREQUEST._serialized_end=197
         
     | 
| 
       86 
97 
     | 
    
         
             
              _SERVERINITSYNCRESPONSE._serialized_start=199
         
     | 
| 
         @@ -92,9 +103,11 @@ if _descriptor._USE_C_DESCRIPTORS == False: 
     | 
|
| 
       92 
103 
     | 
    
         
             
              _SERVERSYNCSTATUSREQUEST._serialized_start=366
         
     | 
| 
       93 
104 
     | 
    
         
             
              _SERVERSYNCSTATUSREQUEST._serialized_end=403
         
     | 
| 
       94 
105 
     | 
    
         
             
              _SERVERSYNCSTATUSRESPONSE._serialized_start=406
         
     | 
| 
       95 
     | 
    
         
            -
              _SERVERSYNCSTATUSRESPONSE._serialized_end= 
     | 
| 
       96 
     | 
    
         
            -
               
     | 
| 
       97 
     | 
    
         
            -
               
     | 
| 
       98 
     | 
    
         
            -
               
     | 
| 
       99 
     | 
    
         
            -
               
     | 
| 
      
 106 
     | 
    
         
            +
              _SERVERSYNCSTATUSRESPONSE._serialized_end=635
         
     | 
| 
      
 107 
     | 
    
         
            +
              _SERVERSYNCSTATUSRESPONSE_STATSENTRY._serialized_start=559
         
     | 
| 
      
 108 
     | 
    
         
            +
              _SERVERSYNCSTATUSRESPONSE_STATSENTRY._serialized_end=635
         
     | 
| 
      
 109 
     | 
    
         
            +
              _SERVERSYNCMESSAGE._serialized_start=638
         
     | 
| 
      
 110 
     | 
    
         
            +
              _SERVERSYNCMESSAGE._serialized_end=808
         
     | 
| 
      
 111 
     | 
    
         
            +
              _SERVERSYNCMESSAGE_SEVERITY._serialized_start=738
         
     | 
| 
      
 112 
     | 
    
         
            +
              _SERVERSYNCMESSAGE_SEVERITY._serialized_end=808
         
     | 
| 
       100 
113 
     | 
    
         
             
            # @@protoc_insertion_point(module_scope)
         
     |