feat: move core functionality to lib workspace structure

This commit is contained in:
Greyson Lalonde
2025-09-27 17:22:46 -04:00
parent f0762473d0
commit 4d79c41a06
780 changed files with 421 additions and 1541 deletions

View File

@@ -0,0 +1,15 @@
"""Test that all public API classes are properly importable."""
def test_task_output_import():
"""Test that TaskOutput can be imported from crewai."""
from crewai import TaskOutput
assert TaskOutput is not None
def test_crew_output_import():
"""Test that CrewOutput can be imported from crewai."""
from crewai import CrewOutput
assert CrewOutput is not None