| from abc import ABC, abstractmethod | |
| class IQueryProcessor(ABC): | |
| # take query file path output query with subclaims | |
| def generate_responses(self, query_file:str): | |
| pass | |
| def get_subclaims_from_responses(self): | |
| pass | |
| # add score into subclaim file | |
| def score_subclaim(self): | |
| pass | |
| # add annotation into subclaim file | |
| def annotate_subclaim(self): | |
| pass |