diff --git a/src/crewai/cli/templates/pipeline/crews/research_crew/research_crew.py b/src/crewai/cli/templates/pipeline/crews/research_crew/research_crew.py index e20082188..f26ad712a 100644 --- a/src/crewai/cli/templates/pipeline/crews/research_crew/research_crew.py +++ b/src/crewai/cli/templates/pipeline/crews/research_crew/research_crew.py @@ -54,5 +54,5 @@ class ResearchCrew(): agents=self.agents, # Automatically created by the @agent decorator tasks=self.tasks, # Automatically created by the @task decorator process=Process.sequential, - verbose=2, + verbose=True, ) \ No newline at end of file diff --git a/src/crewai/cli/templates/pipeline/crews/write_linkedin_crew/write_linkedin_crew.py b/src/crewai/cli/templates/pipeline/crews/write_linkedin_crew/write_linkedin_crew.py index e34f12f98..4a40c3fb4 100644 --- a/src/crewai/cli/templates/pipeline/crews/write_linkedin_crew/write_linkedin_crew.py +++ b/src/crewai/cli/templates/pipeline/crews/write_linkedin_crew/write_linkedin_crew.py @@ -47,5 +47,5 @@ class WriteLinkedInCrew(): agents=self.agents, # Automatically created by the @agent decorator tasks=self.tasks, # Automatically created by the @task decorator process=Process.sequential, - verbose=2, + verbose=True, ) \ No newline at end of file diff --git a/src/crewai/cli/templates/pipeline/crews/write_x_crew/write_x_crew.py b/src/crewai/cli/templates/pipeline/crews/write_x_crew/write_x_crew.py index 7fc13d0e5..454aafdc0 100644 --- a/src/crewai/cli/templates/pipeline/crews/write_x_crew/write_x_crew.py +++ b/src/crewai/cli/templates/pipeline/crews/write_x_crew/write_x_crew.py @@ -32,5 +32,5 @@ class WriteXCrew: agents=self.agents, # Automatically created by the @agent decorator tasks=self.tasks, # Automatically created by the @task decorator process=Process.sequential, - verbose=2, + verbose=True, ) diff --git a/src/crewai/cli/templates/pipeline/pyproject.toml b/src/crewai/cli/templates/pipeline/pyproject.toml index 2e53a1633..f3f643214 100644 --- a/src/crewai/cli/templates/pipeline/pyproject.toml +++ b/src/crewai/cli/templates/pipeline/pyproject.toml @@ -6,7 +6,7 @@ authors = ["Your Name "] [tool.poetry.dependencies] python = ">=3.10,<=3.13" -crewai = { extras = ["tools"], version = "^0.41.1" } +crewai = { extras = ["tools"], version = "^0.46.0" } asyncio = "*" [tool.poetry.scripts] diff --git a/src/crewai/cli/templates/pipeline_router/crews/classifier_crew/classifier_crew.py b/src/crewai/cli/templates/pipeline_router/crews/classifier_crew/classifier_crew.py index d7af1b147..af6be20ab 100644 --- a/src/crewai/cli/templates/pipeline_router/crews/classifier_crew/classifier_crew.py +++ b/src/crewai/cli/templates/pipeline_router/crews/classifier_crew/classifier_crew.py @@ -36,5 +36,5 @@ class ClassifierCrew: agents=self.agents, # Automatically created by the @agent decorator tasks=self.tasks, # Automatically created by the @task decorator process=Process.sequential, - verbose=2, + verbose=True, ) diff --git a/src/crewai/cli/templates/pipeline_router/crews/normal_crew/normal_crew.py b/src/crewai/cli/templates/pipeline_router/crews/normal_crew/normal_crew.py index ec47dd4b8..c240acfd1 100644 --- a/src/crewai/cli/templates/pipeline_router/crews/normal_crew/normal_crew.py +++ b/src/crewai/cli/templates/pipeline_router/crews/normal_crew/normal_crew.py @@ -32,5 +32,5 @@ class NormalCrew: agents=self.agents, # Automatically created by the @agent decorator tasks=self.tasks, # Automatically created by the @task decorator process=Process.sequential, - verbose=2, + verbose=True, ) diff --git a/src/crewai/cli/templates/pipeline_router/crews/urgent_crew/urgent_crew.py b/src/crewai/cli/templates/pipeline_router/crews/urgent_crew/urgent_crew.py index 16255c111..54c804c79 100644 --- a/src/crewai/cli/templates/pipeline_router/crews/urgent_crew/urgent_crew.py +++ b/src/crewai/cli/templates/pipeline_router/crews/urgent_crew/urgent_crew.py @@ -32,5 +32,5 @@ class UrgentCrew: agents=self.agents, # Automatically created by the @agent decorator tasks=self.tasks, # Automatically created by the @task decorator process=Process.sequential, - verbose=2, + verbose=True, )