Mistral AI · Schema

EmbeddingResponse

AgentsArtificial IntelligenceBatch ProcessingChatEmbeddingsFine-TuningLarge Language ModelsOCR

Properties

Name Type Description
id string A unique identifier for the embedding request.
object string The object type, always list.
data array A list of embedding objects.
model string The model used to generate the embeddings.
usage object
View JSON Schema on GitHub

JSON Schema

mistral-ai-embeddingresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EmbeddingResponse",
  "title": "EmbeddingResponse",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "A unique identifier for the embedding request."
    },
    "object": {
      "type": "string",
      "description": "The object type, always list.",
      "enum": [
        "list"
      ]
    },
    "data": {
      "type": "array",
      "description": "A list of embedding objects.",
      "items": {
        "$ref": "#/components/schemas/EmbeddingObject"
      }
    },
    "model": {
      "type": "string",
      "description": "The model used to generate the embeddings."
    },
    "usage": {
      "$ref": "#/components/schemas/Usage"
    }
  }
}