Mistral AI · Schema

DeleteModelResponse

AgentsArtificial IntelligenceBatch ProcessingChatEmbeddingsFine-TuningLarge Language ModelsOCR

Properties

Name Type Description
id string The ID of the deleted model.
object string The object type.
deleted boolean Whether the model was successfully deleted.
View JSON Schema on GitHub

JSON Schema

mistral-ai-deletemodelresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DeleteModelResponse",
  "title": "DeleteModelResponse",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "The ID of the deleted model."
    },
    "object": {
      "type": "string",
      "description": "The object type."
    },
    "deleted": {
      "type": "boolean",
      "description": "Whether the model was successfully deleted."
    }
  }
}