Type alias Text2VecWeaviateConfig

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

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

See the documentation for detailed usage.

Type declaration

  • Optional baseURL?: string

    The base URL to use where API requests should go.

  • Optional dimensions?: number

    The dimensionality of the vector once embedded.

  • Optional model?: "Snowflake/snowflake-arctic-embed-m-v1.5" | string

    The model to use.

  • Optional vectorizeCollectionName?: boolean

    Whether to vectorize the collection name.