Type alias Multi2VecGoogleConfigCreate

Multi2VecGoogleConfigCreate: Omit<Multi2VecGoogleConfig, Multi2VecOmissions> & {
    imageFields?: string[] | Multi2VecField[];
    textFields?: string[] | Multi2VecField[];
    videoFields?: string[] | Multi2VecField[];
}

The configuration for the multi2vec-google vectorizer.

Type declaration

  • Optional imageFields?: string[] | Multi2VecField[]

    The image fields to use in vectorization. Can be string of Multi2VecField type. If string, weight 0 will be assumed.

  • Optional textFields?: string[] | Multi2VecField[]

    The text fields to use in vectorization. Can be string of Multi2VecField type. If string, weight 0 will be assumed.

  • Optional videoFields?: string[] | Multi2VecField[]

    The video fields to use in vectorization. Can be string of Multi2VecField type. If string, weight 0 will be assumed.