def_pure(self,contents_list:List[List[str]],scores_list:List[List[float]],ids_list:List[List[str]],top_k:int,):""" Do not perform reranking. Return the given top-k passages as is. """contents_list=list(map(lambdax:x[:top_k],contents_list))scores_list=list(map(lambdax:x[:top_k],scores_list))ids_list=list(map(lambdax:x[:top_k],ids_list))returncontents_list,ids_list,scores_list