mirror of
https://github.com/arc53/DocsGPT
synced 2024-11-09 19:10:53 +00:00
15 lines
419 B
Python
15 lines
419 B
Python
from application.retriever.classic_rag import ClassicRAG
|
|
|
|
|
|
|
|
class RetrieverCreator:
|
|
retievers = {
|
|
'classic': ClassicRAG,
|
|
}
|
|
|
|
@classmethod
|
|
def create_retriever(cls, type, *args, **kwargs):
|
|
retiever_class = cls.retievers.get(type.lower())
|
|
if not retiever_class:
|
|
raise ValueError(f"No retievers class found for type {type}")
|
|
return retiever_class(*args, **kwargs) |