Embeddings
Create embeddings
Generate text embeddings. OpenAI-compatible.
post/embeddings
Request body
Example request
{
"model": "text-embedding-3-small"
}Response
Embedding response containing a list of embedding vectors.
Example response
{
"object": "list",
"data": [
{
"object": "embedding"
}
],
"model": "text-embedding-3-small"
}Changes
No recorded changes to this endpoint across all 1 revision of this API.