Type alias VectorConfig

VectorConfig: Record<string, {
    indexConfig: VectorIndexConfig;
    indexType: VectorIndexType;
    properties?: string[];
    vectorizer: ModuleConfig<Vectorizer, VectorizerConfig> | ModuleConfig<string, any>;
}>

Type declaration