Skip to main content

StewardStatusResponse

Whether the steward exists and what serves it right now.

enabledEnabled (boolean)required

Whether intelligent-fabric mode is enabled in Settings.

presentPresent (boolean)required

Whether a steward placement currently exists in state.

readyReady (boolean)

Whether every runner of the steward placement reports Ready: present-but-not-ready means the model is still downloading or loading, and chat requests will queue or fail until ready.

Default value: false
steward_model object

Model id of the steward brain, when present.

anyOf
string
instance_id object

The steward instance id, when present.

anyOf
string
stateState (string)

One-word lifecycle summary derived from the other fields plus canary history: 'disabled' (mode off), 'downloading' (placed, weights still staging), 'starting' (placing or loading), 'ready' (serving, clean canary), 'degraded' (serving, but the liveness canary has an outstanding failed probe). The boolean fields remain authoritative; this is the renderable summary.

Possible values: [disabled, downloading, starting, ready, degraded]

Default value: disabled
StewardStatusResponse
{
"enabled": true,
"present": true,
"ready": false,
"steward_model": "string",
"instance_id": "string",
"state": "disabled"
}