Type alias Text2VecVoyageAIConfig

Text2VecVoyageAIConfig: {
    baseURL?: string;
    model?: string;
    truncate?: boolean;
    vectorizeCollectionName?: boolean;
}

The configuration for text vectorization using the VoyageAI module.

See the documentation for detailed usage.

Type declaration

  • Optional baseURL?: string

    The base URL to use where API requests should go.

  • Optional model?: string

    The model to use.

  • Optional truncate?: boolean

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

  • Optional vectorizeCollectionName?: boolean

    Whether to vectorize the collection name.