Type alias Multi2VecCohereConfigCreate

Multi2VecCohereConfigCreate: {
    baseURL?: string;
    imageFields?: string[] | Multi2VecField[];
    model?: string;
    textFields?: string[] | Multi2VecField[];
    truncate?: string;
    vectorizeCollectionName?: boolean;
}

The configuration for the multi2vec-cohere vectorizer.

Type declaration

  • Optional baseURL?: string

    The base URL to use where API requests should go.

  • 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 model?: string

    The specific model to use.

  • 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 truncate?: string

    The truncation strategy to use.

  • Optional vectorizeCollectionName?: boolean

    Whether to vectorize the collection name.