Type alias Multi2VecBindConfigCreate

Multi2VecBindConfigCreate: {
    IMUFields?: string[] | Multi2VecField[];
    audioFields?: string[] | Multi2VecField[];
    depthFields?: string[] | Multi2VecField[];
    imageFields?: string[] | Multi2VecField[];
    textFields?: string[] | Multi2VecField[];
    thermalFields?: string[] | Multi2VecField[];
    vectorizeCollectionName?: boolean;
    videoFields?: string[] | Multi2VecField[];
}

The configuration for the multi2vec-bind vectorizer.

Type declaration

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

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

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

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

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

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

  • 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 thermalFields?: string[] | Multi2VecField[]

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

  • Optional vectorizeCollectionName?: boolean

    Whether to vectorize the collection name.

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

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