LLM API
Create embeddings
POST
Creates an embedding vector representing the input text.
Request Headers
Enum: application/json
Bearer authentication format, for example: Bearer {{API Key}}.
Request Body
Input text to embed, encoded as a string or array of tokens. To embed multiple inputs in a single request, pass an array of strings or array of token arrays. The input must not exceed the max input tokens for the model (8192 tokens for text-embedding-ada-002), cannot be an empty string, and any array must be 2048 dimensions or less.
ID of the model to use. Enum: baai/bge-m3
.
The format to return the embeddings in. Can be either float or base64.
Response
Fixed as list
List of embeddings vectors generated by the model.
The ID of the model used.
Usage information.
Was this page helpful?