Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
15 commits
Select commit Hold shift + click to select a range
21f1094
feat(client): typed-client plumbing for the CLI migration
maxdubrinsky Sep 10, 2026
b2fa8ad
feat(cli): typed-client seam and shared helpers for hand-written comm…
maxdubrinsky Sep 10, 2026
9c1f166
test: satisfy the ty gate and patch OIDC discovery where the bootstra…
maxdubrinsky Sep 11, 2026
055d0e9
fix(cli): keep the sort key in merged list output
maxdubrinsky Sep 11, 2026
c0e1d26
fix(cli): address review comments on typed-client plumbing
maxdubrinsky Sep 11, 2026
85aa23c
Merge origin/main into cli-typed-client-plumbing/mdubrinsky
maxdubrinsky Sep 11, 2026
877f379
fix(plugin): drop the unused nemo_platform SDK re-export in sdk.py
maxdubrinsky Sep 11, 2026
a7fd46c
fix(plugin): restore lazy nemo_platform re-export in sdk.py
maxdubrinsky Sep 11, 2026
555b2c6
Merge origin/main into cli-typed-client-plumbing/mdubrinsky
maxdubrinsky Sep 11, 2026
a37b523
Merge remote-tracking branch 'origin/main' into cli-typed-client-plum…
maxdubrinsky Sep 11, 2026
50e72cb
Merge remote-tracking branch 'origin/main' into cli-typed-client-plum…
maxdubrinsky Sep 11, 2026
260ce61
Merge remote-tracking branch 'origin/main' into cli-typed-client-plum…
maxdubrinsky Sep 11, 2026
87b8e8a
Merge remote-tracking branch 'origin/main' into cli-typed-client-plum…
maxdubrinsky Sep 11, 2026
377fb4d
Merge remote-tracking branch 'origin/main' into cli-typed-client-plum…
maxdubrinsky Sep 11, 2026
633afbf
refactor(cli): host guardrail, intake and experiments in their owning…
maxdubrinsky Sep 10, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/cli/reference.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -8043,7 +8043,7 @@ Some spec fields cannot be represented as CLI flags: `generate.file_extensions`,

### nemo guardrail

Manage guardrails.
Plugin commands for guardrail.

**Usage:**

Expand Down Expand Up @@ -10492,7 +10492,7 @@ Some spec fields cannot be represented as CLI flags: `config.data.max_sequences_

### nemo experiments

Manage experiments.
Plugin commands for experiments.

**Usage:**

Expand Down Expand Up @@ -10710,7 +10710,7 @@ nemo experiments update [OPTIONS] PATH_NAME

### nemo intake

Intake operations.
Plugin commands for intake.

**Usage:**

Expand Down
5 changes: 4 additions & 1 deletion packages/filesets/src/filesets/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
fsspec integration for NeMo Platform filesets via the sdk.files.fsspec property.

Located at: nemo_platform/filesets/ (after vendoring)

``ListFilesResponse`` lives in :mod:`filesets.transfer`; it is also re-exported
here for backwards compatibility.
"""

from .filesystem.callbacks import RichFileProgressCallback as RichFileProgressCallback
Expand All @@ -17,4 +20,4 @@
from .filesystem.filesystem import build_fileset_ref as build_fileset_ref
from .filesystem.filesystem import parse_fileset_path as parse_fileset_path
from .filesystem.filesystem import parse_fileset_ref as parse_fileset_ref
from .resources import ListFilesResponse as ListFilesResponse
from .transfer import ListFilesResponse as ListFilesResponse
Loading
Loading