VishwaTechnologiesPvtLtd
new one
a2ff264
raw
history blame
208 Bytes
from abc import ABC, abstractmethod
class IChunkGenerator(ABC):
@abstractmethod
def chunk_text(self, text: str,words: int=100) -> list:
"""Splits the text into smaller chunks."""
pass