Mistral AI · Schema

AgentCompletionResponse

AgentsArtificial IntelligenceBatch ProcessingChatEmbeddingsFine-TuningLarge Language ModelsOCR

Properties

Name Type Description
id string A unique identifier for the agent completion.
object string The object type.
created integer The Unix timestamp of when the completion was created.
model string The model used by the agent for the completion.
choices array A list of completion choices.
usage object
View JSON Schema on GitHub

JSON Schema

mistral-ai-agentcompletionresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AgentCompletionResponse",
  "title": "AgentCompletionResponse",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "A unique identifier for the agent completion."
    },
    "object": {
      "type": "string",
      "description": "The object type.",
      "enum": [
        "chat.completion"
      ]
    },
    "created": {
      "type": "integer",
      "description": "The Unix timestamp of when the completion was created."
    },
    "model": {
      "type": "string",
      "description": "The model used by the agent for the completion."
    },
    "choices": {
      "type": "array",
      "description": "A list of completion choices.",
      "items": {
        "$ref": "#/components/schemas/AgentCompletionChoice"
      }
    },
    "usage": {
      "$ref": "#/components/schemas/Usage"
    }
  }
}