You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: address review feedback for submit-only migration
Clean up incomplete run→submit search/replace leftovers in docs and
author skills, restore critical submit CLI regression tests, and fix
invalid submit_remote(sdk=...) examples after rebasing onto main.
Signed-off-by: Matt Kornfield <mkornfield@nvidia.com>
| Model optimization | An agent uses a single frontier model where a smaller model or route split may preserve quality at lower cost | Suggests a model swap or Switchyard random-routing virtual model |
26
26
| Skill optimization | The agent uses skills and has an evaluation suite | Suggests running `nemo agents optimize-skills` to improve skill files and keep changes that pass evaluation |
27
-
| Prompt optimization | The agent has an optimization config and baseline dataset | Suggests `nemo agents optimize run` for Fabric-backed tuning |
27
+
| Prompt optimization | The agent has an optimization config and baseline dataset | Suggests `nemo agents optimize submit` for Fabric-backed tuning |
28
28
| New model scan | Difference between the current model list and the previous optimizer snapshot | Suggests evaluating or auditing newly available models |
29
29
30
30
Optimizer state is stored in the `nemo-agent-optimizer` fileset:
@@ -195,7 +195,7 @@ and keeps the change only when the evaluation result improves.
195
195
<Tabtitle="CLI">
196
196
197
197
```bash
198
-
nemo agents optimize-skills run --spec-file .agent-improver.yml
@@ -152,7 +146,7 @@ Both preview and run specs use the shared `AnonymizerRequest` shape:
152
146
|`data.text_column`| string | no | Defaults to `text`. |
153
147
|`data.id_column`| string | no | Optional record identifier column. |
154
148
|`data.data_summary`| string | no | Optional short description of the data. |
155
-
|`model_configs`| list of Data Designer `ModelConfig`| depends | Required for `preview submit` and `run submit`; optional for `preview submit` and `run submit`. |
149
+
|`model_configs`| list of Data Designer `ModelConfig`| depends | Required for `preview submit` and `run submit`. |
156
150
|`selected_models`| object with `detection` / `replace` / `rewrite`| no | Role overrides on top of bundled defaults. Requires `model_configs`. |
Copy file name to clipboardExpand all lines: docs/data-designer/cli.mdx
+4-27Lines changed: 4 additions & 27 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ description: ""
7
7
---
8
8
<aid="data-designer-cli"></a>
9
9
10
-
The NeMo Data Designer plugin adds the `nemo data-designer` command group. Use it to execute Data Designer workloads locally in the CLI process or submit them to NeMo Services.
10
+
The NeMo Data Designer plugin adds the `nemo data-designer` command group. Use it to submit preview and create workloads to NeMo Services.
11
11
12
12
## Configuration Sources
13
13
@@ -16,6 +16,7 @@ The `preview` and `create` commands accept a configuration source path. The most
The same configuration source can usually be used with `run` or `submit`. Resource choices determine whether it is compatible with NeMo Services execution; see [Execution Modes](/documentation/design-synthetic-data/execution-modes).
34
-
35
-
## Run Versus Submit
34
+
The same configuration source is used with `submit`. Resource choices determine whether it is compatible with NeMo Services execution; see [Execution Modes](/documentation/design-synthetic-data/execution-modes).
36
35
37
-
`run` executes the Data Designer workload locally, in the CLI process. This can be fully local, but it is not an offline-only mode. A local run can still use the Files API, Secrets API, and Inference Gateway API from a running NeMo Services cluster when the configuration references the corresponding resources.
36
+
## Submit Versus Platform Execution
38
37
39
38
`submit` sends the workload to NeMo Services. The Data Designer API and Jobs API coordinate execution, job lifecycle, logs, and artifact persistence. The NeMo Services deployment may itself be local or remote.
Copy file name to clipboardExpand all lines: docs/evaluator/metrics/results.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@ An `EvaluationResult` contains:
16
16
-**Aggregate scores**: `result.aggregate_scores.scores`, with statistics such as mean, min, max, count, NaN count, variance, standard deviation, percentiles, and rubric distributions when applicable.
17
17
-**Row scores**: `result.row_scores`, with the original dataset row, generated sample payload, metric scores, request logs, and row-level errors.
18
18
19
-
## Get Results from a Local Run
19
+
## Get Results Inline
20
20
21
21
```python
22
22
from nemo_evaluator_sdk import Evaluator as LocalEvaluator
Copy file name to clipboardExpand all lines: docs/safe-synthesizer/about/host-local-development.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ description: ""
8
8
9
9
<aid="host-local-development"></a>
10
10
11
-
NeMo Safe Synthesizer no longer exposes a host-local workload command. Create synthesis jobs through the platform Jobs API or SDK so scheduling, storage, logs, and artifacts all flow through the supported job path.
11
+
Create Safe Synthesizer workloads through the platform Jobs API or SDK so scheduling, storage, logs, and artifacts all flow through the supported job path.
12
12
13
13
The `nemo safe-synthesizer` CLI still includes runtime utilities for inspecting or preparing the task runtime used by development and job debugging.
0 commit comments