Skip to content
For the complete documentation index, see llms.txt. Markdown versions of documentation pages are available by appending .md to the page URL.
Primary navigation

Embeddings

Get a vector representation of a given input that can be easily consumed by machine learning models and algorithms.

Create embeddings
client.embeddings.create(EmbeddingCreateParams { input, model, dimensions, 2 more } body, RequestOptionsoptions?): CreateEmbeddingResponse { data, model, object, usage }
POST/embeddings
ModelsExpand Collapse
CreateEmbeddingResponse { data, model, object, usage }
Embedding { embedding, index, object }

Represents an embedding vector returned by embedding endpoint.

EmbeddingModel = "text-embedding-ada-002" | "text-embedding-3-small" | "text-embedding-3-large"