File tree Expand file tree Collapse file tree 2 files changed +1
-4
lines changed
weaviate/collections/classes Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -124,7 +124,6 @@ def test_basic_config():
124124 "multi2vec-voyageai" : {
125125 "model" : "voyage-multimodal-3" ,
126126 "truncation" : False ,
127- "output_encoding" : "base64" ,
128127 "baseURL" : "https://api.voyageai.com/" ,
129128 }
130129 },
@@ -133,15 +132,13 @@ def test_basic_config():
133132 Configure .Vectorizer .multi2vec_nvidia (
134133 model = "nvidia/nvclip" ,
135134 truncation = False ,
136- output_encoding = "base64" ,
137135 vectorize_collection_name = False ,
138136 base_url = "https://integrate.api.nvidia.com" ,
139137 ),
140138 {
141139 "multi2vec-nvidia" : {
142140 "model" : "nvidia/nvclip" ,
143141 "truncation" : False ,
144- "output_encoding" : "base64" ,
145142 "baseURL" : "https://integrate.api.nvidia.com/" ,
146143 }
147144 },
Original file line number Diff line number Diff line change @@ -872,7 +872,7 @@ def multi2vec_nvidia(
872872 * ,
873873 model : Optional [str ] = None ,
874874 truncation : Optional [bool ] = None ,
875- output_encoding : Optional [str ],
875+ output_encoding : Optional [str ] = None ,
876876 vectorize_collection_name : bool = True ,
877877 base_url : Optional [AnyHttpUrl ] = None ,
878878 image_fields : Optional [Union [List [str ], List [Multi2VecField ]]] = None ,
You can’t perform that action at this time.
0 commit comments