Embeddings API
Create embeddings
POST
/
embeddings
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
application/json
Input text to embed, encoded as a string. To embed multiple inputs in a single request, pass an array of strings. The input must not exceed the max input tokens for the model (8192 tokens for nomic-ai/nomic-embed-text-v1.5
), cannot be an empty string, and any array must be 2048 dimensions or less.
The number of dimensions the resulting output embeddings should have. Only supported in nomic-ai/nomic-embed-text-v1.5
and later models.
Required range:
x > 1
Response
200 - application/json
The list of embeddings generated by the model.
The name of the model used to generate the embedding.
The object type, which is always "list".
Available options:
list
The usage information for the request.
Was this page helpful?