{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "CreateEmbeddingResponse",
"type": "object",
"description": "Response from the embeddings API.",
"properties": {
"object": {
"type": "string",
"description": "The object type."
},
"data": {
"type": "array",
"description": "The list of embeddings generated."
},
"model": {
"type": "string",
"description": "The model used to generate the embeddings."
}
}
}