Get Model Status
GET/model-svc/model/:modelId/status
Retrieves the status of a model by ID.
Requires the model-svc:model:view
permission.
Request
Path Parameters
modelId stringrequired
Model ID
Responses
- 200
- 401
- 500
Model status retrieved successfully
- application/json
- Schema
- Example (from schema)
Schema
status
object
address string
assetsReady boolean
running boolean
Running triggers onModelLaunch on the frontend. Running is true when the model is both running and answering - fully loaded.
{
"status": {
"address": "string",
"assetsReady": true,
"running": true
}
}
Unauthorized
- application/json
- Schema
Schema
string
Internal Server Error
- application/json
- Schema
Schema
string
Loading...