Mistral AI · Schema

Integration

AgentsArtificial IntelligenceBatch ProcessingChatEmbeddingsFine-TuningLarge Language ModelsOCR

Properties

Name Type Description
type string The type of integration.
project string The project name for the integration.
name string The run name for the integration.
api_key string The API key for the integration service.
View JSON Schema on GitHub

JSON Schema

mistral-ai-integration-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Integration",
  "title": "Integration",
  "type": "object",
  "required": [
    "type"
  ],
  "properties": {
    "type": {
      "type": "string",
      "description": "The type of integration.",
      "enum": [
        "wandb"
      ]
    },
    "project": {
      "type": "string",
      "description": "The project name for the integration."
    },
    "name": {
      "type": "string",
      "description": "The run name for the integration."
    },
    "api_key": {
      "type": "string",
      "description": "The API key for the integration service."
    }
  }
}