wandb 0.17.9__py3-none-macosx_10_14_x86_64.whl → 0.19.8__py3-none-macosx_10_14_x86_64.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 (302) hide show
  1. package_readme.md +8 -0
  2. wandb/__init__.py +14 -18
  3. wandb/__init__.pyi +476 -302
  4. wandb/_iterutils.py +46 -0
  5. wandb/agents/pyagent.py +2 -2
  6. wandb/analytics/sentry.py +92 -95
  7. wandb/apis/attrs.py +15 -4
  8. wandb/apis/importers/internals/internal.py +6 -6
  9. wandb/apis/importers/internals/protocols.py +11 -7
  10. wandb/apis/importers/wandb.py +2 -2
  11. wandb/apis/internal.py +7 -0
  12. wandb/apis/normalize.py +15 -23
  13. wandb/apis/public/_generated/__init__.py +21 -0
  14. wandb/apis/public/_generated/base.py +128 -0
  15. wandb/apis/public/_generated/enums.py +4 -0
  16. wandb/apis/public/_generated/input_types.py +4 -0
  17. wandb/apis/public/_generated/operations.py +15 -0
  18. wandb/apis/public/_generated/server_features_query.py +27 -0
  19. wandb/apis/public/_generated/typing_compat.py +14 -0
  20. wandb/apis/public/api.py +450 -56
  21. wandb/apis/public/artifacts.py +31 -54
  22. wandb/apis/public/files.py +82 -14
  23. wandb/apis/public/jobs.py +12 -10
  24. wandb/apis/public/query_generator.py +1 -1
  25. wandb/apis/public/registries.py +573 -0
  26. wandb/apis/public/reports.py +6 -17
  27. wandb/apis/public/runs.py +137 -31
  28. wandb/apis/public/sweeps.py +1 -1
  29. wandb/apis/public/teams.py +3 -3
  30. wandb/apis/public/users.py +1 -1
  31. wandb/apis/public/utils.py +104 -0
  32. wandb/apis/reports/v1/__init__.py +1 -1
  33. wandb/apis/reports/v2/__init__.py +1 -1
  34. wandb/apis/workspaces/__init__.py +1 -1
  35. wandb/bin/gpu_stats +0 -0
  36. wandb/bin/wandb-core +0 -0
  37. wandb/cli/beta.py +181 -0
  38. wandb/cli/cli.py +50 -246
  39. wandb/data_types.py +13 -2020
  40. wandb/docker/__init__.py +6 -5
  41. wandb/docker/auth.py +2 -3
  42. wandb/env.py +89 -97
  43. wandb/errors/__init__.py +11 -40
  44. wandb/errors/errors.py +37 -0
  45. wandb/errors/links.py +73 -0
  46. wandb/errors/term.py +355 -43
  47. wandb/errors/warnings.py +2 -0
  48. wandb/filesync/dir_watcher.py +5 -4
  49. wandb/filesync/step_prepare.py +1 -1
  50. wandb/filesync/step_upload.py +2 -5
  51. wandb/filesync/upload_job.py +1 -1
  52. wandb/integration/catboost/catboost.py +2 -2
  53. wandb/integration/diffusers/pipeline_resolver.py +1 -1
  54. wandb/integration/diffusers/resolvers/multimodal.py +6 -6
  55. wandb/integration/diffusers/resolvers/utils.py +1 -1
  56. wandb/integration/fastai/__init__.py +8 -14
  57. wandb/integration/gym/__init__.py +1 -7
  58. wandb/integration/keras/callbacks/metrics_logger.py +2 -9
  59. wandb/integration/keras/callbacks/model_checkpoint.py +2 -9
  60. wandb/integration/keras/callbacks/tables_builder.py +3 -1
  61. wandb/integration/keras/keras.py +9 -9
  62. wandb/integration/kfp/kfp_patch.py +26 -16
  63. wandb/integration/lightgbm/__init__.py +3 -3
  64. wandb/integration/lightning/fabric/logger.py +3 -1
  65. wandb/integration/metaflow/metaflow.py +15 -17
  66. wandb/integration/prodigy/prodigy.py +3 -11
  67. wandb/integration/sacred/__init__.py +1 -1
  68. wandb/integration/sagemaker/__init__.py +5 -3
  69. wandb/integration/sagemaker/auth.py +1 -1
  70. wandb/integration/sagemaker/config.py +17 -8
  71. wandb/integration/sagemaker/files.py +0 -1
  72. wandb/integration/sagemaker/resources.py +47 -18
  73. wandb/integration/sb3/sb3.py +1 -7
  74. wandb/{sklearn → integration/sklearn}/calculate/calibration_curves.py +7 -7
  75. wandb/{sklearn → integration/sklearn}/calculate/class_proportions.py +1 -1
  76. wandb/{sklearn → integration/sklearn}/calculate/confusion_matrix.py +3 -2
  77. wandb/{sklearn → integration/sklearn}/calculate/elbow_curve.py +6 -6
  78. wandb/{sklearn → integration/sklearn}/calculate/learning_curve.py +2 -2
  79. wandb/{sklearn → integration/sklearn}/calculate/outlier_candidates.py +2 -2
  80. wandb/{sklearn → integration/sklearn}/calculate/residuals.py +8 -8
  81. wandb/{sklearn → integration/sklearn}/calculate/silhouette.py +2 -2
  82. wandb/{sklearn → integration/sklearn}/calculate/summary_metrics.py +2 -2
  83. wandb/{sklearn → integration/sklearn}/plot/classifier.py +12 -12
  84. wandb/{sklearn → integration/sklearn}/plot/clusterer.py +13 -9
  85. wandb/{sklearn → integration/sklearn}/plot/regressor.py +8 -8
  86. wandb/{sklearn → integration/sklearn}/plot/shared.py +5 -5
  87. wandb/{sklearn → integration/sklearn}/utils.py +9 -9
  88. wandb/integration/tensorboard/log.py +1 -5
  89. wandb/integration/tensorboard/monkeypatch.py +3 -2
  90. wandb/{wandb_torch.py → integration/torch/wandb_torch.py} +38 -34
  91. wandb/integration/ultralytics/bbox_utils.py +9 -2
  92. wandb/integration/ultralytics/callback.py +2 -2
  93. wandb/integration/xgboost/xgboost.py +1 -1
  94. wandb/jupyter.py +26 -13
  95. wandb/old/core.py +2 -80
  96. wandb/plot/__init__.py +17 -8
  97. wandb/plot/bar.py +54 -26
  98. wandb/plot/confusion_matrix.py +150 -68
  99. wandb/plot/custom_chart.py +124 -0
  100. wandb/plot/histogram.py +48 -19
  101. wandb/plot/line.py +59 -25
  102. wandb/plot/line_series.py +148 -60
  103. wandb/plot/pr_curve.py +93 -44
  104. wandb/plot/roc_curve.py +82 -37
  105. wandb/plot/scatter.py +54 -20
  106. wandb/plot/viz.py +41 -0
  107. wandb/proto/v3/wandb_base_pb2.py +2 -1
  108. wandb/proto/v3/wandb_internal_pb2.py +360 -250
  109. wandb/proto/v3/wandb_server_pb2.py +58 -37
  110. wandb/proto/v3/wandb_settings_pb2.py +26 -15
  111. wandb/proto/v3/wandb_telemetry_pb2.py +11 -10
  112. wandb/proto/v4/wandb_base_pb2.py +2 -1
  113. wandb/proto/v4/wandb_internal_pb2.py +253 -230
  114. wandb/proto/v4/wandb_server_pb2.py +42 -37
  115. wandb/proto/v4/wandb_settings_pb2.py +18 -15
  116. wandb/proto/v4/wandb_telemetry_pb2.py +11 -10
  117. wandb/proto/v5/wandb_base_pb2.py +3 -2
  118. wandb/proto/v5/wandb_internal_pb2.py +254 -231
  119. wandb/proto/v5/wandb_server_pb2.py +43 -38
  120. wandb/proto/v5/wandb_settings_pb2.py +19 -16
  121. wandb/proto/v5/wandb_telemetry_pb2.py +12 -11
  122. wandb/proto/wandb_deprecated.py +3 -11
  123. wandb/proto/wandb_generate_deprecated.py +3 -7
  124. wandb/sdk/__init__.py +3 -3
  125. wandb/sdk/artifacts/_graphql_fragments.py +126 -0
  126. wandb/sdk/artifacts/_validators.py +121 -0
  127. wandb/sdk/artifacts/artifact.py +568 -502
  128. wandb/sdk/artifacts/artifact_file_cache.py +16 -18
  129. wandb/sdk/artifacts/artifact_instance_cache.py +4 -2
  130. wandb/sdk/artifacts/artifact_manifest.py +22 -19
  131. wandb/sdk/artifacts/artifact_manifest_entry.py +26 -24
  132. wandb/sdk/artifacts/artifact_manifests/artifact_manifest_v1.py +9 -7
  133. wandb/sdk/artifacts/artifact_saver.py +33 -29
  134. wandb/sdk/artifacts/exceptions.py +26 -25
  135. wandb/sdk/artifacts/storage_handler.py +11 -9
  136. wandb/sdk/artifacts/storage_handlers/azure_handler.py +25 -18
  137. wandb/sdk/artifacts/storage_handlers/gcs_handler.py +18 -20
  138. wandb/sdk/artifacts/storage_handlers/http_handler.py +15 -14
  139. wandb/sdk/artifacts/storage_handlers/local_file_handler.py +24 -17
  140. wandb/sdk/artifacts/storage_handlers/multi_handler.py +14 -12
  141. wandb/sdk/artifacts/storage_handlers/s3_handler.py +22 -24
  142. wandb/sdk/artifacts/storage_handlers/tracking_handler.py +10 -8
  143. wandb/sdk/artifacts/storage_handlers/wb_artifact_handler.py +14 -12
  144. wandb/sdk/artifacts/storage_handlers/wb_local_artifact_handler.py +11 -9
  145. wandb/sdk/artifacts/storage_policies/wandb_storage_policy.py +31 -29
  146. wandb/sdk/artifacts/storage_policy.py +20 -20
  147. wandb/sdk/backend/backend.py +32 -44
  148. wandb/sdk/data_types/_dtypes.py +7 -3
  149. wandb/sdk/data_types/audio.py +165 -0
  150. wandb/sdk/data_types/base_types/media.py +66 -5
  151. wandb/sdk/data_types/base_types/wb_value.py +22 -14
  152. wandb/sdk/data_types/bokeh.py +70 -0
  153. wandb/sdk/data_types/graph.py +405 -0
  154. wandb/sdk/data_types/helper_types/bounding_boxes_2d.py +29 -11
  155. wandb/sdk/data_types/helper_types/image_mask.py +24 -12
  156. wandb/sdk/data_types/histogram.py +5 -7
  157. wandb/sdk/data_types/html.py +1 -1
  158. wandb/sdk/data_types/image.py +160 -5
  159. wandb/sdk/data_types/molecule.py +3 -3
  160. wandb/sdk/data_types/object_3d.py +6 -10
  161. wandb/sdk/data_types/plotly.py +1 -1
  162. wandb/sdk/data_types/saved_model.py +37 -49
  163. wandb/sdk/data_types/table.py +1204 -0
  164. wandb/sdk/data_types/trace_tree.py +3 -3
  165. wandb/sdk/data_types/utils.py +52 -8
  166. wandb/sdk/data_types/video.py +25 -13
  167. wandb/sdk/integration_utils/auto_logging.py +1 -8
  168. wandb/sdk/interface/interface.py +185 -122
  169. wandb/sdk/interface/interface_queue.py +5 -21
  170. wandb/sdk/interface/interface_relay.py +7 -22
  171. wandb/sdk/interface/interface_shared.py +92 -150
  172. wandb/sdk/interface/interface_sock.py +10 -32
  173. wandb/sdk/interface/router.py +42 -71
  174. wandb/sdk/interface/router_queue.py +13 -14
  175. wandb/sdk/interface/router_relay.py +26 -15
  176. wandb/sdk/interface/router_sock.py +12 -16
  177. wandb/sdk/internal/datastore.py +1 -1
  178. wandb/sdk/internal/file_pusher.py +1 -1
  179. wandb/sdk/internal/file_stream.py +9 -9
  180. wandb/sdk/internal/flow_control.py +1 -1
  181. wandb/sdk/internal/handler.py +33 -20
  182. wandb/sdk/internal/internal.py +5 -19
  183. wandb/sdk/internal/internal_api.py +374 -46
  184. wandb/sdk/internal/internal_util.py +0 -3
  185. wandb/sdk/internal/job_builder.py +24 -15
  186. wandb/sdk/internal/progress.py +1 -5
  187. wandb/sdk/internal/sample.py +2 -2
  188. wandb/sdk/internal/sender.py +35 -84
  189. wandb/sdk/internal/settings_static.py +23 -14
  190. wandb/sdk/internal/system/assets/__init__.py +0 -2
  191. wandb/sdk/internal/system/assets/cpu.py +3 -3
  192. wandb/sdk/internal/system/assets/disk.py +7 -7
  193. wandb/sdk/internal/system/assets/gpu.py +8 -8
  194. wandb/sdk/internal/system/assets/gpu_amd.py +12 -9
  195. wandb/sdk/internal/system/assets/interfaces.py +11 -13
  196. wandb/sdk/internal/system/assets/ipu.py +1 -1
  197. wandb/sdk/internal/system/assets/memory.py +3 -3
  198. wandb/sdk/internal/system/assets/open_metrics.py +2 -8
  199. wandb/sdk/internal/system/assets/trainium.py +3 -9
  200. wandb/sdk/internal/system/system_info.py +15 -14
  201. wandb/sdk/internal/system/system_monitor.py +8 -13
  202. wandb/sdk/internal/tb_watcher.py +16 -13
  203. wandb/sdk/internal/writer.py +2 -4
  204. wandb/sdk/launch/__init__.py +2 -1
  205. wandb/sdk/launch/_launch.py +4 -3
  206. wandb/sdk/launch/_launch_add.py +2 -2
  207. wandb/sdk/launch/_project_spec.py +3 -3
  208. wandb/sdk/launch/agent/run_queue_item_file_saver.py +1 -7
  209. wandb/sdk/launch/builder/abstract.py +1 -1
  210. wandb/sdk/launch/builder/kaniko_builder.py +0 -1
  211. wandb/sdk/launch/create_job.py +2 -2
  212. wandb/sdk/launch/environment/local_environment.py +0 -1
  213. wandb/sdk/launch/errors.py +0 -6
  214. wandb/sdk/launch/inputs/internal.py +2 -2
  215. wandb/sdk/launch/registry/local_registry.py +0 -2
  216. wandb/sdk/launch/runner/abstract.py +1 -11
  217. wandb/sdk/launch/runner/kubernetes_monitor.py +2 -4
  218. wandb/sdk/launch/sweeps/__init__.py +0 -2
  219. wandb/sdk/launch/sweeps/scheduler.py +0 -2
  220. wandb/sdk/launch/sweeps/scheduler_sweep.py +0 -1
  221. wandb/sdk/launch/utils.py +1 -0
  222. wandb/sdk/lib/apikey.py +100 -56
  223. wandb/sdk/lib/asyncio_compat.py +210 -0
  224. wandb/sdk/lib/console_capture.py +172 -0
  225. wandb/sdk/lib/file_stream_utils.py +1 -1
  226. wandb/sdk/lib/filesystem.py +1 -1
  227. wandb/sdk/lib/fsm.py +13 -7
  228. wandb/sdk/lib/gitlib.py +1 -1
  229. wandb/sdk/lib/gql_request.py +1 -1
  230. wandb/sdk/lib/hashutil.py +34 -12
  231. wandb/sdk/lib/interrupt.py +37 -0
  232. wandb/sdk/lib/ipython.py +22 -42
  233. wandb/sdk/lib/lazyloader.py +1 -1
  234. wandb/sdk/lib/module.py +12 -3
  235. wandb/sdk/lib/printer.py +358 -123
  236. wandb/sdk/lib/progress.py +341 -0
  237. wandb/sdk/lib/redirect.py +102 -76
  238. wandb/sdk/lib/retry.py +7 -4
  239. wandb/sdk/lib/run_moment.py +19 -13
  240. wandb/sdk/lib/server.py +30 -24
  241. wandb/sdk/lib/service_connection.py +236 -0
  242. wandb/sdk/lib/service_token.py +94 -0
  243. wandb/sdk/lib/sock_client.py +10 -61
  244. wandb/sdk/lib/sparkline.py +1 -2
  245. wandb/sdk/lib/telemetry.py +1 -1
  246. wandb/sdk/mailbox/__init__.py +23 -0
  247. wandb/sdk/mailbox/mailbox.py +135 -0
  248. wandb/sdk/mailbox/mailbox_handle.py +127 -0
  249. wandb/sdk/mailbox/response_handle.py +167 -0
  250. wandb/sdk/mailbox/wait_with_progress.py +135 -0
  251. wandb/sdk/service/_startup_debug.py +1 -1
  252. wandb/sdk/service/server.py +5 -17
  253. wandb/sdk/service/server_sock.py +13 -8
  254. wandb/sdk/service/service.py +12 -42
  255. wandb/sdk/service/streams.py +103 -103
  256. wandb/sdk/verify/verify.py +67 -15
  257. wandb/sdk/wandb_config.py +2 -2
  258. wandb/sdk/wandb_init.py +946 -707
  259. wandb/sdk/wandb_login.py +103 -133
  260. wandb/sdk/wandb_metadata.py +607 -0
  261. wandb/sdk/wandb_require.py +19 -32
  262. wandb/sdk/wandb_run.py +921 -1152
  263. wandb/sdk/wandb_settings.py +1335 -1755
  264. wandb/sdk/wandb_setup.py +167 -165
  265. wandb/sdk/wandb_sweep.py +2 -2
  266. wandb/sdk/wandb_sync.py +20 -24
  267. wandb/sdk/wandb_watch.py +49 -27
  268. wandb/sklearn.py +35 -0
  269. wandb/sync/sync.py +11 -12
  270. wandb/util.py +118 -66
  271. wandb/wandb_agent.py +14 -19
  272. wandb/wandb_controller.py +19 -21
  273. {wandb-0.17.9.dist-info → wandb-0.19.8.dist-info}/METADATA +26 -13
  274. {wandb-0.17.9.dist-info → wandb-0.19.8.dist-info}/RECORD +282 -266
  275. {wandb-0.17.9.dist-info → wandb-0.19.8.dist-info}/WHEEL +1 -1
  276. wandb/bin/apple_gpu_stats +0 -0
  277. wandb/integration/magic.py +0 -556
  278. wandb/magic.py +0 -3
  279. wandb/sdk/interface/message_future.py +0 -27
  280. wandb/sdk/interface/message_future_poll.py +0 -50
  281. wandb/sdk/internal/system/assets/gpu_apple.py +0 -177
  282. wandb/sdk/internal/update.py +0 -113
  283. wandb/sdk/lib/_settings_toposort_generate.py +0 -159
  284. wandb/sdk/lib/_settings_toposort_generated.py +0 -251
  285. wandb/sdk/lib/_wburls_generate.py +0 -25
  286. wandb/sdk/lib/_wburls_generated.py +0 -22
  287. wandb/sdk/lib/console.py +0 -39
  288. wandb/sdk/lib/mailbox.py +0 -460
  289. wandb/sdk/lib/reporting.py +0 -99
  290. wandb/sdk/lib/tracelog.py +0 -255
  291. wandb/sdk/lib/viz.py +0 -123
  292. wandb/sdk/lib/wburls.py +0 -46
  293. wandb/sdk/service/service_base.py +0 -50
  294. wandb/sdk/service/service_sock.py +0 -70
  295. wandb/sdk/wandb_manager.py +0 -232
  296. /wandb/{sklearn → integration/sklearn}/__init__.py +0 -0
  297. /wandb/{sklearn → integration/sklearn}/calculate/__init__.py +0 -0
  298. /wandb/{sklearn → integration/sklearn}/calculate/decision_boundaries.py +0 -0
  299. /wandb/{sklearn → integration/sklearn}/calculate/feature_importances.py +0 -0
  300. /wandb/{sklearn → integration/sklearn}/plot/__init__.py +0 -0
  301. {wandb-0.17.9.dist-info → wandb-0.19.8.dist-info}/entry_points.txt +0 -0
  302. {wandb-0.17.9.dist-info → wandb-0.19.8.dist-info}/licenses/LICENSE +0 -0
