weaviate-client
    Preparing search index...

    Variable multiVectorsConst

    multiVectors: {
        multi2VecJinaAI: <
            N extends string
            | undefined = undefined,
            I extends VectorIndexType = "hnsw",
        >(
            opts?: ConfigureNonTextMultiVectorizerOptions<
                N,
                I,
                "multi2multivec-jinaai",
            >,
        ) => VectorConfigCreate<never, N, I, "multi2multivec-jinaai">;
        multi2VecWeaviate: <
            N extends string
            | undefined = undefined,
            I extends VectorIndexType = "hnsw",
        >(
            opts: ConfigureNonTextMultiVectorizerOptions<
                N,
                I,
                "multi2multivec-weaviate",
            >,
        ) => VectorConfigCreate<never, N, I, "multi2multivec-weaviate">;
        selfProvided: <
            T,
            N extends string | undefined = undefined,
            I extends VectorIndexType = "hnsw",
        >(
            opts?: ConfigureNonTextMultiVectorizerOptions<N, I, "none">,
        ) => VectorConfigCreate<PrimitiveKeys<T>, N, I, "none">;
        text2VecJinaAI: <
            T,
            N extends string | undefined = undefined,
            I extends VectorIndexType = "hnsw",
        >(
            opts?: ConfigureTextMultiVectorizerOptions<
                T,
                N,
                I,
                "text2multivec-jinaai",
            >,
        ) => VectorConfigCreate<PrimitiveKeys<T>, N, I, "text2multivec-jinaai">;
    }

    Type Declaration