Skip to content

Retrieve job outputs

simulo outputs gives you one list of the downloadable outputs attached to a job. Use it when you want to see models and recordings together instead of checking each output type separately.

With no job id, the command uses your most recent job:

Terminal window
simulo outputs

Name a job when you need a specific run:

Terminal window
simulo outputs <job-id>

The table shows 20 items by default. Use --limit N for 1 through 250 items, or use JSON without a limit when you need the complete machine-readable list:

Terminal window
simulo outputs <job-id> --limit 100
simulo outputs <job-id> --json

Copy the name or Output ID from the list, then choose where to save it:

Terminal window
simulo outputs <job-id> best.pt -o ./best.pt
simulo outputs <job-id> rollout.mcap -o ./rollout.mcap

The CLI checks the downloaded bytes against the recorded digest when one is available. A mismatch fails the command instead of leaving a file you might trust by mistake.

Terminal window
simulo outputs <job-id> --all -o ./job-outputs/

--all downloads every output; it does not expand the table. The -o value is a directory for this form.

If you already know which output type you want, the focused commands still work: simulo models <job-id> lists or downloads checkpoints, and simulo recordings <job-id> downloads MCAP recordings.

Call simulo.save_output(name, path) from a job body to register a produced file. Returning from the job successfully makes eligible registrations available to the worker for upload. A file appears in simulo outputs alongside models and recordings only after that upload is persisted.

A cancelled, timed-out, crashed, or failed job does not deliver files it registered this way, and a refused or unsuccessful upload can also leave a registration undelivered. Return normally after writing the file, then confirm it appears in simulo outputs; use a named Volume when another job needs shared durable files.

Open Simulo Console, choose Jobs, select the job, then use its download panel. It shows the same downloadable job outputs; use the download action on the item you want.