devve1's picture
Create base_chunker.py
3e97fe5 verified
raw
history blame contribute delete
No virus
167 Bytes
from abc import ABC, abstractmethod
from typing import List
class BaseChunker(ABC):
@abstractmethod
def split_text(self, text: str) -> List[str]:
pass