package_readme.md CHANGED
@@ -68,6 +68,14 @@ Use your favorite framework with W&B. W&B integrations make it fast and easy to
68
68
 
69
69
   
70
70
 
71
+ # Python Version Support
72
+
73
+ We are committed to supporting our minimum required Python version for *at least* six months after its official end-of-life (EOL) date, as defined by the Python Software Foundation. You can find a list of Python EOL dates [here](https://devguide.python.org/versions/).
74
+
75
+ When we discontinue support for a Python version, we will increment the library’s minor version number to reflect this change.
76
+
77
+  
78
+
71
79
  # Contribution guidelines
72
80
  Weights & Biases ❤️ open source, and we welcome contributions from the community! See the [Contribution guide](https://github.com/wandb/wandb/blob/main/CONTRIBUTING.md) for more information on the development workflow and the internals of the wandb library. For wandb bugs and feature requests, visit [GitHub Issues](https://github.com/wandb/wandb/issues) or contact support@wandb.com.
73
81
 
wandb/__init__.py CHANGED
@@ -8,9 +8,10 @@ For scripts and interactive notebooks, see https://github.com/wandb/examples.
8
8
 
9
9
  For reference documentation, see https://docs.wandb.com/ref/python.
10
10
  """
11
- __version__ = "0.17.9"
11
+ from __future__ import annotations
12
+
13
+ __version__ = "0.19.8"
12
14
 
13
- from typing import Optional
14
15
 
15
16
  from wandb.errors import Error
16
17
 
@@ -28,8 +29,6 @@ setup = wandb_sdk.setup
28
29
  _attach = wandb_sdk._attach
29
30
  _sync = wandb_sdk._sync
30
31
  _teardown = wandb_sdk.teardown
31
- watch = wandb_sdk.watch
32
- unwatch = wandb_sdk.unwatch
33
32
  finish = wandb_sdk.finish
34
33
  join = finish
35
34
  login = wandb_sdk.login
@@ -51,7 +50,7 @@ _lazyloader = wandb.wandb_lib.lazyloader # type: ignore
51
50
  # Call import module hook to set up any needed require hooks
52
51
  wandb.sdk.wandb_require._import_module_hook()
53
52
 
54
- from wandb import wandb_torch
53
+ from wandb.integration.torch import wandb_torch
55
54
 
56
55
  # Move this (keras.__init__ expects it at top level)
57
56
  from wandb.sdk.data_types._private import _cleanup_media_tmp_dir
@@ -76,8 +75,7 @@ from wandb.data_types import JoinedTable
76
75
 
77
76
  from wandb.wandb_agent import agent
78
77
 
79
- from wandb.sdk.lib.viz import visualize
80
- from wandb import plot
78
+ from wandb.plot import visualize, plot_table
81
79
  from wandb.integration.sagemaker import sagemaker_auth
82
80
  from wandb.sdk.internal import profiler
83
81
 
@@ -113,10 +111,12 @@ def _assert_is_user_process():
113
111
  # globals
114
112
  Api = PublicApi
115
113
  api = InternalApi()
116
- run: Optional["wandb_sdk.wandb_run.Run"] = None
114
+ run: wandb_sdk.wandb_run.Run | None = None
117
115
  config = _preinit.PreInitObject("wandb.config", wandb_sdk.wandb_config.Config)
118
116
  summary = _preinit.PreInitObject("wandb.summary", wandb_sdk.wandb_summary.Summary)
119
117
  log = _preinit.PreInitCallable("wandb.log", wandb_sdk.wandb_run.Run.log) # type: ignore
118
+ watch = _preinit.PreInitCallable("wandb.watch", wandb_sdk.wandb_run.Run.watch) # type: ignore
119
+ unwatch = _preinit.PreInitCallable("wandb.unwatch", wandb_sdk.wandb_run.Run.unwatch) # type: ignore
120
120
  save = _preinit.PreInitCallable("wandb.save", wandb_sdk.wandb_run.Run.save) # type: ignore
121
121
  restore = wandb_sdk.wandb_run.restore
122
122
  use_artifact = _preinit.PreInitCallable(
@@ -142,9 +142,6 @@ mark_preempting = _preinit.PreInitCallable(
142
142
  "wandb.mark_preempting", wandb_sdk.wandb_run.Run.mark_preempting # type: ignore
143
143
  )
144
144
 
145
- plot_table = _preinit.PreInitCallable(
146
- "wandb.plot_table", wandb_sdk.wandb_run.Run.plot_table
147
- )
148
145
  alert = _preinit.PreInitCallable("wandb.alert", wandb_sdk.wandb_run.Run.alert) # type: ignore
149
146
 
150
147
  # record of patched libraries
@@ -201,16 +198,12 @@ if "dev" in __version__:
201
198
  import wandb.env
202
199
  import os
203
200
 
204
- # disable error reporting in dev versions for the python client
201
+ # Disable error reporting in dev versions.
205
202
  os.environ[wandb.env.ERROR_REPORTING] = os.environ.get(
206
- wandb.env.ERROR_REPORTING, "false"
203
+ wandb.env.ERROR_REPORTING,
204
+ "false",
207
205
  )
208
206
 
209
- # turn on wandb-core for dev versions
210
- if not wandb.env.is_require_legacy_service():
211
- os.environ[wandb.env._REQUIRE_CORE] = os.environ.get(
212
- wandb.env._REQUIRE_CORE, "true")
213
-
214
207
  _sentry = _Sentry()
215
208
  _sentry.setup()
216
209
 
@@ -247,4 +240,7 @@ __all__ = (
247
240
  "use_model",
248
241
  "link_model",
249
242
  "define_metric",
243
+ "watch",
244
+ "unwatch",
245
+ "plot_table",
250
246
  )