Undeploy Model
Models
Undeploy Model
Undeploy a deployed aligned model.
This endpoint undeploys a deployed model, removing it from the inference service.
Path Parameters:
model_id: Unique identifier of the model to undeploy
Returns:
String containing the model ID for tracking undeployment status
Raises:
400: If model is already undeployed404: If model or alignment task not found
Example Request:
DELETE /api/v3/models/undeploy-model/alignment-xyz789
Headers: {"Authorization": "Bearer <api_key>"}
Example Response:
"alignment-xyz789"
Notes:
- Use
/models/alignedto check deployment status after undeployment - Once UNDEPLOYED, the model will no longer be available for inference
- The model can be redeployed later using the deploy endpoint
DELETE
Undeploy Model