Separate rerankers, splitters and extractors (#85)

This commit is contained in:
Nguyen Trung Duc (john)
2023-11-27 14:25:54 +07:00
committed by GitHub
parent 0dede9c82d
commit 2186c5558f
15 changed files with 211 additions and 135 deletions

View File

@@ -0,0 +1,5 @@
from .base import BaseReranking
from .cohere import CohereReranking
from .llm import LLMReranking
__all__ = ["CohereReranking", "LLMReranking", "BaseReranking"]