File size: 167 Bytes
3e97fe5
 
 
 
 
 
 
1
2
3
4
5
6
7
from abc import ABC, abstractmethod
from typing import List

class BaseChunker(ABC):
    @abstractmethod
    def split_text(self, text: str) -> List[str]:
        pass