Interface EmbeddingsAzureOpenAiNodeParameters

Source
interface EmbeddingsAzureOpenAiNodeParameters {
    model?: string;
    options?: {
        batchSize?: number;
        dimensions?: 256 | 512 | 1024 | 1536 | 3072;
        stripNewLines?: boolean;
        timeout?: number;
    };
}

Properties§

§readonly model?: string

The name of the model(deployment) to use

§readonly options?: { ... }

Additional options to add Default: {}