Python SDK: Adds section on optional dependencies#1906
Open
Python SDK: Adds section on optional dependencies#1906
Conversation
Contributor
📚 Mintlify Preview Links📝 Changed (1 total)📄 Pages (1)
🤖 Generated automatically when Mintlify deployment succeeds |
dmitryduev
reviewed
Nov 21, 2025
models/ref/python.mdx
Outdated
| | `sweeps`| Manage sweeps. | [sweeps](https://pypi.org/project/sweeps/) | | ||
| | `launch` | Installs cloud providers and orchestration platforms | [awscli](https://pypi.org/project/awscli/), [azure-identity](https://pypi.org/project/azure-identity/), [azure-containerregistry](https://pypi.org/project/azure-containerregistry/), and more | | ||
| | `models`| | [cloudpickle](https://pypi.org/project/cloudpickle/) | | ||
| | `perf` | High-performance JSON serializer. | [orjson](https://pypi.org/project/orjson/) | |
Member
There was a problem hiding this comment.
We're trying hard to make orjson a requirement, so this will go away soon. It doesn't depend on us, unfortunately: ijl/orjson#607
Suggested change
| | `perf` | High-performance JSON serializer. | [orjson](https://pypi.org/project/orjson/) | |
1 task
ngrayluna
commented
Dec 5, 2025
models/ref/python.mdx
Outdated
|
|
||
| Use extras when you need deeper integration with specific platforms or features. For example: | ||
|
|
||
| * Install `gcp` if you store datasets, models, or artifacts in Google Cloud Storage. |
Contributor
Author
There was a problem hiding this comment.
Move, make h3 headings. Explain what "dependency" means.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Adds table of optional Python SDK dependencies (i.e. "extras"). Note that some are excluded per recommendation of Eng and SDK Team.
List taken from: https://github.com/wandb/wandb/blob/main/pyproject.toml#L61
How it works
models/ref/python.mdx:wandb/triggers action (runspython generate_sdk_extras_table.py) inwandb/docs.GH Action trigger PR
See this PR for workflow added to wandb/wandb that triggers when pyproject.toml file is edited: wandb/wandb#10976
Callout for reviewers
My GH Action writing skills are OK. TL;DR I used Claude Code to write the workflow files in
wandb/andwandb/docs.