weaviate-client
    Preparing search index...

    Type Alias Text2VecCohereConfig

    The configuration for text vectorization using the Cohere module.

    See the documentation for detailed usage.

    type Text2VecCohereConfig = {
        baseURL?: string;
        dimensions?: number;
        model?: string;
        truncate?: boolean;
        vectorizeCollectionName?: boolean;
    }
    Index

    Properties

    baseURL?: string

    The base URL to use where API requests should go.

    dimensions?: number

    The number of dimensions for the generated embeddings.

    model?: string

    The model to use.

    truncate?: boolean

    Whether to truncate the input texts to fit within the context length.

    vectorizeCollectionName?: boolean

    Whether to vectorize the collection name.