wandb 0.20.1__py3-none-win32.whl → 0.20.2rc20250616__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.
Files changed (72) hide show
  1. wandb/__init__.py +3 -6
  2. wandb/__init__.pyi +1 -1
  3. wandb/analytics/sentry.py +2 -2
  4. wandb/apis/importers/internals/internal.py +0 -3
  5. wandb/apis/public/api.py +2 -2
  6. wandb/apis/public/registries/{utils.py → _utils.py} +12 -12
  7. wandb/apis/public/registries/registries_search.py +2 -2
  8. wandb/apis/public/registries/registry.py +19 -18
  9. wandb/bin/gpu_stats.exe +0 -0
  10. wandb/bin/wandb-core +0 -0
  11. wandb/cli/beta.py +1 -7
  12. wandb/cli/cli.py +0 -30
  13. wandb/env.py +0 -6
  14. wandb/proto/v3/wandb_settings_pb2.py +2 -2
  15. wandb/proto/v3/wandb_telemetry_pb2.py +10 -10
  16. wandb/proto/v4/wandb_settings_pb2.py +2 -2
  17. wandb/proto/v4/wandb_telemetry_pb2.py +10 -10
  18. wandb/proto/v5/wandb_settings_pb2.py +2 -2
  19. wandb/proto/v5/wandb_telemetry_pb2.py +10 -10
  20. wandb/proto/v6/wandb_settings_pb2.py +2 -2
  21. wandb/proto/v6/wandb_telemetry_pb2.py +10 -10
  22. wandb/sdk/artifacts/storage_handlers/s3_handler.py +42 -1
  23. wandb/sdk/backend/backend.py +1 -1
  24. wandb/sdk/internal/handler.py +1 -69
  25. wandb/sdk/lib/printer.py +6 -7
  26. wandb/sdk/lib/progress.py +1 -3
  27. wandb/sdk/lib/service/ipc_support.py +13 -0
  28. wandb/sdk/lib/{service_connection.py → service/service_connection.py} +20 -56
  29. wandb/sdk/lib/service/service_port_file.py +105 -0
  30. wandb/sdk/lib/service/service_process.py +111 -0
  31. wandb/sdk/lib/service/service_token.py +164 -0
  32. wandb/sdk/lib/sock_client.py +8 -12
  33. wandb/sdk/wandb_init.py +0 -3
  34. wandb/sdk/wandb_require.py +9 -20
  35. wandb/sdk/wandb_run.py +0 -24
  36. wandb/sdk/wandb_settings.py +0 -9
  37. wandb/sdk/wandb_setup.py +2 -13
  38. {wandb-0.20.1.dist-info → wandb-0.20.2rc20250616.dist-info}/METADATA +1 -3
  39. {wandb-0.20.1.dist-info → wandb-0.20.2rc20250616.dist-info}/RECORD +42 -68
  40. wandb/sdk/internal/flow_control.py +0 -263
  41. wandb/sdk/internal/internal.py +0 -401
  42. wandb/sdk/internal/internal_util.py +0 -97
  43. wandb/sdk/internal/system/__init__.py +0 -0
  44. wandb/sdk/internal/system/assets/__init__.py +0 -25
  45. wandb/sdk/internal/system/assets/aggregators.py +0 -31
  46. wandb/sdk/internal/system/assets/asset_registry.py +0 -20
  47. wandb/sdk/internal/system/assets/cpu.py +0 -163
  48. wandb/sdk/internal/system/assets/disk.py +0 -210
  49. wandb/sdk/internal/system/assets/gpu.py +0 -416
  50. wandb/sdk/internal/system/assets/gpu_amd.py +0 -233
  51. wandb/sdk/internal/system/assets/interfaces.py +0 -205
  52. wandb/sdk/internal/system/assets/ipu.py +0 -177
  53. wandb/sdk/internal/system/assets/memory.py +0 -166
  54. wandb/sdk/internal/system/assets/network.py +0 -125
  55. wandb/sdk/internal/system/assets/open_metrics.py +0 -293
  56. wandb/sdk/internal/system/assets/tpu.py +0 -154
  57. wandb/sdk/internal/system/assets/trainium.py +0 -393
  58. wandb/sdk/internal/system/env_probe_helpers.py +0 -13
  59. wandb/sdk/internal/system/system_info.py +0 -248
  60. wandb/sdk/internal/system/system_monitor.py +0 -224
  61. wandb/sdk/internal/writer.py +0 -204
  62. wandb/sdk/lib/service_token.py +0 -93
  63. wandb/sdk/service/__init__.py +0 -0
  64. wandb/sdk/service/_startup_debug.py +0 -22
  65. wandb/sdk/service/port_file.py +0 -53
  66. wandb/sdk/service/server.py +0 -107
  67. wandb/sdk/service/server_sock.py +0 -286
  68. wandb/sdk/service/service.py +0 -252
  69. wandb/sdk/service/streams.py +0 -425
  70. {wandb-0.20.1.dist-info → wandb-0.20.2rc20250616.dist-info}/WHEEL +0 -0
  71. {wandb-0.20.1.dist-info → wandb-0.20.2rc20250616.dist-info}/entry_points.txt +0 -0
  72. {wandb-0.20.1.dist-info → wandb-0.20.2rc20250616.dist-info}/licenses/LICENSE +0 -0
@@ -11,13 +11,10 @@ Example:
11
11
 
12
12
  from __future__ import annotations
13
13
 
14
- import os
15
14
  from typing import Iterable
16
15
 
17
16
  import wandb
18
- from wandb.env import _REQUIRE_LEGACY_SERVICE
19
17
  from wandb.errors import UnsupportedError
20
- from wandb.sdk import wandb_run
21
18
 
22
19
 
23
20
  class _Requires:
@@ -33,22 +30,21 @@ class _Requires:
33
30
  def require_require(self) -> None:
34
31
  pass
35
32
 
36
- def _require_service(self) -> None:
37
- wandb.teardown = wandb._teardown # type: ignore
38
- wandb.attach = wandb._attach # type: ignore
39
- wandb_run.Run.detach = wandb_run.Run._detach # type: ignore
40
-
41
33
  def require_service(self) -> None:
42
- self._require_service()
34
+ # Legacy no-op kept solely for backward compatibility:
35
+ # some integrations (e.g. PyTorch Lightning) still call
36
+ # `wandb.require('service')`, which routes here.
37
+ wandb.termwarn(
38
+ "`wandb.require('service')` is a no-op as it is now the default behavior."
39
+ )
43
40
 
44
41
  def require_core(self) -> None:
42
+ # Legacy no-op kept solely for backward compatibility:
43
+ # many public codebases still call `wandb.require('core')`.
45
44
  wandb.termwarn(
46
- "`wandb.require('core')` is redundant as it is now the default behavior."
45
+ "`wandb.require('core')` is a no-op as it is now the default behavior."
47
46
  )
