rag pipeline

This commit is contained in:
seehi 2024-01-30 20:19:50 +08:00 committed by betterwang
parent cc91df59e5
commit 29d36948bf
18 changed files with 372 additions and 15 deletions

View file

@ -30,3 +30,8 @@ class WebBrowserEngineType(Enum):
def __missing__(cls, key):
"""Default type conversion"""
return cls.CUSTOM
class SearchInterface:
async def asearch(self, *args, **kwargs):
...