class InputCleaner: async def run(self, text: str) -> str: cleaned = " ".join(text.strip().split()) return cleaned.replace(" äh ", " ").replace(" hm ", " ")