Blame view

embeddings/__init__.py 180 Bytes
be52af70   tangwang   first commit
1
2
3
4
5
6
7
8
9
  """Embeddings package initialization."""
  
  from .text_encoder import BgeEncoder
  from .image_encoder import CLIPImageEncoder
  
  __all__ = [
      'BgeEncoder',
      'CLIPImageEncoder',
  ]