feat: add crewai-tools library to workspace

- Migrate crewai-tools as standalone package in lib/tools
- Configure UV workspace for monorepo structure
- Move assets to repository root
- Clean up duplicate README files
- Focus pre-commit hooks on lib/crewai/src only
This commit is contained in:
Greyson LaLonde
2025-09-26 15:05:41 -04:00
300 changed files with 31874 additions and 1 deletions

View File

@@ -0,0 +1,10 @@
import pytest
from pydantic.warnings import PydanticDeprecatedSince20
@pytest.mark.filterwarnings("error", category=PydanticDeprecatedSince20)
def test_import_tools_without_pydantic_deprecation_warnings():
# This test is to ensure that the import of crewai_tools does not raise any Pydantic deprecation warnings.
import crewai_tools
assert crewai_tools