Perplexity · Schema
Contextualized Embeddings Response
Response body for contextualized embeddings request
Properties
| Name | Type | Description |
|---|---|---|
| object | string | The object type |
| data | array | List of contextualized embedding objects |
| model | string | The model used to generate embeddings |
| usage | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ContextualizedEmbeddingsResponse",
"title": "Contextualized Embeddings Response",
"type": "object",
"description": "Response body for contextualized embeddings request",
"properties": {
"object": {
"type": "string",
"title": "Object",
"description": "The object type",
"example": "list"
},
"data": {
"type": "array",
"title": "Data",
"description": "List of contextualized embedding objects",
"items": {
"$ref": "#/components/schemas/ContextualizedEmbeddingObject"
}
},
"model": {
"type": "string",
"title": "Model",
"description": "The model used to generate embeddings"
},
"usage": {
"$ref": "#/components/schemas/EmbeddingsUsage"
}
}
}