kotaemon/libs/kotaemon/kotaemon/rerankings/__init__.py
Tuan Anh Nguyen Dang (Tadashi_Cin) 5132288386
feat: add VoyageAI's rerank and embeddings models (#733) #none
* Introducing VoyageAI's rerank and embeddings models

* fix: comfort CI

* fix: update test case

---------

Co-authored-by: fzowl <zoltan@voyageai.com>
2025-04-15 15:54:23 +07:00

7 lines
243 B
Python

from .base import BaseReranking
from .cohere import CohereReranking
from .tei_fast_rerank import TeiFastReranking
from .voyageai import VoyageAIReranking
__all__ = ["BaseReranking", "TeiFastReranking", "CohereReranking", "VoyageAIReranking"]