Mistral AI · Schema

TrainingFile

AgentsArtificial IntelligenceBatch ProcessingChatEmbeddingsFine-TuningLarge Language ModelsOCR

Properties

Name Type Description
file_id string The ID of the uploaded training file.
weight number The weight of this training file in the training mix.
View JSON Schema on GitHub

JSON Schema

mistral-ai-trainingfile-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TrainingFile",
  "title": "TrainingFile",
  "type": "object",
  "required": [
    "file_id"
  ],
  "properties": {
    "file_id": {
      "type": "string",
      "format": "uuid",
      "description": "The ID of the uploaded training file."
    },
    "weight": {
      "type": "number",
      "description": "The weight of this training file in the training mix.",
      "default": 1.0
    }
  }
}