Models
Manage LLM models available to a workspace. Models represent provider and family pairs (e.g., “anthropic/claude-sonnet-4.6”). Workspaces are seeded with the supported models and you can enable or disable each one.
List models
client.models.list(stringworkspaceID, ModelListParams { bundleKey, cursor, limit, 4 more } query?, RequestOptionsoptions?): CursorPagination<Model { metadata, spec } >
GET/v1/workspaces/{workspaceId}/models
Get a model by ID
client.models.retrieve(stringid, ModelRetrieveParams { workspaceId } params, RequestOptionsoptions?): Model { metadata, spec }
GET/v1/workspaces/{workspaceId}/models/{id}
Set model status
client.models.setStatus(stringid, ModelSetStatusParams { workspaceId, status } params, RequestOptionsoptions?): Model { metadata, spec }
PUT/v1/workspaces/{workspaceId}/models/{id}/status