weaviate-client
    Preparing search index...

    Type Alias Multi2VecClipConfig

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

    See the documentation for detailed usage.

    type Multi2VecClipConfig = {
        imageFields?: string[];
        inferenceUrl?: string;
        textFields?: string[];
        vectorizeCollectionName?: boolean;
        weights?: { imageFields?: number[]; textFields?: number[] };
    }
    Index

    Properties

    imageFields?: string[]

    The image fields used when vectorizing.

    inferenceUrl?: string

    The URL where inference requests are sent.

    textFields?: string[]

    The text fields used when vectorizing.

    vectorizeCollectionName?: boolean

    Whether the collection name is vectorized.

    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.