weaviate-client
    Preparing search index...

    Type Alias Multi2VecJinaAIConfig

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

    See the documentation for detailed usage.

    type Multi2VecJinaAIConfig = {
        baseURL?: string;
        dimensions?: number;
        imageFields?: string[];
        model?: string;
        textFields?: string[];
        vectorizeCollectionName?: boolean;
        weights?: { imageFields?: number[]; textFields?: number[] };
    }
    Index

    Properties

    baseURL?: string

    The base URL to use where API requests should go.

    dimensions?: number

    The dimensionality of the vector once embedded.

    imageFields?: string[]

    The image fields used when vectorizing.

    model?: string

    The model to use.

    textFields?: string[]

    The text fields used when vectorizing.

    vectorizeCollectionName?: boolean

    Whether the collection name is vectorized.

    This parameter is not applicable and has no effect on the underlying module.

    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.