Create embeddings
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
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 quick brown fox jumped over the lazy dog"
"nomic-ai/nomic-embed-text-v1.5"
The number of dimensions the resulting output embeddings should have. Only supported in nomic-ai/nomic-embed-text-v1.5
and later models.
x >= 1
Response
The list of embeddings generated by the model.
Represents an embedding vector returned by embedding endpoint.
The name of the model used to generate the embedding.
The object type, which is always "list".
list
The usage information for the request.
Was this page helpful?