Skip to content

Commit 04e4815

Browse files
authored
Add jina-embeddings-v4 support
Add as multimodal also instead of jina-clip-v2
1 parent 085abb6 commit 04e4815

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/collection/test_config.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -408,27 +408,27 @@ def test_basic_config():
408408
),
409409
(
410410
Configure.Vectorizer.text2vec_jinaai(
411-
model="jina-embeddings-v3",
411+
model="jina-embeddings-v4",
412412
vectorize_collection_name=False,
413413
dimensions=512,
414414
),
415415
{
416416
"text2vec-jinaai": {
417-
"model": "jina-embeddings-v3",
417+
"model": "jina-embeddings-v4",
418418
"vectorizeClassName": False,
419419
"dimensions": 512,
420420
}
421421
},
422422
),
423423
(
424424
Configure.Vectorizer.multi2vec_jinaai(
425-
model="jina-clip-v2",
425+
model="jina-embeddings-v4",
426426
dimensions=512,
427427
vectorize_collection_name=False,
428428
),
429429
{
430430
"multi2vec-jinaai": {
431-
"model": "jina-clip-v2",
431+
"model": "jina-embeddings-v4",
432432
"dimensions": 512,
433433
}
434434
},

0 commit comments

Comments
 (0)