@@ -126,13 +126,24 @@ export const legacyVectors = {
126126 *
127127 * @param {ConfigureNonTextVectorizerOptions<N, I, 'none'> } [opts] The configuration options for the `none` vectorizer.
128128 * @returns {VectorConfigCreate<PrimitiveKeys<T>[], N, I, 'none'> } The configuration object.
129+ *
130+ * @deprecated Use `selfProvided` instead.
129131 */
130132 none : < N extends string | undefined = undefined , I extends VectorIndexType = 'hnsw' > (
131133 opts ?: ConfigureNonTextVectorizerOptions < N , I , 'none' >
132134 ) : VectorConfigCreate < never , N , I , 'none' > => {
133135 const { name, quantizer, vectorIndexConfig } = opts || { } ;
134136 return makeVectorizer ( name , { quantizer, vectorIndexConfig } ) ;
135137 } ,
138+ /**
139+ * Create a `VectorConfigCreate` object with the vectorizer set to `'none'`.
140+ *
141+ * @param {ConfigureNonTextVectorizerOptions<N, I, 'none'> } [opts] The configuration options for the `none` vectorizer.
142+ * @returns {VectorConfigCreate<PrimitiveKeys<T>[], N, I, 'none'> } The configuration object.
143+ */
144+ selfProvided : < N extends string | undefined = undefined , I extends VectorIndexType = 'hnsw' > (
145+ opts ?: ConfigureNonTextVectorizerOptions < N , I , 'none' >
146+ ) : VectorConfigCreate < never , N , I , 'none' > => legacyVectors . none ( opts ) ,
136147 /**
137148 * Create a `VectorConfigCreate` object with the vectorizer set to `'img2vec-neural'`.
138149 *
0 commit comments