Interface EmbeddingsAzureOpenAiNodeParameters

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

Properties§

Source§

readonly model?: string

The name of the model(deployment) to use

Source§

readonly options?: {
    batchSize?: number;
    dimensions?: 256 | 512 | 1024 | 1536 | 3072;
    stripNewLines?: boolean;
    timeout?: number;
}

Additional options to add Default: {}