| from abc import ABC, abstractmethod | |
| from typing import List | |
| class BaseChunker(ABC): | |
| def split_text(self, text: str) -> List[str]: | |
| pass |
| from abc import ABC, abstractmethod | |
| from typing import List | |
| class BaseChunker(ABC): | |
| def split_text(self, text: str) -> List[str]: | |
| pass |