Optionalfields: Partial<OpenAIEmbeddingsParams> & Partial<AzureOpenAIInput> & { Optionalconfiguration: ClientOptions & LegacyOpenAIInputOptionalazureADTokenA function that returns an access token for Microsoft Entra (formerly known as Azure Active Directory), which will be invoked on every request.
OptionalazureAzure OpenAI API deployment name to use for completions when making requests to Azure OpenAI. This is the name of the deployment you created in the Azure portal. e.g. "my-openai-deployment" this will be used in the endpoint URL: https://{InstanceName}.openai.azure.com/openai/deployments/my-openai-deployment/
OptionalazureAzure OpenAI API instance name to use when making requests to Azure OpenAI. this is the name of the instance you created in the Azure portal. e.g. "my-openai-instance" this will be used in the endpoint URL: https://my-openai-instance.openai.azure.com/openai/deployments/{DeploymentName}/
OptionalazureAPI key to use when making requests to Azure OpenAI.
OptionalazureAPI version to use when making requests to Azure OpenAI.
OptionalazureCustom endpoint for Azure OpenAI API. This is useful in case you have a deployment in another region. e.g. setting this value to "https://westeurope.api.cognitive.microsoft.com/openai/deployments" will be result in the endpoint URL: https://westeurope.api.cognitive.microsoft.com/openai/deployments/{DeploymentName}/
The maximum number of documents to embed in a single request. This is limited by the OpenAI API to a maximum of 2048.
The async caller should be used by subclasses to make any async calls, which will thus benefit from the concurrency and retry logic.
ProtectedclientProtectedclientOptionaldimensionsThe number of dimensions the resulting output embeddings should have.
Only supported in text-embedding-3 and later models.
Model name to use
Model name to use
Alias for model
OptionalorganizationWhether to strip new lines from the input text. This is recommended by OpenAI for older models, but may not be suitable for all use cases. See: https://github.com/openai/openai-python/issues/418#issuecomment-1525939500
OptionaltimeoutTimeout to use when making requests to OpenAI.
Method to generate embeddings for an array of documents. Splits the documents into batches and makes requests to the OpenAI API to generate embeddings.
Array of documents to generate embeddings for.
Promise that resolves to a 2D array of embeddings for each document.
ProtectedembeddingPrivate method to make a request to the OpenAI API to generate embeddings. Handles the retry logic and returns the response from the API.
Request to send to the OpenAI API.
Promise that resolves to the response from the API.
Class for generating embeddings using the OpenAI API. Extends the Embeddings class and implements OpenAIEmbeddingsParams and AzureOpenAIInput.
Example