Interface EmbeddingsAwsBedrockNodeParameters

Source

interface EmbeddingsAwsBedrockNodeParameters {
    authentication?: "iam" | "assumeRole";
    model?: string;
    options?: {
        additionalModelRequestFields?: string;
        maxRetries?: number;
        timeout?: number;
    };
}

Properties§

§readonly authentication?: "iam" | "assumeRole"

Default: "iam"

§readonly model?: string

The model or inference profile which will generate the embeddings. Learn more. Type options: {"loadOptionsDependsOn":["authentication"],"loadOptionsMethod":"listModels"}

§readonly options?: { ... }

Additional options to add Default: {}