(self, tokens: List[int])
| 26 | |
| 27 | @abstractmethod |
| 28 | def decode(self, tokens: List[int]) -> str: |
| 29 | raise NotImplementedError |
| 30 | |
| 31 | def count_tokens(self, text: str) -> int: |
| 32 | if not text or not isinstance(text, str): |
no outgoing calls
no test coverage detected