Type alias Multi2VecPalmConfigCreate

Multi2VecPalmConfigCreate: {
    dimensions?: number;
    imageFields?: string[] | Multi2VecField[];
    location: string;
    modelId?: string;
    projectId: string;
    textFields?: string[] | Multi2VecField[];
    vectorizeCollectionName?: boolean;
    videoFields?: string[] | Multi2VecField[];
}

The configuration for the multi2vec-palm vectorizer.

Type declaration

  • Optional dimensions?: number

    The number of dimensions to use.

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

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

  • location: string

    Where the model runs

  • Optional modelId?: string

    The model ID to use.

  • projectId: string

    The project id of the palm model.

  • 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 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.