Skip to content

Commit

Permalink
new: add late interaction multimodal to package init (#471)
Browse files Browse the repository at this point in the history
  • Loading branch information
joein authored Feb 12, 2025
1 parent b9d6051 commit de4ecb4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions fastembed/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

from fastembed.image import ImageEmbedding
from fastembed.late_interaction import LateInteractionTextEmbedding
from fastembed.late_interaction_multimodal import LateInteractionMultimodalEmbedding
from fastembed.sparse import SparseEmbedding, SparseTextEmbedding
from fastembed.text import TextEmbedding

Expand All @@ -17,4 +18,5 @@
"SparseEmbedding",
"ImageEmbedding",
"LateInteractionTextEmbedding",
"LateInteractionMultimodalEmbedding",
]
2 changes: 1 addition & 1 deletion tests/test_late_interaction_multimodal.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from PIL import Image
import numpy as np

from fastembed.late_interaction_multimodal import LateInteractionMultimodalEmbedding
from fastembed import LateInteractionMultimodalEmbedding
from tests.config import TEST_MISC_DIR


Expand Down

0 comments on commit de4ecb4

Please sign in to comment.