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
Don't restate the task name, full hyperparameter dict, or file paths — those are already on the job record. Don't copy the user's last message verbatim — synthesize. If the conversation is truly empty of signal, fall back to `"Rerun of <id>, no changes"`.
546
546
547
+
### Overriding task parameters per queue: `--param key=value`
548
+
549
+
`lab task queue` accepts repeatable `--param key=value` (alias `-p`) to override values from the task's `parameters:` block for a single job, without mutating `task.yaml`. Values are parsed as YAML scalars: `score=0.42` is a float, `enabled=true` is a bool, `tag=baseline` is a string. Unknown keys (not declared in the task's `parameters:`) fail hard so typos are caught at queue time.
550
+
551
+
```bash
552
+
# Sweep the same task with different hyperparameters
Use this instead of `lab task edit --from-file` between queue calls — editing the task affects already-queued-but-not-yet-dispatched jobs and is racy.
565
+
547
566
### Selecting a provider when queuing a task
548
567
549
568
`lab task queue` has no `--provider` flag. With `--no-interactive` it picks the default (usually Local). To pick a specific provider, drive the interactive prompts via stdin. The flow is:
@@ -633,7 +652,7 @@ This applies to launching jobs, fetching logs, checking cluster status, and ever
|`lab task upload <id> <path>`| Upload files/directories into an existing task (`--no-interactive`) | Yes |
635
654
|`lab task delete <id>`| Delete a task (`--no-interactive` to skip confirmation) | Yes |
636
-
|`lab task queue <id>`| Queue task on compute provider (`-m/--description` for a markdown run note; required for agents, see "Always write a run description") | Yes |
655
+
|`lab task queue <id>`| Queue task on compute provider (`-m/--description` for a markdown run note; `-p/--param key=value` to override task parameters per run; required for agents, see "Always write a run description") | Yes |
637
656
|`lab task gallery`| Browse/import from task gallery | Yes |
638
657
|`lab job list`| List jobs (`--running` for active only) | Yes |
639
658
|`lab job info <id>`| Get detailed job information | Yes |
0 commit comments