rag pipeline

This commit is contained in:
seehi 2024-01-30 20:19:50 +08:00
parent 4fcf724797
commit 916b139e2b
18 changed files with 372 additions and 15 deletions

View file

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