def get_text(title: str, abstract: str): if abstract and title: text = abstract + ' ' + title elif title: text = title else: text = None return text def get_label(): pass