Reflex Docs
CLI

reflex artifacts

Inspect trained model artifacts.

An artifact is the output of a successful training run — the trained model or adapter you'll later attach to a session or deployment.

reflex artifacts list

List every artifact your organization owns.

reflex artifacts list

reflex artifacts get

Fetch full details for a single artifact.

reflex artifacts get model_abc123

The response includes the artifact's name, version, base model, and the training run that produced it. The CLI suggests follow-up commands in the next array of the JSON response, e.g.:

{
  "ok": true,
  "artifact": { "id": "model_abc123", "name": "...", "version": "v1" },
  "next": [
    "reflex deploy --artifact model_abc123 --name my-deployment"
  ]
}

Once deployed, drive the robot with reflex connect.