mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-01-11 00:58:30 +00:00
git-subtree-dir: packages/tools git-subtree-split: 78317b9c127f18bd040c1d77e3c0840cdc9a5b38
7 lines
355 B
Python
7 lines
355 B
Python
from crewai_tools.rag.chunkers.base_chunker import BaseChunker
|
|
from typing import List, Optional
|
|
|
|
class DefaultChunker(BaseChunker):
|
|
def __init__(self, chunk_size: int = 2000, chunk_overlap: int = 20, separators: Optional[List[str]] = None, keep_separator: bool = True):
|
|
super().__init__(chunk_size, chunk_overlap, separators, keep_separator)
|