Public workspaces
By default a workspace is private: only its members can see anything in it. A workspace owner can instead make it public, which lets anyone on the internet read it without signing in.
This is useful for publishing results — a paper’s training curves, a public benchmark, an open-source project’s runs — where you want people to explore the data rather than look at screenshots of it.
What “public” exposes
Section titled “What “public” exposes”Making a workspace public grants anonymous, signed-out read access to everything in it:
- every project in the workspace
- every run, including its config, attributes, and tags
- every metric, series, and chart
- every RL environment and its data
Public access is read-only. Anonymous visitors cannot create, edit, archive, or delete anything, and they can’t see workspace members, invitations, or API keys — those stay members-only regardless of visibility.
Make a workspace public
Section titled “Make a workspace public”Only workspace owners can change visibility.
- Open the workspace Settings.
- Go to the Danger zone section.
- Turn on the Public workspace switch.
- Read the confirmation dialog and choose Make public.
Make a workspace private again
Section titled “Make a workspace private again”Turn the Public workspace switch off and confirm with Make private. The workspace stops being readable by the public immediately, and only members can access it again.
Sharing a public workspace
Section titled “Sharing a public workspace”Once a workspace is public, the ordinary portal URLs work for anyone — no separate “publish” step and no special share link. Because the portal encodes your view in the URL, you can send someone a link to a specific comparison, filter, or selected metrics and they’ll land on exactly that view. See Sharing & bookmarking.
Signed-out visitors see the workspace in read-only form with a Sign in button in the header.
Reading a public workspace from the SDK
Section titled “Reading a public workspace from the SDK”Public workspaces are readable through the query SDK without an API key, which makes them convenient for reproducible notebooks and examples:
from metrana.query import QueryClient
client = QueryClient( workspace_name="some-public-workspace", project_name="some-project",)runs = client.fetch_runs()fetch_runs needs a project, so give the client a default project_name (or pass project_name= per call);
without either it raises ConfigError.
See Query configuration for details.