def wikipedia_title_and_openings_preprocessing( | |
wikipedia_title_and_openings: str, sepator: str = " <def>" | |
): | |
return wikipedia_title_and_openings.split(sepator, 1)[0] | |
def wikipedia_title_and_openings_preprocessing( | |
wikipedia_title_and_openings: str, sepator: str = " <def>" | |
): | |
return wikipedia_title_and_openings.split(sepator, 1)[0] | |