Mistral AI · Schema
Embedding
Properties
| Name | Type | Description |
|---|---|---|
| object | string | |
| embedding | array | The embedding vector |
| index | integer | Index of the embedding in the input list |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Embedding",
"title": "Embedding",
"type": "object",
"properties": {
"object": {
"type": "string",
"enum": [
"embedding"
]
},
"embedding": {
"type": "array",
"items": {
"type": "number"
},
"description": "The embedding vector"
},
"index": {
"type": "integer",
"description": "Index of the embedding in the input list"
}
}
}