weaviate-client
    Preparing search index...

    Type Alias Multi2VecAWSConfig

    The configuration for multi-media vectorization using the AWS module.

    See the documentation for detailed usage.

    type Multi2VecAWSConfig = {
        dimensions?: number;
        imageFields?: string[];
        model?: string;
        region?: string;
        textFields?: string[];
        weights?: { imageFields?: number[]; textFields?: number[] };
    }
    Index

    Properties

    dimensions?: number

    The dimensionality of the vector once embedded.

    imageFields?: string[]

    The image fields used when vectorizing.

    model?: string

    The model to use.

    region?: string

    The AWS region where the model runs.

    textFields?: string[]

    The text fields used when vectorizing.

    weights?: { imageFields?: number[]; textFields?: number[] }

    The weights of the fields used for vectorization.

    Type Declaration

    • OptionalimageFields?: number[]

      The weights of the image fields.

    • OptionaltextFields?: number[]

      The weights of the text fields.