diff --git a/src/crewai/project/annotations.py b/src/crewai/project/annotations.py index 6c0b9942a..07d07b368 100644 --- a/src/crewai/project/annotations.py +++ b/src/crewai/project/annotations.py @@ -71,6 +71,8 @@ def pipeline(func): def crew(func) -> Callable[..., Crew]: + + @wraps(func) def wrapper(self, *args, **kwargs) -> Crew: instantiated_tasks = [] instantiated_agents = []