Text Embeddings Inference
OpenAI compatible route. Returns a 424 status code if the model is not an embedding model.
post/v1/embeddings
Request body
Example request
{
"model": "null",
"user": "null"
}Response
Embeddings
Example response
{
"data": [
{
"object": "embedding"
}
],
"model": "thenlper/gte-base",
"object": "list"
}