We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a58dac3 commit f207ed5Copy full SHA for f207ed5
src/collections/config/types/vectorizer.ts
@@ -412,14 +412,14 @@ export type Text2VecVoyageAIConfig = {
412
*
413
* TODO: add documentation reference once available.
414
*/
415
-export interface Text2VecWeaviateConfig {
+export type Text2VecWeaviateConfig = {
416
/** The base URL to use where API requests should go. */
417
baseURL?: string;
418
/** The model to use. */
419
model?: 'Snowflake/snowflake-arctic-embed-m-v1.5' | string;
420
/** Whether to vectorize the collection name. */
421
vectorizeCollectionName?: boolean;
422
-}
+};
423
424
export type NoVectorizerConfig = {};
425
0 commit comments