(self, config: Optional[ChunkingConfig] = None)
| 24 | """ |
| 25 | |
| 26 | def __init__(self, config: Optional[ChunkingConfig] = None): |
| 27 | self.config = config or ChunkingConfig() |
| 28 | |
| 29 | @abstractmethod |
| 30 | def load_parse_and_chunk( |
nothing calls this directly
no test coverage detected