Converts text into vector representations. Supports batch input, multiple models, and configurable output dimensions.
API key used for request authentication. Obtain an API key before using the API.
The text to be converted into embeddings. Maximum tokens per element: 32768. Maximum request body size: 2MB
1000The embedding model used for this request. octen-embedding-0.6b (max dim: 1024) for cost/throughput priority; octen-embedding-4b (max dim: 2560) for most applications; octen-embedding-8b (max dim: 4096) for accuracy-critical tasks.
octen-embedding-0.6b, octen-embedding-4b, octen-embedding-8b The dimensionality of the output embedding vectors. Defaults to the model's max dimension (0.6b: 1024, 4b: 2560, 8b: 4096). If set to a value smaller than the model default, the embedding will be truncated to the first N values. Any positive integer ≤ model default dimension is allowed.
Specifies whether the input is a query or a document for retrieval. Different values apply different internal prompts: query → "Represent the query for retrieving supporting"; document → "Represent the document for retrieval". Null means no special prompt is applied.
query, document Controls how over-length inputs are handled. true: input is automatically truncated; false: request fails if input exceeds limits.