Skip to content

Commit f207ed5

Browse files
committed
switch interface to type
1 parent a58dac3 commit f207ed5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/collections/config/types/vectorizer.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -412,14 +412,14 @@ export type Text2VecVoyageAIConfig = {
412412
*
413413
* TODO: add documentation reference once available.
414414
*/
415-
export interface Text2VecWeaviateConfig {
415+
export type Text2VecWeaviateConfig = {
416416
/** The base URL to use where API requests should go. */
417417
baseURL?: string;
418418
/** The model to use. */
419419
model?: 'Snowflake/snowflake-arctic-embed-m-v1.5' | string;
420420
/** Whether to vectorize the collection name. */
421421
vectorizeCollectionName?: boolean;
422-
}
422+
};
423423

424424
export type NoVectorizerConfig = {};
425425

0 commit comments

Comments
 (0)