weaviate-client
    Preparing search index...

    Type Alias Text2VecWeaviateConfig

    The configuration for text vectorization using Weaviate's self-hosted text-based embedding models.

    See the documentation for detailed usage.

    type Text2VecWeaviateConfig = {
        baseURL?: string;
        dimensions?: number;
        model?:
            | "Snowflake/snowflake-arctic-embed-l-v2.0"
            | "Snowflake/snowflake-arctic-embed-m-v1.5"
            | string;
        vectorizeCollectionName?: boolean;
    }
    Index

    Properties

    baseURL?: string

    The base URL to use where API requests should go.

    dimensions?: number

    The dimensionality of the vector once embedded.

    model?:
        | "Snowflake/snowflake-arctic-embed-l-v2.0"
        | "Snowflake/snowflake-arctic-embed-m-v1.5"
        | string

    The model to use.

    vectorizeCollectionName?: boolean

    Whether to vectorize the collection name.