Mistral AI · Schema

Tool

AgentsArtificial IntelligenceBatch ProcessingChatEmbeddingsFine-TuningLarge Language ModelsOCR

Properties

Name Type Description
type string The type of the tool. Currently only function is supported.
function object
View JSON Schema on GitHub

JSON Schema

mistral-ai-tool-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Tool",
  "title": "Tool",
  "type": "object",
  "required": [
    "type",
    "function"
  ],
  "properties": {
    "type": {
      "type": "string",
      "enum": [
        "function"
      ],
      "description": "The type of the tool. Currently only function is supported."
    },
    "function": {
      "$ref": "#/components/schemas/FunctionDefinition"
    }
  }
}