veri.studio/runs/<job_id> that anyone can open without an account, and lists it on the Explore tab inside the dashboard. The public page shows live metric charts and updates while the run trains, so you can share an in-progress experiment the same way you’d share a finished one.
What becomes public
A published run shows:- The run name, training method, and base model.
- Your display name as the publisher.
- Status, step progress, and elapsed time.
- Metric charts (everything the trainer logs: loss, reward, and any custom metrics).
- Links to the model weights on Hugging Face and the W&B run, when the job has them.
The Hugging Face link is shown exactly as the job recorded it. If the repository is private, visitors get a 404 from Hugging Face; publish the repo there if you want the weights reachable.
Publish from the dashboard
- Open the run under Training.
- Select Share, review what will be shown, and select Publish.
- Copy the public URL from the dialog.
Publish over the API
display_name is optional; omitting it lists the publisher as “Veri user”. Unpublish with DELETE on the same path. The job object’s visibility field reports private, public, or admin_hidden (removed by Veri; contact support).
Public data is also readable without authentication, which is what the public page uses:
GET /v1/public/runs— published runs, newest first, cursor-paginated withlimitandbefore.GET /v1/public/runs/{job_id}— one published run.GET /v1/public/runs/{job_id}/metrics— its per-step metrics, same shape as the private metrics endpoint.

