remove_model
Delete a specified model by its saved name using the Enkrypt AI MCP Server. Returns a response with details of the deleted model for verification.
Instructions
Remove a model.
Args: test_model_saved_name: The saved name of the model to be removed.
Returns: A dictionary containing the response message and details of the deleted model.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
test_model_saved_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"test_model_saved_name": {
"title": "Test Model Saved Name",
"type": "string"
}
},
"required": [
"test_model_saved_name"
],
"title": "remove_modelArguments",
"type": "object"
}