class BaseRetriever: def __init__(self): raise NotImplementedError def retrieve(self, query: str) -> list: raise NotImplementedError