48
47
 
49
- def require_legacy_service(self) -> None:
50
- os.environ[_REQUIRE_LEGACY_SERVICE] = "true"
51
-
52
48
  def apply(self) -> None:
53
49
  """Call require_* method for supported features."""
54
50
  last_message: str = ""
@@ -91,10 +87,3 @@ def require(
91
87
 
92
88
  f = _Requires(features=features)
93
89
  f.apply()
94
-
95
-
96
- def _import_module_hook() -> None:
97
- """On wandb import, setup anything needed based on parent process require calls."""
98
- # TODO: optimize by caching which pids this has been done for or use real import hooks
99
- # TODO: make this more generic, but for now this works
100
- require("service")
wandb/sdk/wandb_run.py CHANGED
@@ -2922,9 +2922,6 @@ class Run:
2922
2922
  """
2923
2923
  wandb.sdk._unwatch(self, models=models)
2924
2924
 
2925
- def _detach(self) -> None:
2926
- pass
2927
-
2928
2925
  @_log_to_run
2929
2926
  @_raise_if_finished
2930
2927
  @_attach
@@ -3918,10 +3915,6 @@ class Run:
3918
3915
  printer=printer,
3919
3916
  )
3920
3917
  Run._footer_log_dir_info(settings=settings, printer=printer)
3921
- Run._footer_notify_wandb_core(
3922
- settings=settings,
3923
- printer=printer,
3924
- )
3925
3918
  Run._footer_internal_messages(
3926
3919
  internal_messages_response=internal_messages_response,
3927
3920
  settings=settings,
@@ -4068,23 +4061,6 @@ class Run:
4068
4061
  for message in internal_messages_response.messages.warning:
4069
4062
  printer.display(message, level="warn")
4070
4063
 
4071
- @staticmethod
4072
- def _footer_notify_wandb_core(
4073
- *,
4074
- settings: Settings,
4075
- printer: printer.Printer,
4076
- ) -> None:
4077
- """Prints a message advertising the upcoming core release."""
4078
- if settings.quiet or not settings.x_require_legacy_service:
4079
- return
4080
-
4081
- printer.display(
4082
- "The legacy backend is deprecated. In future versions, `wandb-core` will become "
4083
- "the sole backend service, and the `wandb.require('legacy-service')` flag will be removed. "
4084
- f"For more information, visit {url_registry.url('wandb-core')}",
4085
- level="warn",
4086
- )
4087
-
4088
4064
 
4089
4065
  # We define this outside of the run context to support restoring before init
4090
4066
  def restore(
@@ -528,12 +528,6 @@ class Settings(BaseModel, validate_assignment=True):
528
528
  x_disable_meta: bool = False
529
529
  """Flag to disable the collection of system metadata."""
530
530
 
531
- x_disable_setproctitle: bool = False
532
- """Flag to disable using setproctitle for the internal process in the legacy service.
533
-
534
- This is deprecated and will be removed in future versions.
535
- """
536
-
537
531
  x_disable_stats: bool = False
538
532
  """Flag to disable the collection of system metrics."""
539
533
 
@@ -674,9 +668,6 @@ class Settings(BaseModel, validate_assignment=True):
674
668
  x_runqueue_item_id: Optional[str] = None
675
669
  """ID of the Launch run queue item being processed."""
676
670
 
677
- x_require_legacy_service: bool = False
678
- """Force the use of legacy wandb service."""
679
-
680
671
  x_save_requirements: bool = True
681
672
  """Flag to save the requirements file."""
682
673
 
wandb/sdk/wandb_setup.py CHANGED
@@ -28,7 +28,6 @@ import logging
28
28
  import os
29
29
  import pathlib
30
30
  import sys
31
- import threading
32
31
  from typing import TYPE_CHECKING, Any, Union
33
32
 
34
33
  import wandb
@@ -41,7 +40,7 @@ from .lib import config_util, server
41
40
 
42
41
  if TYPE_CHECKING:
43
42
  from wandb.sdk import wandb_run
44
- from wandb.sdk.lib.service_connection import ServiceConnection
43
+ from wandb.sdk.lib.service.service_connection import ServiceConnection
45
44
  from wandb.sdk.wandb_settings import Settings
46
45
 
47
46
 
@@ -113,7 +112,6 @@ class _WandbSetup:
113
112
 
114
113
  wandb.termsetup(self._settings, None)
115
114
 
116
- self._check()
117
115
  self._setup()
118
116
 
119
117
  def add_active_run(self, run: wandb_run.Run) -> None:
@@ -284,15 +282,6 @@ class _WandbSetup:
284
282
 
285
283
  return user_settings
286
284
 
287
- def _check(self) -> None:
288
- if hasattr(threading, "main_thread"):
289
- if threading.current_thread() is not threading.main_thread():
290
- pass
291
- elif threading.current_thread().name != "MainThread":
292
- wandb.termwarn(f"bad thread2: {threading.current_thread().name}")
293
- if getattr(sys, "frozen", False):
294
- wandb.termwarn("frozen, could be trouble")
295
-
296
285
  def _setup(self) -> None:
297
286
  sweep_path = self._settings.sweep_param_path
298
287
  if sweep_path:
@@ -331,7 +320,7 @@ class _WandbSetup:
331
320
  if self._connection:
332
321
  return self._connection
333
322
 
334
- from wandb.sdk.lib import service_connection
323
+ from wandb.sdk.lib.service import service_connection
335
324
 
336
325
  self._connection = service_connection.connect_to_service(self._settings)
337
326
  return self._connection
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: wandb
3
- Version: 0.20.1
3
+ Version: 0.20.2rc20250616
4
4
  Summary: A CLI and library for interacting with the Weights & Biases API.
5
5
  Project-URL: Source, https://github.com/wandb/wandb
6
6
  Project-URL: Bug Reports, https://github.com/wandb/wandb/issues
@@ -56,12 +56,10 @@ Requires-Dist: protobuf!=4.21.0,!=5.28.0,<7,>=3.12.0; python_version < '3.9' and
56
56
  Requires-Dist: protobuf!=4.21.0,!=5.28.0,<7,>=3.15.0; python_version == '3.9' and sys_platform == 'linux'
57
57
  Requires-Dist: protobuf!=4.21.0,!=5.28.0,<7,>=3.19.0; python_version > '3.9' and sys_platform == 'linux'
58
58
  Requires-Dist: protobuf!=4.21.0,!=5.28.0,<7,>=3.19.0; sys_platform != 'linux'
59
- Requires-Dist: psutil>=5.0.0
60
59
  Requires-Dist: pydantic<3
61
60
  Requires-Dist: pyyaml
62
61
  Requires-Dist: requests<3,>=2.0.0
63
62
  Requires-Dist: sentry-sdk>=2.0.0
64
- Requires-Dist: setproctitle
65
63
  Requires-Dist: typing-extensions<5,>=4.8
66
64
  Provides-Extra: aws
67
65
  Requires-Dist: boto3; extra == 'aws'
@@ -1,10 +1,10 @@
1
1
  package_readme.md,sha256=XGlaq8rMFcoBb21rCr2d5qeSM79ZI4WslLmXqRimTGQ,4395
2
- wandb/__init__.py,sha256=vvYTPs3lKelQTsFwnHU_3Axn6V_EqLAq7IvadREhS8Y,7321
3
- wandb/__init__.pyi,sha256=AnFHXNQ-qSVPWRju2psy8Kl9n7iX8tUSioHEhWAPujQ,49375
2
+ wandb/__init__.py,sha256=cHo8QWXKfNrK3C9o3OWsja5KhogIhTdg4LFYtozPQS4,7240
3
+ wandb/__init__.pyi,sha256=mEXz-8KpjHqDOHEL3QdxrBWi5FI77Z5BztoN6JuXHG4,49385
4
4
  wandb/__main__.py,sha256=uHY6OxHT6RtTH34zC8_UC1GsCTkndgbdsHXv-t7dOMI,67
5
5
  wandb/_iterutils.py,sha256=_ZUvfdQ8YeKrT_0HKaAKjkVyLHQdTYRcCh0l-zGxTMM,2465
6
6
  wandb/data_types.py,sha256=DdCkf7Dh_j86Q74FWzh3M20EW_hzKpNagexjo03qv-A,2349
7
- wandb/env.py,sha256=ALuLe1rqSoCWVhTb7zQ7vkUXi3-Ssw-EqXuBBqLdItI,14672
7
+ wandb/env.py,sha256=iwzZltmvir8fajkVAC-O7-0n670e4fuWq1rObmcyEQM,14389
8
8
  wandb/jupyter.py,sha256=fzASX41VyW85pLcccxuN6IbT71ZYwGFvB_6Ke1h7IvY,17888
9
9
  wandb/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
10
10
  wandb/sklearn.py,sha256=8wlo8mLyekq6yRZBgluzPj4J-RP3wkLaEWm0yh7gvWw,838
@@ -20,7 +20,7 @@ wandb/_pydantic/v1_compat.py,sha256=9KAgMrpiqcPIUApquBLflptOv8Q3JETYXUb1wp6PTR4,
20
20
  wandb/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
21
21
  wandb/agents/pyagent.py,sha256=nngeT968q22V7ciQ8UZrbHx9EvM39sRaSYWitRprwNs,13528
22
22
  wandb/analytics/__init__.py,sha256=ntvkloUY6ZO8irNqA4xi06Q8IC_6pu1VB2_1EKORczc,53
23
- wandb/analytics/sentry.py,sha256=lieafd1fb7g5YmkF5X4qe-shCUg-3a-kor57IQ1-Lnw,8632
23
+ wandb/analytics/sentry.py,sha256=NRZ63veZlfjrYCItNhn1T3BEbgr-mMqKd3cCYVWsSK4,8629
24
24
  wandb/apis/__init__.py,sha256=DNAnd_UEdahhjkTjWPlJoYNxJX026W3K0qGqkbpgYno,1386
25
25
  wandb/apis/attrs.py,sha256=1R5FiwbLOg9i27su5MtSAr9nehdS-6s5PxADaVhRiMw,1486
26
26
  wandb/apis/internal.py,sha256=9WOwabh2zA75oiV-SGlx4AcikqiraAs8QRq8ZvmQu1Y,7858
@@ -30,11 +30,11 @@ wandb/apis/importers/__init__.py,sha256=GQCWmQEjSZ9eCUjlth3v9tQcjOJyjyEY7gC3BPN7
30
30
  wandb/apis/importers/mlflow.py,sha256=SFfBtAanxy0Hlph1BcnwKPeIvJcX8qCWS6IckfhlT0U,8510
31
31
  wandb/apis/importers/validation.py,sha256=9X5aDFHZE5aBD_YXTiPmjfTC2V7HYJMRJ_xGT-n6wDk,3291
32
32
  wandb/apis/importers/wandb.py,sha256=8_hLoLd144gF44akCUWSJmdYrRo4rgDt40X5pHlCS3g,56139
33
- wandb/apis/importers/internals/internal.py,sha256=0HPjKvOfRZwdLKKhn_rdVKI5BA3D2S12OsGCcVcQdu8,13699
33
+ wandb/apis/importers/internals/internal.py,sha256=ljRzt3FqYc4zRpCsCl9PUvXFxYAqiPrW3RojZ5vbqiw,13581
34
34
  wandb/apis/importers/internals/protocols.py,sha256=PRnN66EtZPDtCiZomB_CtTtE0tMcebeG9aAK5OyDSGk,2988
35
35
  wandb/apis/importers/internals/util.py,sha256=MuclUljXdA__0ULaqcBM6ux4pK6YUW5i6ezri5X7_7Q,2159
36
36
  wandb/apis/public/__init__.py,sha256=O_6VDtYL9Onho8_9WBxcwl3FO_GrS7t7bb59bWoh78I,1241
37
- wandb/apis/public/api.py,sha256=yOeJ3UfL8QEK3vunmjLQJDV1r4jCFxhQFzngg0lyCB0,84085
37
+ wandb/apis/public/api.py,sha256=3gZTl1Gh8qDmF1DR9uKMLy4bwDEBZVO5C0_UbO-_tEA,84084
38
38
  wandb/apis/public/artifacts.py,sha256=oSCORtKjR7DSpvKCvZXbxvHajM31yrmZwobHWds8wAQ,28903
39
39
  wandb/apis/public/automations.py,sha256=PltZYuJj1BhW3V_IJds-qZFgB_PILtYz7Kr5eARg8z4,2380
40
40
  wandb/apis/public/const.py,sha256=aK9Fcp1clmTHWj0C24fTRU3ecP5u91dPmp298kLiBdM,125
@@ -52,9 +52,9 @@ wandb/apis/public/users.py,sha256=cr_j9nBbJQyXg5TZ_heYPdC2dJICffyy4HMyTzAG-g0,39
52
52
  wandb/apis/public/utils.py,sha256=Xj3eQfhh142L7Le2XuOzDi88pZqaYXOdzL9CNU5WDTs,8103
53
53
  wandb/apis/public/registries/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
54
54
  wandb/apis/public/registries/_freezable_list.py,sha256=98MhXhU6meYVjyG5uCskaLaB0bjL4Qw9fm0hKGsDgmM,6547
55
- wandb/apis/public/registries/registries_search.py,sha256=4edJa5HSXNjvak_GsZUrrYOh90hggGMNN0tsi1WZdXE,15638
56
- wandb/apis/public/registries/registry.py,sha256=BLrx5dqclTYSOMQQSsErIHTzFxNnbHNKLH7UzFFem_M,14350
57
- wandb/apis/public/registries/utils.py,sha256=0m8aJVJPuofqaVNcOLGznDZaSKVzZOWXURqOJ5hUPbc,4429
55
+ wandb/apis/public/registries/_utils.py,sha256=AwRdWZCWDleS2Dh-AcetItkRKr44OIDXeWLrNt9czjw,4417
56
+ wandb/apis/public/registries/registries_search.py,sha256=yCNdU7L4zwv4hq66bVG39oZ5_30XtYpDYcfK3p-qb_U,15637
57
+ wandb/apis/public/registries/registry.py,sha256=cFEelF_TcMNepNzV0LBNO-xAQKfHytSKOiKfKc6ypKw,14083
58
58
  wandb/apis/reports/__init__.py,sha256=pKAM02nyHJV6DwGQuzAhSlqTOsCHKah1FlJIDERyY5U,33
59
59
  wandb/apis/reports/v1/__init__.py,sha256=nxs3gJlbvVc0b_pV5DUypk1amMkRSq_M-xUw7qPTfwI,271
60
60
  wandb/apis/reports/v2/__init__.py,sha256=vlF0ZRVHS-Qd7mBllcZri-gWE0TtjhiDSA6h5XPRVLU,271
@@ -86,11 +86,11 @@ wandb/automations/_generated/operations.py,sha256=V0n3PZ_e754Ym8IraYjFzLWg0wqnA_
86
86
  wandb/automations/_generated/slack_integrations_by_entity.py,sha256=95llPwkGxKrwX4R6ze9IxzmMuyLpIWoperLUy-hKsE0,558
87
87
  wandb/automations/_generated/update_automation.py,sha256=9SvGNXYK7fEZdhztonzRcMiJ8Yqps-42hKB16CUOFYI,357
88
88
  wandb/beta/workflows.py,sha256=t35UZZ0fovG8qmE0wIINKpU0ynHHXQ2DjE7XdzWD__4,10648
89
- wandb/bin/gpu_stats.exe,sha256=DKxl5tCYGwH0gWrUKbY_j_dT_7THYMLgqxNBmn2XOc4,8159232
90
- wandb/bin/wandb-core,sha256=-n93BcaIvaZRQMFRnTqYknHu7-fhhUCwvTkrXv2dKTs,58521600
89
+ wandb/bin/gpu_stats.exe,sha256=QHhO50EXibk_XvLdV6WtTq1oVEluqJrPFZ2BWeFIm0s,8159232
90
+ wandb/bin/wandb-core,sha256=KehYmyOHb4YfbBdkc3DugX8MPaWE5G4NFh9wYAO8uOU,58550784
91
91
  wandb/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
92
- wandb/cli/beta.py,sha256=_wbqhk6J2yjnNuVQAGlYbYZ9-j0sFE73zMIXVkQYlXA,5619
93
- wandb/cli/cli.py,sha256=wGObFtUSgm_IyesGiuAKRt3nmY0lwN3QD_-OTCkyt4M,94802
92
+ wandb/cli/beta.py,sha256=NBgJ67mwdd3k7-PEfiNTvE8dh7Ku4hv4FMZMJ9pN0Is,5362
93
+ wandb/cli/cli.py,sha256=QtNF8e_ZPBjs-pLT9xLIz9locMLXC6DATx-jmtLG-d4,93895
94
94
  wandb/docker/__init__.py,sha256=ySgObcuW3AU-CcHIy2-hk2OCEMPHJmoP679eIpWz_kc,8953
95
95
  wandb/docker/names.py,sha256=E0v_-WInxWgg3vK14Tpj0F4zuwaBl8nR7OTQCYbcod4,1351
96
96
  wandb/docker/wandb-entrypoint.sh,sha256=ksJ_wObRwZxZtdu1Ahc1X8VNB1U68a3nleioDDBO-jU,1021
@@ -223,37 +223,37 @@ wandb/proto/v3/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
223
223
  wandb/proto/v3/wandb_base_pb2.py,sha256=zwma_gb3IOSfBJ1tvMIdmQtQQZLe29upb8Mqr4m9No4,2410
224
224
  wandb/proto/v3/wandb_internal_pb2.py,sha256=riETamj5R2QOXEt2sL7aN0S1fkaXc69P-nRXY4yUkqk,120143
225
225
  wandb/proto/v3/wandb_server_pb2.py,sha256=gjIGUr71bFP25WBV6UTtGQdS7jk_8HEasE1kw1anlyk,15742
226
- wandb/proto/v3/wandb_settings_pb2.py,sha256=HkXufDS3h2TU0z7zLUh5Ne_CDFCsF4rt-WsgRhqArIs,21646
227
- wandb/proto/v3/wandb_telemetry_pb2.py,sha256=5F8Vdz76MmZ1qkmNDHwKzSwzphHQ0cAAIXsCKu_z5ns,14456
226
+ wandb/proto/v3/wandb_settings_pb2.py,sha256=BUCf7TBjW1_A1AXwrQOEo6D0Z5PSfRQ7NTAGFfU3N4A,21518
227
+ wandb/proto/v3/wandb_telemetry_pb2.py,sha256=oxmXhQfmvJr_0eeiSnjGEmBF0cZF58Fwol_rxe1i0kg,14438
228
228
  wandb/proto/v4/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
229
229
  wandb/proto/v4/wandb_base_pb2.py,sha256=tl7f-74ItLSWCP_GDfAWm02sTEgUpWZGoP_vqEpvRE8,1452
230
230
  wandb/proto/v4/wandb_internal_pb2.py,sha256=I_n0jMOeaf_k7vzd4e8FnvA-uJNV6eLWOMNmkciahE0,54749
231
231
  wandb/proto/v4/wandb_server_pb2.py,sha256=Wo4FbkBik5cftjZDtlO80LIMRfJetOGOAxj5zy9jXdQ,7044
232
- wandb/proto/v4/wandb_settings_pb2.py,sha256=ZkdliVS758kw6lAE89DCc3YKcY71TMWdvX9J62P-aUk,17946
233
- wandb/proto/v4/wandb_telemetry_pb2.py,sha256=1sGGGULbYa6uFHTASFipZliwpBxT1--bVtAAbwQ3d28,11838
232
+ wandb/proto/v4/wandb_settings_pb2.py,sha256=3p_xuPRnaXS-1H4zqDAPhbVFE1bxCa4FAAw_DoAOOo0,17818
233
+ wandb/proto/v4/wandb_telemetry_pb2.py,sha256=-4XX6RKok7VF9m3emxHMy7JTIU_9wgWXm8PF4wnS_yI,11820
234
234
  wandb/proto/v5/wandb_base_pb2.py,sha256=ES3U80f2YCt-fwiqaIrz7BGHVywwx6ibEDAnlWpohig,1603
235
235
  wandb/proto/v5/wandb_internal_pb2.py,sha256=LVer1o_UU6bdmqx3wa0snfKD7yfx9T9AmiQ32vJ34b4,59145
236
236
  wandb/proto/v5/wandb_server_pb2.py,sha256=Zkw2UopD20-C514TgqZ1P3NZTSLPTGjSVqihxcMpVoM,7603
237
- wandb/proto/v5/wandb_settings_pb2.py,sha256=Kv7PDEtr-vPpVm4tgkX9HixDBs9xCjteOrUEqPBL2Qo,18303
238
- wandb/proto/v5/wandb_telemetry_pb2.py,sha256=JCwAmUlvyg5gmNXhshsFdE3EzOEpCK2h9P73Gp73_Y4,12109
237
+ wandb/proto/v5/wandb_settings_pb2.py,sha256=ujIZZZU77oSirr7gBThiLU-3UpWRxbapC5x-7BXG3Ng,18175
238
+ wandb/proto/v5/wandb_telemetry_pb2.py,sha256=FhYCFxSAWlRUlkCU7Qp6g7c8iLB_DNQVhyOyidI2srA,12091
239
239
  wandb/proto/v6/wandb_base_pb2.py,sha256=pKoyhXXI2gap0mWgjXy3AspHkf-vwUcSp1cuz3VO4O4,1862
240
240
  wandb/proto/v6/wandb_internal_pb2.py,sha256=zGji8RTsyZ3T13a6dKFw3NasB71qo_PjWTnrZSmkYqY,59408
241
241
  wandb/proto/v6/wandb_server_pb2.py,sha256=jqUQpTgP0sY4Yd6l58N7MEMWyBkYH6Rb8XvmJn2JY0M,7864
242
- wandb/proto/v6/wandb_settings_pb2.py,sha256=Qh0Qocr7mpWDKui-ZHHJS3dnzOq0M-Am3ZCM7aOm8xo,18566
243
- wandb/proto/v6/wandb_telemetry_pb2.py,sha256=9m_aRoFY2PDshXIoJgaqbn26DV4pNby6Hk61knEVggM,12373
242
+ wandb/proto/v6/wandb_settings_pb2.py,sha256=xIxL4CwQtlL92q4nynUYrtCA39MiPDDAxXplZWIZ8Ac,18438
243
+ wandb/proto/v6/wandb_telemetry_pb2.py,sha256=Q5VjpUa-qDGNP5D-lDuFIoKoDStiNAEVyZoY8kCH-Sw,12355
244
244
  wandb/sdk/__init__.py,sha256=6lzqckLZUs7GpFZIwpgxGJwJDvhuyo-XCQnSrtZqE1c,850
245
245
  wandb/sdk/wandb_alerts.py,sha256=f6ygzuXTDT0IvMLcKlgatmXKx5HMPsm8sYwvPocl0Js,205
246
246
  wandb/sdk/wandb_config.py,sha256=yVtkXWoDbVmgUD8UVV-f4y4r_A1atVSvxfCk5eN7Hp4,11015
247
247
  wandb/sdk/wandb_helper.py,sha256=kc5Ib648to7cEGEwAuJus07rsHudL1Ux7FWPPSRnKy8,1878
248
- wandb/sdk/wandb_init.py,sha256=_cCRleKZjAd7xVzmP9GJMqg9CyjzJLE1BF4V5ssI84s,64267
248
+ wandb/sdk/wandb_init.py,sha256=-kQTIe7h2fMY_brH93ENYWQbD8TyWtfNDYV6NdTBcbU,64114
249
249
  wandb/sdk/wandb_login.py,sha256=3OUNibyicKswZyl79U2jCIMs81t6UWUZPPkU00kX7To,11640
250
250
  wandb/sdk/wandb_metadata.py,sha256=ktAftXzvb8suZdW42FWrveCLu3X7LNxU7rQk4MZWXB0,21509
251
251
  wandb/sdk/wandb_metric.py,sha256=oI6NQJJ_tyZ3YcnO0Xg5avDVr3Dh6tpTvHuPEMda30A,3378
252
- wandb/sdk/wandb_require.py,sha256=zDdqyA6FPh1rUNFLQOmNBZtK8VZSKoVK4WyYa3bI3gU,3204
252
+ wandb/sdk/wandb_require.py,sha256=nO2JTv-SypVcQxKE_ObSyKdSj35CFku5uG1rtjdGzDE,2889
253
253
  wandb/sdk/wandb_require_helpers.py,sha256=4PUXmVw86_XaKj3rn20s5DAjBMO8L0m26KqnTLaQJNc,1375
254
- wandb/sdk/wandb_run.py,sha256=Dhbhw99ddJe3NP--qcX1vVB6nLkepBS8xAow_3yvU2g,154584
255
- wandb/sdk/wandb_settings.py,sha256=vN5Czouz36y4PY1hgBxwCmmYW9F2zYkLkugP7nd0Bs4,67113
256
- wandb/sdk/wandb_setup.py,sha256=NNWPS_43WGZqHRJekfNZB9Bs3XSp9PE5JyCZnteaIkc,17184
254
+ wandb/sdk/wandb_run.py,sha256=Oineqg2tvEgxSvG5AcyLzwQNtCmUiqAjfdXlBc_SX7A,153769
255
+ wandb/sdk/wandb_settings.py,sha256=ckmyZWfZkiSOdQFYuB5Jd1XbiBIj3ba4iyUm3TfEd-M,66807
256
+ wandb/sdk/wandb_setup.py,sha256=nUjh51DE-R-2Dqwpd3xukCIcN3IKhAQUEEXNJVaS5bE,16741
257
257
  wandb/sdk/wandb_summary.py,sha256=eEV3hvHhbc1XQus0MUqFmvhXCzd3SPjvVVVg_fVZ1QM,4686
258
258
  wandb/sdk/wandb_sweep.py,sha256=FhjfRmWS_Ffn7CwT9kjVAnvTJFnaB50mUwaGOLb2WrU,4147
259
259
  wandb/sdk/wandb_sync.py,sha256=Bk1X5a2RgpdB24trwwW1fLC1sEKET87ySCH84T-kgf4,2177
@@ -309,7 +309,7 @@ wandb/sdk/artifacts/storage_handlers/gcs_handler.py,sha256=itARuzT6VhIfjP9SLT4_H
309
309
  wandb/sdk/artifacts/storage_handlers/http_handler.py,sha256=sRdLyqO24kDaM9ccD3fFfy1UQHKIo72XNp3jeQhrD4s,4184
310
310
  wandb/sdk/artifacts/storage_handlers/local_file_handler.py,sha256=XAz2Q8Kc06aWA89cikAyjI8qkZ-rDh7HQz5FCB0vSy0,5612
311
311
  wandb/sdk/artifacts/storage_handlers/multi_handler.py,sha256=m5t_fxXy8Gsk7wnZnGpU-D3gvweHERcNRIZPK-kL380,1898
312
- wandb/sdk/artifacts/storage_handlers/s3_handler.py,sha256=FiCe3oMNJW0CnE7G-2ARAYDRk0xqh85JQx8DbrXZ0CU,11884
312
+ wandb/sdk/artifacts/storage_handlers/s3_handler.py,sha256=tE8ClD5DclrHOefpIykeFj5u6EucPdAi3xyXncDcjbg,13237
313
313
  wandb/sdk/artifacts/storage_handlers/tracking_handler.py,sha256=u9F5fegy-a3O1gwntsRWEX_Ah09T5GCzP5Igw2JILGk,2555
314
314
  wandb/sdk/artifacts/storage_handlers/wb_artifact_handler.py,sha256=XgYdqZMrMk3atIDc0wOgtoCdEijXUm8KjcFjS3YYvB0,4895
315
315
  wandb/sdk/artifacts/storage_handlers/wb_local_artifact_handler.py,sha256=WP_7fqMSHWJoLTG5g042rLrbdfYn3F3VkV3rsaV_hMA,2636
@@ -317,7 +317,7 @@ wandb/sdk/artifacts/storage_policies/__init__.py,sha256=G8quZY8-eynVVXmNBbiLGfUo
317
317
  wandb/sdk/artifacts/storage_policies/register.py,sha256=azfof-H42vIuvndo9hvN4cZ3UXWG-nZcrFQ1QFL9oIc,50
318
318
  wandb/sdk/artifacts/storage_policies/wandb_storage_policy.py,sha256=atd1-Z64jMb0fv1toj3ijfZRvdaAsL0a1ueXWLQFNpc,22754
319
319
  wandb/sdk/backend/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
320
- wandb/sdk/backend/backend.py,sha256=I_urJou7NcelumWb78jJFADCEYjLcLtAlksP-mxyc_4,1359
320
+ wandb/sdk/backend/backend.py,sha256=hir04WylvBJptctooIpNeZIbZzHoNFBkLFLXrbUxhPY,1367
321
321
  wandb/sdk/data_types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
322
322
  wandb/sdk/data_types/_dtypes.py,sha256=365vVYpWZibTL8fgh9sAeCk7JMtmRUILi3CJeMYwF7Q,30902
323
323
  wandb/sdk/data_types/_private.py,sha256=vpatnpMcuWUtpSI-dY-YXs9zmffAgEXCoViIGS4yVT8,309
@@ -364,12 +364,9 @@ wandb/sdk/internal/context.py,sha256=HNcOpyptz_03YGlZV3BVzPrBXDoMhtLBxvM2-Z_5xXs
364
364
  wandb/sdk/internal/datastore.py,sha256=8PiYcqyLEMdhFJvyjamUIB0hL1oAPHjec0Nf8XzogdA,10067
365
365
  wandb/sdk/internal/file_pusher.py,sha256=QplLOWBasZdtJ5rqcH7o1awzYz6Y1OhwcLnE1pDWHOc,6200
366
366
  wandb/sdk/internal/file_stream.py,sha256=ZD10VgoFMhz1kGbAOui-f5wx_8UcZgs0ZQLXZGyCXD4,26290
367
- wandb/sdk/internal/flow_control.py,sha256=QjrV_SOwgay5VYA9SqwYKkeKWjHmqF41TNHNHq75G2g,8848
368
- wandb/sdk/internal/handler.py,sha256=rM2J1AmbgE3Bvqnosc9gFe-2-tCBz2vCJM-7Nf1ecfM,35197
367
+ wandb/sdk/internal/handler.py,sha256=lOSI6wBqqFzRU183H1-ITclA57tbHGo-IJPaMzyKUOU,32549
369
368
  wandb/sdk/internal/incremental_table_util.py,sha256=QP2idgPtzznazJ7w6rWCYS1n6oYJZWeyTX-jvzCMDrg,1543
370
- wandb/sdk/internal/internal.py,sha256=cxxe9MZCU5rvuuZKfb3cb5qBqTFRcoKebM2RfJXCwm8,12499
371
369
  wandb/sdk/internal/internal_api.py,sha256=D5WGp9HuWuXowE8WECcoO-H9JsmbphD64rEoq7qFW5s,166907
372
- wandb/sdk/internal/internal_util.py,sha256=715OQr0OiKGoSDQeHTFNgLvjh2cB06KwzY24n10mOcU,2652
373
370
  wandb/sdk/internal/job_builder.py,sha256=FmYFsyNuAulmF474AVZ6ieeaXQumay12cUtGx2ruCqo,23460
374
371
  wandb/sdk/internal/profiler.py,sha256=v8H0__oxfONdwoAl_nETulz2h9HAOA6lJ01KKBN3Vsw,2470
375
372
  wandb/sdk/internal/progress.py,sha256=D6iFIdT661PFSgVs1-JNdTpqTt0wvmy_I-Fq7TvhDT4,2366
@@ -380,30 +377,11 @@ wandb/sdk/internal/sender_config.py,sha256=v0Imw9oNxaha2wvsSbmDjnlnDdGJ7ODOk2K9D
380
377
  wandb/sdk/internal/settings_static.py,sha256=EtAN0OjTHu8wCM-wWaI1X6v0wDTW66PZEAmCPSzggqo,4405
381
378
  wandb/sdk/internal/tb_watcher.py,sha256=yfZBz_6qCVB93fVOZMgvcS2nZ2z0RuLP0SOnPV95xZc,19195
382
379
  wandb/sdk/internal/thread_local_settings.py,sha256=f6uzjTa0d6twZ9aFHzdUlUqv3gy6AnbOZoWYm95DxKA,545
383
- wandb/sdk/internal/writer.py,sha256=D2vQe-2yEfUuGwqYxMvu7iZgo3rpsjUxCgrH8YwNSeA,7471
384
380
  wandb/sdk/internal/_generated/__init__.py,sha256=w4dmU4U0gMfBLGu8o8UPylYZyNxr3py7ELlJP5iHvPA,396
385
381
  wandb/sdk/internal/_generated/enums.py,sha256=n4NAp3Y6Cb0bOtRvpJ-v8tl37-pg5CBEZ7m8Wzg7THY,128
386
382
  wandb/sdk/internal/_generated/input_types.py,sha256=n4NAp3Y6Cb0bOtRvpJ-v8tl37-pg5CBEZ7m8Wzg7THY,128
387
383
  wandb/sdk/internal/_generated/operations.py,sha256=7OG1bWsH0hY8rYZBY-oLfLDwzznu3j-VjlL9aPV7Ims,260
388
384
  wandb/sdk/internal/_generated/server_features_query.py,sha256=Wf5-7P8KnkTstcUET1LHpfEmnIkgGpGAp8oOb5n80tw,674
389
- wandb/sdk/internal/system/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
390
- wandb/sdk/internal/system/env_probe_helpers.py,sha256=DBq4Gg6mTbqdjxUDHSOlcV0Ul_aFF-oOvhKqhzb1xWY,410
391
- wandb/sdk/internal/system/system_info.py,sha256=mXSdy5hYjUZ1SbGZo8YC9TIK16fWoHW7BYqAtHeJrJo,10257
392
- wandb/sdk/internal/system/system_monitor.py,sha256=VIMVsBeFX84DfpsZZD3-eYEUh5nHgSIi9fmWn_gi_FE,8821
393
- wandb/sdk/internal/system/assets/__init__.py,sha256=Zvl6P8sY7R9HaVl8ZUbPaZccFFy08wFN_ashMCVVZG0,499
394
- wandb/sdk/internal/system/assets/aggregators.py,sha256=ES8SRZglWiclE6QdDtnsmmo0dFyoZO8IR98AniVffRc,1012
395
- wandb/sdk/internal/system/assets/asset_registry.py,sha256=08uPqgNQDyLTiKrW73Q6hQmd0a9YQ79mZRzkvdXRynY,498
396
- wandb/sdk/internal/system/assets/cpu.py,sha256=Bbd2km3CwhBB5iFeHCsb1ou9AL3EHhS0KYBVsAG-wx8,4741
397
- wandb/sdk/internal/system/assets/disk.py,sha256=tYSlxGUyad_ySm3m-_iXeSBVSKAEiJnHWoExre0Rwig,6448
398
- wandb/sdk/internal/system/assets/gpu.py,sha256=WmsFhat-XAXVjbZGmmPZid1oh5wxiMX6nPYPh1KuujE,14126
399
- wandb/sdk/internal/system/assets/gpu_amd.py,sha256=DfWgnbBBexQWkx3Tb4CyYiKGLKTMZ2tJu7v5w5tKiqE,7566
400
- wandb/sdk/internal/system/assets/interfaces.py,sha256=HZ9lDkuUv29NM4rM8Cw_sJ2u4bwv3MnjsqzzoIbpsnE,6408
401
- wandb/sdk/internal/system/assets/ipu.py,sha256=YpHpscYvgy4r_LbIhllMUHpEigj3USxN6vGP5p6rx2g,5491
402
- wandb/sdk/internal/system/assets/memory.py,sha256=lOacPhNQj9ivXyci_gvDiNk5k8asrK_mhNwz-y0_aOg,4437
403
- wandb/sdk/internal/system/assets/network.py,sha256=3tUX4iALSI5nphsEj8Ck0TlAVHn0Plw93bf_4z8W4D4,3517
404
- wandb/sdk/internal/system/assets/open_metrics.py,sha256=v_lkCfDQvynB6ecG2CXBIx55pKHgTo-Wnc1qXeNf2Jw,9924
405
- wandb/sdk/internal/system/assets/tpu.py,sha256=DETCnRep4JoeNgUzLh_9qWrWaqGnG90JHzKBS7-GVHU,5058
406
- wandb/sdk/internal/system/assets/trainium.py,sha256=qKgh_6gKyw5268JIlV2ZwYSuZ_e1yAtFVUTVbJeI43g,13694
407
385
  wandb/sdk/launch/__init__.py,sha256=70GMH3jQPioNeidxTZUuuT8_8Gxjhwnw9cNCSTqvFj0,414
408
386
  wandb/sdk/launch/_launch.py,sha256=acZiTr8l4D3-kGW2R5zdqmk12wMX4EcZo9Prxe2MP5E,12146
409
387
  wandb/sdk/launch/_launch_add.py,sha256=xeXunxOqeggIrOKd9U415SBaGeYwMP1_osEymWtSBkw,9050
@@ -481,23 +459,26 @@ wandb/sdk/lib/lazyloader.py,sha256=MoMgx_tBjA__yFKcYzhimWiug_TSQeRUr71sPNUkTsk,1
481
459
  wandb/sdk/lib/module.py,sha256=EB0yg1HMApnuCEfQboQXj9a0YUozWwiLXa7u23nC6Js,2176
482
460
  wandb/sdk/lib/paths.py,sha256=Knkww9wdMK4wqsj5B9aMEJDvIFoCf80xXl28It3FIG4,4635
483
461
  wandb/sdk/lib/preinit.py,sha256=IDK_WXbcrfzXUNWZur505lHIY_cYs1IEWp26HMpIf74,1492
484
- wandb/sdk/lib/printer.py,sha256=SZfgEgYgbEAe45gTEIHjsXriv4IX7nqnGOHhzRgTQSU,16823
462
+ wandb/sdk/lib/printer.py,sha256=YCkBdW4scPPoJ_Z017B9VTTWBpK0gC0jq0U4Lg8pF28,16828
485
463
  wandb/sdk/lib/printer_asyncio.py,sha256=fAQILyGBUzZYxUNPQ9_UQkmy5ujbU8zunZFhtLtRT-M,1470
486
- wandb/sdk/lib/progress.py,sha256=pGGLYwWEYEjeVR2BkZdEc2l1pYSkaTD1_YNr5k4rRgw,10993
464
+ wandb/sdk/lib/progress.py,sha256=8miMGST9ONyC7pdAXUTLYtVXkqnQqd7jIlnptlf6dBs,10889
487
465
  wandb/sdk/lib/proto_util.py,sha256=YaGg9FoKtWmgQD8SkkKN630gyG93WoYY5JHqwdWaQKg,2984
488
466
  wandb/sdk/lib/redirect.py,sha256=kribtu1VYPwIfdTbSwP7roFyrfd6CBDnNROyRUnAkLY,28249
489
467
  wandb/sdk/lib/retry.py,sha256=NYLAkjBudM6UlnjViTBe10lR9onTXFCfSvix5SCEtn0,10303
490
468
  wandb/sdk/lib/run_moment.py,sha256=wXlPOeRDlypFwwy_uG-07qe8s9pYC84x374hTR4zs0Q,2501
491
469
  wandb/sdk/lib/runid.py,sha256=rHYRTjJu8gTZ6Aoo0WZ5jQfAtNLXQo6aY6PD-i3Fh6I,404
492
470
  wandb/sdk/lib/server.py,sha256=f8idM8TiJKS1nYTjijhVkzOTp8e2flNpLUWcZ2K08f0,1681
493
- wandb/sdk/lib/service_connection.py,sha256=yFU6JHH-ngssWMIBxAupT2mLgogl8PsWChf2ATk9Am8,7601
494
- wandb/sdk/lib/service_token.py,sha256=rPVxgNQAh2nGf2ptUtrm4EOIWgaxzVqFETbQYeojF1A,2548
495
- wandb/sdk/lib/sock_client.py,sha256=efSlg-mMthwQqicZtE-8-C8InDWbaUJLbu4sH6dbdt8,8623
471
+ wandb/sdk/lib/sock_client.py,sha256=0uC4h5FYT0UoEqQ0TcTBzmyXdNjbXUVjSGFttjU5ynE,8461
496
472
  wandb/sdk/lib/sparkline.py,sha256=CivfHHGPrbnnacpfjsoYUrCtX6Xz7AHoybEeOuWeEI0,1407
497
473
  wandb/sdk/lib/telemetry.py,sha256=25ZdppATjPlRR2uTh_lLUgXVCAFS49hT8ArSYAWCN3g,2854
498
474
  wandb/sdk/lib/timed_input.py,sha256=XF03SXTQj0AysHiIV-LKtbwxtSUx0E7xts7zDPs9kJQ,3362
499
475
  wandb/sdk/lib/timer.py,sha256=Ar1t8f3OFAA4PB2fB2MT9D41y3g2Or56wSAYezvdXqo,459
500
476
  wandb/sdk/lib/wb_logging.py,sha256=riPp_MSnb57YCcdCGoroCpyC1olAkIGxZge0llyVJOA,5000
477
+ wandb/sdk/lib/service/ipc_support.py,sha256=lEhZ0XNBf1avUf5PDXEIRpz9JwrPiJ9cijrXDhvuO0g,354
478
+ wandb/sdk/lib/service/service_connection.py,sha256=3LIakvkrAEk4uM_Q2DN76__m0gtolsuMWPv_9Fg4i8o,6632
479
+ wandb/sdk/lib/service/service_port_file.py,sha256=HAWdSBEIGtvJ8ZQJczSD7wrcHZQXZQ6MnVG73hPAyXs,3048
480
+ wandb/sdk/lib/service/service_process.py,sha256=XKNRLBSNN2R8iI12imYDIkC5x-ekndaAKD1n80zjxtQ,3211
481
+ wandb/sdk/lib/service/service_token.py,sha256=2HIYE4re66QybikT3fSKqD80w1DmdUCLi8j6mgbZtm0,4840
501
482
  wandb/sdk/mailbox/__init__.py,sha256=0gYfvSzPYluoQOQzT3j2AQoE4R4gPU2FCXBYcEMJOP8,879
502
483
  wandb/sdk/mailbox/mailbox.py,sha256=94heh_4IaPRYviea26hT-NFk7vhFOhZITG1stTe2LRs,4449
503
484
  wandb/sdk/mailbox/mailbox_handle.py,sha256=ckbl3G2SaufhwtnJUbjCqqIBtpgN4nr_JG70ih7KYO4,3781
@@ -512,13 +493,6 @@ wandb/sdk/projects/_generated/input_types.py,sha256=vksL9-lZRCnYhul31BTsQWe6KJB-
512
493
  wandb/sdk/projects/_generated/operations.py,sha256=Se8oLxh4gkTMPRRJG4cnAFvKIIuOiEsECaQApkT6zH8,1873
513
494
  wandb/sdk/projects/_generated/rename_project.py,sha256=sQtq4e6BV5qlHVrQp9RmhCXwqDqPKu08-5230Lj5eGE,622
514
495
  wandb/sdk/projects/_generated/upsert_registry_project.py,sha256=ZHnXxeedzrbfD42IFHF18SXRLKas9T8zUHeBUFABT0s,624
515
- wandb/sdk/service/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
516
- wandb/sdk/service/_startup_debug.py,sha256=3uaZuL6tsHulAS__dvnUn1U_PeZdjXI0t-F3D-77bZs,624
517
- wandb/sdk/service/port_file.py,sha256=aYA40Y8d78NMwKuJRbG3aL4J4-xH8l8UvzPFFfrwQCY,1599
518
- wandb/sdk/service/server.py,sha256=IC4qXJKahrz7_VT-HkUb8BqPkzTmGh5-c0qflAymTu8,3567
519
- wandb/sdk/service/server_sock.py,sha256=NDP1bOtm3xGfrZdeU4_g_dv6_NjXrSAznFWXTSKn7hk,10088
520
- wandb/sdk/service/service.py,sha256=tV_EWj89akolpSb-p-jUa32syib1uhn7zM800stuoik,9162
521
- wandb/sdk/service/streams.py,sha256=3AVHpGD2D9LVcJmtpZbAg0V1rRY7z-V8rMgYdf8-99U,15279
522
496
  wandb/sdk/verify/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
523
497
  wandb/sdk/verify/verify.py,sha256=1DKc4OstSJrBha3nmYfMgfOyBoh-qefiOnG9pTZJI5Y,18813
524
498
  wandb/sync/__init__.py,sha256=j3eFIlbNc-kFjxRE1voDWctvLnTxNPCfly_NT66_bOg,82
@@ -907,8 +881,8 @@ wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/importlib2.py,sha256=kX0rdVmTDL
907
881
  wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/platform.py,sha256=7fpTDfxSYvSRtHvyog-plRdLR5A6k1QVY_AL0gVhhPM,1563
908
882
  wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/unicode_paths.py,sha256=xzyQmuba2gns1s3Qemu9SXaKV5zeTL3TP9--xOi541g,2254
909
883
  wandb/vendor/watchdog_0_9_0/wandb_watchdog/utils/win32stat.py,sha256=R48kuuEIi7XzCJBJ6Xo7v6DJIbOP5EwcsWaPf5Axn_g,3951
910
- wandb-0.20.1.dist-info/METADATA,sha256=86RafFiYjMqMeso0ph6f-0hXGZoVAQUy9jUW33HH-EE,10307
911
- wandb-0.20.1.dist-info/WHEEL,sha256=F7luzo77gHneG2SMTaD6iIlqNT8oVz1uotn5Zigp4o8,89
912
- wandb-0.20.1.dist-info/entry_points.txt,sha256=v4FCOZ9gW7Pc6KLsmgQqpCiKTrA1wh2XHmNf-NUP1-I,67
913
- wandb-0.20.1.dist-info/licenses/LICENSE,sha256=rJ7p1acqNi17WFOAJ9WqsImXZtKZDA3i_gzdDVGRuFQ,1102
914
- wandb-0.20.1.dist-info/RECORD,,
884
+ wandb-0.20.2rc20250616.dist-info/METADATA,sha256=CO-o4zKcQ6WaG0i61VlAeotjmFyErsRj1Ra2NKU0tn0,10260
885
+ wandb-0.20.2rc20250616.dist-info/WHEEL,sha256=F7luzo77gHneG2SMTaD6iIlqNT8oVz1uotn5Zigp4o8,89
886
+ wandb-0.20.2rc20250616.dist-info/entry_points.txt,sha256=v4FCOZ9gW7Pc6KLsmgQqpCiKTrA1wh2XHmNf-NUP1-I,67
887
+ wandb-0.20.2rc20250616.dist-info/licenses/LICENSE,sha256=rJ7p1acqNi17WFOAJ9WqsImXZtKZDA3i_gzdDVGRuFQ,1102
888
+ wandb-0.20.2rc20250616.dist-info/RECORD,,