feat: complete monorepo transformation with tools integration

- Add crewai-tools as git subtree preserving full history
- Move tools to proper src/ directory structure with git mv
- Configure tools pyproject.toml for workspace dependency on crewai-core
- Update workspace configuration to include both packages
- Fix build configurations for both packages
This commit is contained in:
Greyson Lalonde
2025-09-12 22:07:31 -04:00
parent 6114dbe557
commit a7bb489e9f
248 changed files with 6396 additions and 3084 deletions

View File

@@ -0,0 +1,6 @@
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)